diff --git a/AllInstall.py b/AllInstall.py
index 9f27afa..3d42830 100755
--- a/AllInstall.py
+++ b/AllInstall.py
@@ -22,11 +22,12 @@ def AddSparkStoreSource():
     os.system("sudo apt update -o Dir::Etc::sourcelist=\"sources.list.d/sparkstore.list\"     -o Dir::Etc::sourceparts=\"-\" -o APT::Get::List-Cleanup=\"0\"")
 
 def InstallSparkWine(wine):
-    if os.path.exists("/usr/local/bin/ss-apt-fast"):
-        os.system("sudo apt install apt-fast -y")
-        os.system(f"sudo ss-apt-fast install \"{wine}\" -y")
-        return
-    os.system(f"sudo apt install \"{wine}\" -y")
+    #if os.path.exists("/usr/local/bin/ss-apt-fast"):
+        #os.system("sudo apt install apt-fast -y")
+        #os.system(f"sudo ss-apt-fast install \"{wine}\" -y")
+        #return
+    os.system("sudo ss-apt-fast update")
+    os.system(f"sudo ss-apt-fast install \"{wine}\" -y")
 
 ###################
 # 程序功能
@@ -47,12 +48,8 @@ print("请问是否要安装 deepin-wine?[Y/N]", end=' ')
 choose = input().upper()
 if not choose == "N":
     os.system("sudo apt install deepin-wine -y")
-print("请问是否要安装 deepin-wine5(需要添加星火应用商店的源)?[Y/N]", end=' ')
+print("请问是否要安装 deepin-wine5(需要安装最新版星火应用商店)?[Y/N]", end=' ')
 choose = input().upper()
-if not choose == "N":
-    if not os.path.exists("/etc/apt/sources.list.d/sparkstore.list"):
-        AddSparkStoreSource()
-    InstallSparkWine("deepin-wine5")
 print("请问是否要安装 deepin-wine5-stable?[Y/N]", end=' ')
 choose = input().upper()
 if not choose == "N":
@@ -61,11 +58,9 @@ print("请问是否要安装 deepin-wine6-stable?[Y/N]", end=' ')
 choose = input().upper()
 if not choose == "N":
     os.system("sudo apt install deepin-wine6-stable -y")
-print("请问是否要安装 spark-wine7-devel(需要添加星火应用商店的源)?[Y/N]", end=' ')
+print("请问是否要安装 spark-wine7-devel(需要安装最新版星火应用商店)?[Y/N]", end=' ')
 choose = input().upper()
 if not choose == "N":
-    if not os.path.exists("/etc/apt/sources.list.d/sparkstore.list"):
-        AddSparkStoreSource()
     InstallSparkWine("spark-wine7-devel")
 print("请问是否要安装 ukylin-wine(需要添加 ukylin 源,但因为可能会导致系统问题,将不会自动添加)?[Y/N]", end=" ")
 choose = input().upper()
diff --git a/InstallNewWineHQ.sh b/InstallNewWineHQ.sh
new file mode 100755
index 0000000..4d2f720
--- /dev/null
+++ b/InstallNewWineHQ.sh
@@ -0,0 +1,67 @@
+#!/bin/bash
+ubuntuSource=(
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources" 
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/impish/winehq-impish.sources" 
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/focal/winehq-focal.sources" 
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/bionic/winehq-bionic.sources"
+)
+debianSource=(
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/buster/winehq-buster.sources" 
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/bullseye/winehq-bullseye.sources" 
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/bookworm/winehq-bookworm.sources"
+)
+# 选择发行版
+toilet WineHQ
+echo "WineHQ 官网:https://wiki.winehq.org/"
+echo
+echo "选择发行版:"
+echo "0. Debian"
+echo "1. Ubuntu"
+read system
+# 选择版本
+echo "选择系统版本"
+if [ $system = "0" ]; then
+    echo "0. Debian 10 (Buster)"
+    echo "1. Debian 11 (Bullseye)"
+    echo "2. Debian Testing (Bookworm)"
+fi
+if [ $system = "1" ]; then
+    echo "0. Ubuntu 22.04"
+    echo "1. Ubuntu 21.10"
+    echo "2. Ubuntu 20.04,Linux Mint 20.x"
+    echo "3. Ubuntu 18.04,Linux Mint 19.x"
+fi
+read systemVersion
+# 选择 Wine
+echo "选择 Wine:"
+echo "0. 稳定分支"
+echo "1. 开发分支"
+echo "2. Staging 分支"
+read programVersion
+# 初步配置
+sudo apt-key del "D43F 6401 4536 9C51 D786 DDEA 76F1 A20F F987 672F"
+sudo dpkg --add-architecture i386
+sudo wget -nc -O /usr/share/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
+# 检测 apt-fast 或 ss-apt-fast 是否存在
+apt="apt"
+which apt-fast > /dev/null
+if [ $? == 0 ]; then
+    apt="apt-fast"
+fi
+which ss-apt-fast > /dev/null
+if [ $? == 0 ]; then
+    apt="ss-apt-fast"
+fi
+# 添加源
+if [ $system = "0" ]; then
+    ${debianSource[$systemVersion]}
+fi
+if [ $system = "1" ]; then
+    ${ubuntuSource[$systemVersion]}
+fi
+sudo $apt update
+# 安装 Wine
+wineInstall=("sudo $apt install --install-recommends winehq-stable" "sudo $apt install --install-recommends winehq-devel" "sudo $apt install --install-recommends winehq-staging")
+${wineInstall[$programVersion]}
+echo "按回车键退出"
+read
\ No newline at end of file
diff --git a/Makefile b/Makefile
index 3faaba5..a5355eb 100755
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,16 @@ build:
 	cp -rv VM-source/Windows7X86Auto.iso          VM
 	cp -rv VM-source/run.py                       VM
 	zip -v -q -r package-script.zip package-script
+	#rm -rfv dlls.7z
+	#rm -rfv dlls-arm.7z
+	#rm -rfv dxvk.7z
+	#rm -rfv exagear.7z
+	#rm -rfv wined3d.dll.so.7z
+	#7z a dlls.7z           dlls
+	#7z a dlls-arm.7z       dlls-arm
+	#7z a dxvk.7z           dxvk
+	#7z a exagear.7z        exagear
+	#7z a wined3d.dll.so.7z wined3d.dll.so
 	cp -rv VM                                     deb/opt/apps/deepin-wine-runner
 	cp -rv AllInstall.py                          deb/opt/apps/deepin-wine-runner
 	cp -rv BeCyIconGrabber.exe                    deb/opt/apps/deepin-wine-runner
@@ -33,12 +43,18 @@ build:
 	cp -rv RunVM.sh                               deb/opt/apps/deepin-wine-runner
 	cp -rv "wine install"                         deb/opt/apps/deepin-wine-runner
 	cp -rv 窗体透明度设置工具.exe                    deb/opt/apps/deepin-wine-runner
-	cp -rv dlls                                   deb/opt/apps/deepin-wine-runner
+	cp -rv dlls.7z                                   deb/opt/apps/deepin-wine-runner
 	cp -rv UpdateGeek.sh                          deb/opt/apps/deepin-wine-runner
 	cp -rv AppStore.py                            deb/opt/apps/deepin-wine-runner
 	cp -rv InstallWineOnDeepin23.py               deb/opt/apps/deepin-wine-runner
-	cp -rv dxvk                                   deb/opt/apps/deepin-wine-runner
+	cp -rv dxvk.7z                                   deb/opt/apps/deepin-wine-runner
 	cp -rv InstallFont.py                         deb/opt/apps/deepin-wine-runner
+	cp -rv dlls-arm.7z                               deb/opt/apps/deepin-wine-runner
+	cp -rv deepin.list                            deb/opt/apps/deepin-wine-runner
+	cp -rv sparkstore.list                        deb/opt/apps/deepin-wine-runner
+	cp -rv wined3d.dll.so.7z                         deb/opt/apps/deepin-wine-runner
+	cp -rv clean-unuse-program.py                    deb/opt/apps/deepin-wine-runner
+	cp -rv InstallNewWineHQ.sh                       deb/opt/apps/deepin-wine-runner
 	dpkg -b deb spark-deepin-wine-runner.deb
 	
 
@@ -46,7 +62,7 @@ install:
 	make build
 	sudo apt update
 	#sudo dpkg -i spark-deepin-wine-runner.deb
-	sudo apt install ./spark-deepin-wine-runner.deb -y --allow-downgrades
+	sudo apt reinstall ./spark-deepin-wine-runner.deb -y --allow-downgrades 
 
 remove:
 	sudo apt purge spark-deepin-wine-runner 
diff --git a/clean-unuse-program.py b/clean-unuse-program.py
new file mode 100755
index 0000000..f819fb7
--- /dev/null
+++ b/clean-unuse-program.py
@@ -0,0 +1,85 @@
+#!/usr/bin/env python3
+import os
+
+if __name__ == "__main__":
+    programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
+    print("此程序可以帮助您删除程序无需的组件以节约空间")
+    print("如果删除后想要恢复这样组件需要重新安装该软件包")
+    delProgramList = []
+    delProramCommand = "#!/bin/bash\n"
+    for i in [
+        [
+            "Wine 打包器(不基于生态打包脚本)", 
+            [
+                f"{programPath}/dlls.7z",
+                f"{programPath}/dlls",
+                f"{programPath}/exagear",
+                f"{programPath}/exagear.7z",
+                f"{programPath}/exagear",
+                f"{programPath}/wined3d.dll.so.7z",
+                f"{programPath}/wined3d.dll.so",
+                f"{programPath}/deepin-wine-packager.py",
+                "/usr/bin/deepin-wine-package-builder",
+                "/usr/share/applications/spark-deepin-wine-package-builder.desktop"
+            ]
+        ],
+        [
+            "Wine 打包器(基于生态打包脚本)", 
+            [
+                f"{programPath}/deepin-wine-packager-with-script.py",
+                f"{programPath}/package-script.zip",
+                f"{programPath}/package-script",
+                "/usr/bin/deepin-wine-packager-with-script",
+                "/usr/share/applications/spark-deepin-wine-packager-with-script.desktop"
+            ]
+        ],
+        [
+            "Arm 64 box86 wine 运行 DLL",
+            [
+                f"{programPath}/dlls-arm.7z",
+                f"{programPath}/dlls-arm"
+            ]
+        ],
+        [
+            "Windows 虚拟机简易安装组件",
+            [
+                f"{programPath}/StartVM.sh",
+	            f"{programPath}/RunVM.sh",
+	            f"{programPath}/VM",
+	            "/usr/share/applications/spark-deepin-wine-runner-control-vm.desktop",
+	            "/usr/share/applications/spark-deepin-wine-runner-start-vm.desktop"
+            ]
+        ],
+        [
+            "Wine 安装组件",
+            [
+                f"{programPath}/AllInstall.py",
+                f"{programPath}/wine install",
+                f"{programPath}/InstallWineOnDeepin23.py",
+                f"{programPath}/sparkstore.list",
+                f"{programPath}/InstallNewWineHQ.sh",
+                "/usr/bin/deepin-wine-runner-wine-installer",
+                "/usr/bin/deepin-wine-runner-wine-install-deepin23",
+                "/usr/bin/deepin-wine-runner-wine-install",
+                "/usr/bin/deepin-wine-runner-winehq-install"
+            ]
+        ]
+    ]:
+        if not os.path.exists(i[1][0]):
+            continue
+        if input(f"是否删除组件“{i[0]}”?[Y/n]").upper() == "Y":
+            delProgramList.append(i)
+            for x in i[1]:
+                if x == "/*" or x == "/":  # 为了防止个人疏忽,出现危险命令,所以如果有最危险的 /* 会直接跳过该命令的写入
+                    continue
+                delProramCommand += f"rm -rfv \"{x}\"\n"
+    if len(delProgramList) == 0:
+        print("您已经删除了所有可删除的组件,如果需要使用被删除的组件,请重新安装该软件安装包")
+        input("按回车退出")
+        exit()
+    print("开始删除")
+    file = open("/tmp/deepin-wine-clean.sh", "w")
+    file.write(delProramCommand)
+    file.close()
+    os.system("pkexec bash /tmp/deepin-wine-clean.sh")
+    input("按回车键退出程序")
\ No newline at end of file
diff --git a/cleanbottle.sh b/cleanbottle.sh
new file mode 100755
index 0000000..8b60131
--- /dev/null
+++ b/cleanbottle.sh
@@ -0,0 +1,393 @@
+#!/bin/sh
+if [ $WINE = "" ]; then
+	WINE_CMD="deepin-wine5"
+else
+	WINE_CMD=$WINE
+fi
+userdir=$USER
+
+remove_file()
+{
+    echo "============remove [$1]"
+    rm -rfv "$1"
+}
+
+purge_dir()
+{
+    echo "=============clean [$1]"
+    if [ -e "$1" ]; then
+        find "$1" -mindepth 1 -ignore_readdir_race -exec rm -rfv {} \;
+    else
+        mkdir -p "$1"
+    fi
+}
+
+clean_gecko()
+{
+    geckoid=$($WINE_CMD $BottleBase/windows/system32/uninstaller.exe --list | grep Gecko | cut -d"|" -f1)
+    echo " gecko GUID: ${geckoid}"
+    if [ -n "${geckoid}" ]; then
+        echo "uninstall gecko..."
+        $WINE_CMD $BottleBase/windows/system32/uninstaller.exe --remove ${geckoid}
+    fi
+    if [ -e "$BottleBase/windows/system32/gecko" ]; then
+        for i in $(ls "$BottleBase/windows/system32/gecko/" | grep -v plugin); do
+            echo "=============remove gecko dir [$i]"
+            rm -rfv "$BottleBase/windows/system32/gecko/$i"
+        done
+    fi
+}
+
+clean_common_temp()
+{
+    remove_file "$BottleBase/../winetricks.log"
+    purge_dir   "$BottleBase/windows/ControlPanelDB"
+    remove_file "$BottleBase/windows/control-panel.db"
+    purge_dir   "$BottleBase/windows/temp"
+    purge_dir   "$BottleBase/windows/Installer"
+    purge_dir   "$BottleBase/users/$userdir/Temp"
+    purge_dir   "$BottleBase/users/$userdir/Cookies"
+    purge_dir   "$BottleBase/users/$userdir/Recent"
+    remove_file "$BottleBase/users/$userdir/Application Data/pcmaster"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/wine_gecko"
+    purge_dir   "$BottleBase/users/$userdir/Local Settings/History"
+    purge_dir   "$BottleBase/users/$userdir/Local Settings/Temporary Internet Files"
+    #remove_file "$BottleBase/users/${USER}"
+    purge_dir   "$BottleBase/users/Public/Temp"
+    remove_file "$BottleBase/../PACKAGE_VERSION"
+    remove_file "$BottleBase/../update.policy"
+    purge_dir   "$BottleBase/deepin"
+}
+
+cleanup_aliwangwang()
+{
+    if [ ! -e "$BottleBase/Program Files/AliWangWang/AliIM.exe" ]; then return; fi
+
+    echo "++++AliWangWang detected. cleaning..."
+    purge_dir   "$BottleBase/Program Files/AliWangWang/profiles"
+    purge_dir   "$BottleBase/Program Files/AliWangWang/new"
+    purge_dir   "$BottleBase/users/$userdir/Local Settings/Application Data/aef"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/AliWangWang"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/TaobaoProtect"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/wwbizsrv"
+}
+
+cleanup_aliworkbench()
+{
+    if [ ! -e "$BottleBase/Program Files/AliWorkbench/AliWorkbench.exe" ]; then return; fi
+
+    echo "++++AliWorkbench detected. cleaning..."
+    purge_dir "$BottleBase/users/Public/Documents/AliWorkbench"
+    purge_dir   "$BottleBase/users/$userdir/Local Settings/Application Data/aef/"
+    purge_dir   "$BottleBase/users/$userdir/Local Settings/Application Data/AliWorkbench/"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/AliWorkbench/"
+}
+
+cleanup_flash()
+{
+    if [ ! -e "$BottleBase/windows/system32/Macromed/Flash/" ]; then return; fi
+
+    echo "++++flash detected. cleaning..."
+    remove_file "$BottleBase/users/$userdir/Application Data/Adobe"
+    remove_file "$BottleBase/users/$userdir/Application Data/Macromedia"
+    remove_file "$BottleBase/windows/system32/FlashPlayerApp.exe"
+    remove_file "$BottleBase/windows/ControlPanelDB/FlashPlayerCPLApp.ico"
+    remove_file "$BottleBase/windows/system32/FlashPlayerCPLApp.cpl"
+    remove_file "$BottleBase/windows/system32/Macromed/Flash/FlashInstall.log"
+    #remove_file "$BottleBase/windows/system32/Macromed/Flash/Flash*.dll"
+    #remove_file "$BottleBase/windows/system32/Macromed/Flash/Flash*.exe"
+}
+
+cleanup_foobar2000()
+{
+    if [ ! -e "$BottleBase/Program Files/foobar2000/foobar2000.exe" ]; then return; fi
+
+    echo "++++foobar2000 detected. cleaning..."
+    purge_dir   "$BottleBase/Program Files/foobar2000/configuration"
+    purge_dir   "$BottleBase/Program Files/foobar2000/library"
+    purge_dir   "$BottleBase/Program Files/foobar2000/playlists-v1.3"
+    remove_file "$BottleBase/Program Files/foobar2000/theme.fth"
+}
+
+cleanup_mailmaster()
+{
+    if [ ! -e "$BottleBase/Program Files/Netease/MailMaster/MailMaster.exe" ]; then return; fi
+
+    echo "++++MailMaster detected. cleaning..."
+    remove_file "$BottleBase/Program Files/Netease/MailMaster/account"
+    remove_file "$BottleBase/Program Files/Netease/MailMaster/address"
+    remove_file "$BottleBase/Program Files/Netease/MailMaster/tmp"
+    remove_file "$BottleBase/Program Files/Netease/MailMaster/UpdateTemp"
+    remove_file "$BottleBase/Program Files/Netease/MailMaster/applog.txt"
+    remove_file "$BottleBase/Program Files/Netease/MailMaster/netlog.txt"
+    remove_file "$BottleBase/Program Files/Netease/MailMaster/global.cfg"
+    remove_file "$BottleBase/Program Files/Netease/MailMaster/schd.sdb"
+}
+
+cleanup_nativeie()
+{
+    if [ ! -e "$BottleBase/Program Files/Internet Explorer/iexplore.exe.mui" ]; then return; fi
+
+    echo "++++native IE detected. cleaning..."
+    purge_dir   "$BottleBase/users/$userdir/Local Settings/Application Data/Microsoft/"
+
+    remove_file "$BottleBase/windows/ie8"
+    remove_file "$BottleBase/windows/%DownloadedProgramFiles%"
+
+    #remove all useless gecko files
+    remove_file "$BottleBase/windows/system32/gecko"
+}
+
+cleanup_qq_before()
+{
+    if [ ! -e "$BottleBase/Program Files/Tencent/QQ/Bin/QQ.exe" ]; then return; fi
+
+    echo "++++QQ detected. cleaning..."
+    if [ -f "$BottleBase/Program Files/Tencent/Qzone/QQPhotoDrawUpdateSvr.exe" ]; then
+        remove_file "$BottleBase/Program Files/Tencent/Qzone"
+    fi
+    if [ -f "$BottleBase/Program Files/Tencent/QQGameMicro/QQGameMicro.exe" ]; then
+        remove_file "$BottleBase/Program Files/Tencent/QQGameMicro"
+    fi
+}
+
+cleanup_qq()
+{
+    if [ ! -e "$BottleBase/Program Files/Tencent/QQ/Bin/QQ.exe" ]; then return; fi
+
+    echo "++++cleaning QQ remains..."
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent"
+    purge_dir   "$BottleBase/users/$userdir/Local Settings/Application Data/Tencent"
+    purge_dir   "$BottleBase/users/Public/Application Data/Tencent/QQPCMgr"
+    purge_dir   "$BottleBase/users/Public/Application Data/Tencent/QQProtect"
+    purge_dir   "$BottleBase/users/Public/Application Data/Tencent/QQDownload"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/Npchrome"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/QQDownload"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/QQMiniDL"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/TXFTN"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/TXPTOP"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/TXSSO"
+    purge_dir   "$BottleBase/Program Files/Tencent/QQGameMicro"
+    purge_dir   "$BottleBase/Program Files/Tencent/QQMusic"
+    remove_file "$BottleBase/Program Files/Tencent/QQ/Plugin/Com.Tencent.QQPet/bin/QQPet"
+    remove_file "$BottleBase/Program Files/Tencent/QQ/Users"
+}
+
+cleanup_tim()
+{
+    if [ ! -e "$BottleBase/Program Files/Tencent/TIM/Bin/TIM.exe" ]; then return; fi
+
+    echo "++++cleaning TIM remains..."
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent"
+    purge_dir   "$BottleBase/users/$userdir/Local Settings/Application Data/Tencent"
+    purge_dir   "$BottleBase/users/Public/Application Data/Tencent/QQPCMgr"
+    purge_dir   "$BottleBase/users/Public/Application Data/Tencent/QQProtect"
+    purge_dir   "$BottleBase/users/Public/Application Data/Tencent/QQDownload"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/Npchrome"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/QQDownload"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/QQMiniDL"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/TXFTN"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/TXPTOP"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/TXSSO"
+    purge_dir   "$BottleBase/Program Files/Tencent/QQGameMicro"
+    purge_dir   "$BottleBase/Program Files/Tencent/QQMusic"
+    purge_dir   "$BottleBase/Program Files/Tencent/SSPlus"
+    remove_file "$BottleBase/Program Files/Tencent/TIM/Users"
+}
+
+cleanup_wxwork()
+{
+    if [ ! -e "$BottleBase/Program Files/WXWork/WXWork.exe" ]; then return; fi
+
+    echo "++++cleaning WXWork remains..."
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent"
+}
+
+cleanup_wechat()
+{
+    if [ ! -e "$BottleBase/Program Files/Tencent/WeChat/WeChat.exe" ]; then return; fi
+
+    echo "++++cleaning WeChat remains..."
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent"
+}
+
+cleanup_baidupan()
+{
+    if [ ! -e "$BottleBase/Program Files/baidu/BaiduNetdisk/baidunetdisk.exe" ]; then return; fi
+
+    echo "++++cleaning baidu net disk remains..."
+    purge_dir   "$BottleBase/users/$userdir/Application Data/BaiduYunGuanjia"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/BaiduYunKernel"
+    purge_dir   "$BottleBase/BaiduNetdiskDownload"
+    purge_dir   "$BottleBase/Program Files/baidu/Download"
+    remove_file "$BottleBase/Program Files/baidu/BaiduNetdisk/users"
+}
+
+cleanup_foxmail()
+{
+    if [ ! -e "$BottleBase/Program Files/Foxmail 7.2/Foxmail.exe" ]; then return; fi
+
+    echo "++++cleaning Foxmail remains..."
+    purge_dir   "$BottleBase/users/$userdir/Application Data/HBuilder"
+    remove_file "$BottleBase/Program Files/Foxmail 7.2/Storage"
+    remove_file "$BottleBase/Program Files/Foxmail 7.2/FMStorage.list"
+}
+
+cleanup_hbuilder()
+{
+    if [ ! -e "$BottleBase/Program Files/HBuilder/HBuilder.exe" ]; then return; fi
+
+    echo "++++cleaning HBuilder remains..."
+    purge_dir   "$BottleBase/users/$userdir/Application Data/HBuilder"
+    purge_dir   "$BottleBase/users/$userdir/HBuilder"
+    purge_dir   "$BottleBase/users/$userdir/HBuilder settings"
+    $WINE_CMD reg DELETE "HKCU\\Software\\HBuilder" /f
+}
+
+cleanup_thunderspeed()
+{
+    if [ ! -e "$BottleBase/Program Files/Thunder Network/Thunder/Program/Thunder.exe" ]; then return; fi
+
+    echo "++++cleaning ThunderSpeed remains..."
+    purge_dir   "$BottleBase/users/$userdir/AppData/LocalLow/Thunder Network"
+    purge_dir   "$BottleBase/users/Public/Application Data/Thunder Network"
+    purge_dir   "$BottleBase/users/Public/Thunder Network"
+    purge_dir   "$BottleBase/Program Files/Thunder Network/Thunder/Data/ThunderPush"
+    purge_dir   "$BottleBase/Program Files/Thunder Network/Thunder/Data/SmallHornCtrlCenter"
+    purge_dir   "$BottleBase/Program Files/Thunder Network/Thunder/XLApp"
+}
+
+cleanup_qqdownload()
+{
+    if [ ! -e "$BottleBase/Program Files/Tencent/QQDownload/QQDownload.exe" ]; then return; fi
+
+    echo "++++QQDownload detected. cleaning..."
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent/TXSSO/SetupLogs"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent/Logs"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent/QQDownload"
+    #mkdir -p    "$BottleBase/users/$userdir/Application Data/Tencent/QQDownload/115248456/Setting"
+}
+
+cleanup_qqcrm()
+{
+    if [ ! -e "$BottleBase/Program Files/Tencent/BizQQ/Bin/QQCRM.exe" ]; then return; fi
+
+    echo "++++QQCRM detected. cleaning..."
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent/Logs"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent/QQCRM/STemp"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent/TXSSO"
+}
+
+cleanup_qqeim()
+{
+    if [ ! -e "$BottleBase/Program Files/Tencent/QQEIM/Bin/QQEIM.exe" ]; then return; fi
+
+    echo "++++QQEIM detected. cleaning..."
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent/Logs"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent/QQEIM/STemp"
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent/TXSSO"
+}
+
+cleanup_richez()
+{
+    if [ ! -e "$BottleBase/GTJA/RichEZ/TdxW.exe" ]; then return; fi
+
+    echo "++++Richez detected. cleaning..."
+    remove_file "$BottleBase/GTJA/RichEZ/JBPlugins/pyerr"
+    remove_file "$BottleBase/GTJA/RichEZ/RichET/bin/flyingfish.log"
+    purge_dir   "$BottleBase/GTJA/RichEZ/RichET/fflog"
+    purge_dir   "$BottleBase/GTJA/RichEZ/RichET/tmp"
+    remove_file "$BottleBase/GTJA/RichEZ/T0002/customcfg_gtjazd.zip"
+    remove_file "$BottleBase/GTJA/RichEZ/T0002/hq_cache"
+    purge_dir   "$BottleBase/GTJA/RichEZ/T0002/tmp"
+    remove_file "$BottleBase/GTJA/RichEZ/T0002/xml_cache"
+    remove_file "$BottleBase/GTJA/RichEZ/webs/web_cache"
+}
+
+software_cleaner_before()
+{
+    cleanup_qq_before
+}
+
+cleanup_qqlite()
+{
+    if [ ! -e "$BottleBase/Program Files/Tencent/QQLite/Bin/QQ.exe" ]; then return; fi
+
+    echo "++++cleaning QQ Lite remains..."
+
+    purge_dir   "$BottleBase/users/$userdir/Application Data/Tencent"
+    purge_dir   "$BottleBase/users/$userdir/Local Settings/Application Data/Tencent"
+    purge_dir   "$BottleBase/users/Public/Application Data/Tencent"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/Npchrome"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/QQDownload"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/QQMiniDL"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/TXFTN"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/TXPTOP"
+    remove_file "$BottleBase/Program Files/Common Files/Tencent/TXSSO"
+    remove_file "$BottleBase/Program Files/Tencent/QQLite/Users"
+}
+
+cleanup_youku()
+{
+    if [ ! -e "$BottleBase/Program Files/YouKu/YoukuClient/YoukuDesktop.exe" ]; then return; fi
+
+    echo "++++cleaning YouKu remains..."
+    purge_dir "$BottleBase/Program Files/YouKu/YoukuClient/repaire"
+    purge_dir "$BottleBase/users/$userdir/Application Data/youku"
+    purge_dir "$BottleBase/users/$userdir/Application Data/ytmediacenter"
+}
+
+software_cleaner()
+{
+    cleanup_aliwangwang
+    cleanup_aliworkbench
+    #cleanup_flash
+    cleanup_foobar2000
+    cleanup_mailmaster
+    cleanup_nativeie
+    cleanup_qq
+    cleanup_tim
+    cleanup_qqdownload
+    cleanup_qqeim
+    cleanup_qqcrm
+    cleanup_richez
+    cleanup_qqlite
+    cleanup_youku
+    cleanup_foxmail
+    cleanup_thunderspeed
+    cleanup_wechat
+    cleanup_wxwork
+    cleanup_baidupan
+    cleanup_hbuilder
+}
+
+#=============================================
+
+if [ -z "$1" ]; then
+    echo "prefix should be given"
+    exit 1
+fi
+WINEPREFIX=$1
+BottlePath=$1
+BottleBase=${BottlePath}/drive_c
+
+if [ ! -d "${BottlePath}" ]; then
+    echo "prefix do not exists"
+    exit 2
+fi
+
+#if [ ! -e "${BottlePath}/.update-timestamp" ]; then
+#    echo "invalid prefix"
+#    exit 3
+#fi
+
+echo "clean $BottlePath"
+export WINEPREFIX=${BottlePath}
+/usr/lib/i386-linux-gnu/deepin-wine5/wineserver -k
+
+software_cleaner_before
+clean_gecko
+software_cleaner
+clean_common_temp
+
+exit 0
diff --git a/deb/DEBIAN/control b/deb/DEBIAN/control
index ef30bde..751ea32 100755
--- a/deb/DEBIAN/control
+++ b/deb/DEBIAN/control
@@ -1,5 +1,5 @@
 Package: spark-deepin-wine-runner
-Version: 1.9.0Alpha2
+Version: 1.9.0
 Maintainer: gfdgd xi <3025613752@qq.com>, 为什么您不喜欢熊出没和阿布呢
 Homepage: https://gitee.com/gfdgd-xi/deep-wine-runner
 Architecture: all
diff --git a/deb/DEBIAN/postinst b/deb/DEBIAN/postinst
index bd8f6ba..457db84 100755
--- a/deb/DEBIAN/postinst
+++ b/deb/DEBIAN/postinst
@@ -1,3 +1,25 @@
-# !/bin/sh
+#!/bin/sh
+# 如果为非 X86 PC,可以删除掉一些无用组件(主要是用不了)
+if [ `arch` != "x86_64" ]; then
+	echo 非X86架构,删除对非X86架构无用的组件
+	# 删除虚拟机功能
+	rm -rf /opt/apps/deepin-wine-runner/StartVM.sh
+	rm -rf /opt/apps/deepin-wine-runner/RunVM.sh
+	rm -rf /opt/apps/deepin-wine-runner/VM
+	rm -rf /usr/share/applications/spark-deepin-wine-runner-control-vm.desktop
+	rm -rf /usr/share/applications/spark-deepin-wine-runner-start-vm.desktop
+	# 删除安装 wine 功能
+	rm -rf "/opt/apps/deepin-wine-runner/wine install"
+	rm -rf /usr/bin/deepin-wine-runner-wine-installer
+	rm -rf /usr/bin/deepin-wine-runner-wine-install-deepin23
+	rm -rf /usr/bin/deepin-wine-runner-wine-install
+	rm -rf /usr/bin/deepin-wine-runner-winehq-install
+	rm -rf /opt/apps/deepin-wine-runner/InstallWineOnDeepin23.py
+	rm -rf /opt/apps/deepin-wine-runner/sparkstore.list
+	rm -rf /opt/apps/deepin-wine-runner/AllInstall.py
+	rm -rf /opt/apps/deepin-wine-runner/InstallNewWineHQ.sh
+fi
+# 设置目录权限,让用户可读可写,方便后续删除组件
+chmod 777 -R /opt/apps/deepin-wine-runner
 # 向服务器返回安装数加1(不显示内容且忽略错误)
-curl http://120.25.153.144/spark-deepin-wine-runner/Install.php?Version=1.9.0 -s > /dev/null | true
+curl http://120.25.153.144/spark-deepin-wine-runner/Install.php?Version=1.9.0 -s > /dev/null | true
\ No newline at end of file
diff --git a/deb/DEBIAN/postrm b/deb/DEBIAN/postrm
new file mode 100755
index 0000000..f959110
--- /dev/null
+++ b/deb/DEBIAN/postrm
@@ -0,0 +1,3 @@
+#!/bin/sh
+# 删除软件残留
+rm -rfv /opt/apps/spark-deepin-wine-runner/*
\ No newline at end of file
diff --git a/deb/opt/apps/deepin-wine-runner/AllInstall.py b/deb/opt/apps/deepin-wine-runner/AllInstall.py
index 9f27afa..3d42830 100755
--- a/deb/opt/apps/deepin-wine-runner/AllInstall.py
+++ b/deb/opt/apps/deepin-wine-runner/AllInstall.py
@@ -22,11 +22,12 @@ def AddSparkStoreSource():
     os.system("sudo apt update -o Dir::Etc::sourcelist=\"sources.list.d/sparkstore.list\"     -o Dir::Etc::sourceparts=\"-\" -o APT::Get::List-Cleanup=\"0\"")
 
 def InstallSparkWine(wine):
-    if os.path.exists("/usr/local/bin/ss-apt-fast"):
-        os.system("sudo apt install apt-fast -y")
-        os.system(f"sudo ss-apt-fast install \"{wine}\" -y")
-        return
-    os.system(f"sudo apt install \"{wine}\" -y")
+    #if os.path.exists("/usr/local/bin/ss-apt-fast"):
+        #os.system("sudo apt install apt-fast -y")
+        #os.system(f"sudo ss-apt-fast install \"{wine}\" -y")
+        #return
+    os.system("sudo ss-apt-fast update")
+    os.system(f"sudo ss-apt-fast install \"{wine}\" -y")
 
 ###################
 # 程序功能
@@ -47,12 +48,8 @@ print("请问是否要安装 deepin-wine?[Y/N]", end=' ')
 choose = input().upper()
 if not choose == "N":
     os.system("sudo apt install deepin-wine -y")
-print("请问是否要安装 deepin-wine5(需要添加星火应用商店的源)?[Y/N]", end=' ')
+print("请问是否要安装 deepin-wine5(需要安装最新版星火应用商店)?[Y/N]", end=' ')
 choose = input().upper()
-if not choose == "N":
-    if not os.path.exists("/etc/apt/sources.list.d/sparkstore.list"):
-        AddSparkStoreSource()
-    InstallSparkWine("deepin-wine5")
 print("请问是否要安装 deepin-wine5-stable?[Y/N]", end=' ')
 choose = input().upper()
 if not choose == "N":
@@ -61,11 +58,9 @@ print("请问是否要安装 deepin-wine6-stable?[Y/N]", end=' ')
 choose = input().upper()
 if not choose == "N":
     os.system("sudo apt install deepin-wine6-stable -y")
-print("请问是否要安装 spark-wine7-devel(需要添加星火应用商店的源)?[Y/N]", end=' ')
+print("请问是否要安装 spark-wine7-devel(需要安装最新版星火应用商店)?[Y/N]", end=' ')
 choose = input().upper()
 if not choose == "N":
-    if not os.path.exists("/etc/apt/sources.list.d/sparkstore.list"):
-        AddSparkStoreSource()
     InstallSparkWine("spark-wine7-devel")
 print("请问是否要安装 ukylin-wine(需要添加 ukylin 源,但因为可能会导致系统问题,将不会自动添加)?[Y/N]", end=" ")
 choose = input().upper()
diff --git a/deb/opt/apps/deepin-wine-runner/InstallNewWineHQ.sh b/deb/opt/apps/deepin-wine-runner/InstallNewWineHQ.sh
new file mode 100755
index 0000000..4d2f720
--- /dev/null
+++ b/deb/opt/apps/deepin-wine-runner/InstallNewWineHQ.sh
@@ -0,0 +1,67 @@
+#!/bin/bash
+ubuntuSource=(
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources" 
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/impish/winehq-impish.sources" 
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/focal/winehq-focal.sources" 
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/bionic/winehq-bionic.sources"
+)
+debianSource=(
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/buster/winehq-buster.sources" 
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/bullseye/winehq-bullseye.sources" 
+    "sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/bookworm/winehq-bookworm.sources"
+)
+# 选择发行版
+toilet WineHQ
+echo "WineHQ 官网:https://wiki.winehq.org/"
+echo
+echo "选择发行版:"
+echo "0. Debian"
+echo "1. Ubuntu"
+read system
+# 选择版本
+echo "选择系统版本"
+if [ $system = "0" ]; then
+    echo "0. Debian 10 (Buster)"
+    echo "1. Debian 11 (Bullseye)"
+    echo "2. Debian Testing (Bookworm)"
+fi
+if [ $system = "1" ]; then
+    echo "0. Ubuntu 22.04"
+    echo "1. Ubuntu 21.10"
+    echo "2. Ubuntu 20.04,Linux Mint 20.x"
+    echo "3. Ubuntu 18.04,Linux Mint 19.x"
+fi
+read systemVersion
+# 选择 Wine
+echo "选择 Wine:"
+echo "0. 稳定分支"
+echo "1. 开发分支"
+echo "2. Staging 分支"
+read programVersion
+# 初步配置
+sudo apt-key del "D43F 6401 4536 9C51 D786 DDEA 76F1 A20F F987 672F"
+sudo dpkg --add-architecture i386
+sudo wget -nc -O /usr/share/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
+# 检测 apt-fast 或 ss-apt-fast 是否存在
+apt="apt"
+which apt-fast > /dev/null
+if [ $? == 0 ]; then
+    apt="apt-fast"
+fi
+which ss-apt-fast > /dev/null
+if [ $? == 0 ]; then
+    apt="ss-apt-fast"
+fi
+# 添加源
+if [ $system = "0" ]; then
+    ${debianSource[$systemVersion]}
+fi
+if [ $system = "1" ]; then
+    ${ubuntuSource[$systemVersion]}
+fi
+sudo $apt update
+# 安装 Wine
+wineInstall=("sudo $apt install --install-recommends winehq-stable" "sudo $apt install --install-recommends winehq-devel" "sudo $apt install --install-recommends winehq-staging")
+${wineInstall[$programVersion]}
+echo "按回车键退出"
+read
\ No newline at end of file
diff --git a/deb/opt/apps/deepin-wine-runner/StartVM.sh b/deb/opt/apps/deepin-wine-runner/StartVM.sh
deleted file mode 100755
index d1a7c77..0000000
--- a/deb/opt/apps/deepin-wine-runner/StartVM.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-# 使用系统默认的 bash 运行
-###########################################################################################
-# 作者:gfdgd xi、为什么您不喜欢熊出没和阿布呢
-# 版本:1.7.0
-# 更新时间:2022年07月15日
-# 感谢:感谢 wine 以及 deepin-wine 团队,提供了 wine 和 deepin-wine 给大家使用,让我能做这个程序
-# 基于 Python3 的 tkinter 构建
-###########################################################################################
-VBoxManage showvminfo Windows
-if test 0 == $?; then
-    # 检测到虚拟机存在,启动虚拟机
-    VBoxManage startvm Windows
-    exit
-fi
-zenity --question --no-wrap --text="检查到您未创建所指定的虚拟机,是否创建虚拟机并继续?\n如果不创建将无法使用"
-if test 1 == $?; then
-    # 用户不想创建虚拟机,结束
-    exit
-fi
-cd `dirname $0`
-./VM/VirtualMachine
\ No newline at end of file
diff --git a/deb/opt/apps/deepin-wine-runner/VM/icon.png b/deb/opt/apps/deepin-wine-runner/VM/icon.png
deleted file mode 100755
index b164d46..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/VM/icon.png and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/clean-unuse-program.py b/deb/opt/apps/deepin-wine-runner/clean-unuse-program.py
new file mode 100755
index 0000000..f819fb7
--- /dev/null
+++ b/deb/opt/apps/deepin-wine-runner/clean-unuse-program.py
@@ -0,0 +1,85 @@
+#!/usr/bin/env python3
+import os
+
+if __name__ == "__main__":
+    programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
+    print("此程序可以帮助您删除程序无需的组件以节约空间")
+    print("如果删除后想要恢复这样组件需要重新安装该软件包")
+    delProgramList = []
+    delProramCommand = "#!/bin/bash\n"
+    for i in [
+        [
+            "Wine 打包器(不基于生态打包脚本)", 
+            [
+                f"{programPath}/dlls.7z",
+                f"{programPath}/dlls",
+                f"{programPath}/exagear",
+                f"{programPath}/exagear.7z",
+                f"{programPath}/exagear",
+                f"{programPath}/wined3d.dll.so.7z",
+                f"{programPath}/wined3d.dll.so",
+                f"{programPath}/deepin-wine-packager.py",
+                "/usr/bin/deepin-wine-package-builder",
+                "/usr/share/applications/spark-deepin-wine-package-builder.desktop"
+            ]
+        ],
+        [
+            "Wine 打包器(基于生态打包脚本)", 
+            [
+                f"{programPath}/deepin-wine-packager-with-script.py",
+                f"{programPath}/package-script.zip",
+                f"{programPath}/package-script",
+                "/usr/bin/deepin-wine-packager-with-script",
+                "/usr/share/applications/spark-deepin-wine-packager-with-script.desktop"
+            ]
+        ],
+        [
+            "Arm 64 box86 wine 运行 DLL",
+            [
+                f"{programPath}/dlls-arm.7z",
+                f"{programPath}/dlls-arm"
+            ]
+        ],
+        [
+            "Windows 虚拟机简易安装组件",
+            [
+                f"{programPath}/StartVM.sh",
+	            f"{programPath}/RunVM.sh",
+	            f"{programPath}/VM",
+	            "/usr/share/applications/spark-deepin-wine-runner-control-vm.desktop",
+	            "/usr/share/applications/spark-deepin-wine-runner-start-vm.desktop"
+            ]
+        ],
+        [
+            "Wine 安装组件",
+            [
+                f"{programPath}/AllInstall.py",
+                f"{programPath}/wine install",
+                f"{programPath}/InstallWineOnDeepin23.py",
+                f"{programPath}/sparkstore.list",
+                f"{programPath}/InstallNewWineHQ.sh",
+                "/usr/bin/deepin-wine-runner-wine-installer",
+                "/usr/bin/deepin-wine-runner-wine-install-deepin23",
+                "/usr/bin/deepin-wine-runner-wine-install",
+                "/usr/bin/deepin-wine-runner-winehq-install"
+            ]
+        ]
+    ]:
+        if not os.path.exists(i[1][0]):
+            continue
+        if input(f"是否删除组件“{i[0]}”?[Y/n]").upper() == "Y":
+            delProgramList.append(i)
+            for x in i[1]:
+                if x == "/*" or x == "/":  # 为了防止个人疏忽,出现危险命令,所以如果有最危险的 /* 会直接跳过该命令的写入
+                    continue
+                delProramCommand += f"rm -rfv \"{x}\"\n"
+    if len(delProgramList) == 0:
+        print("您已经删除了所有可删除的组件,如果需要使用被删除的组件,请重新安装该软件安装包")
+        input("按回车退出")
+        exit()
+    print("开始删除")
+    file = open("/tmp/deepin-wine-clean.sh", "w")
+    file.write(delProramCommand)
+    file.close()
+    os.system("pkexec bash /tmp/deepin-wine-clean.sh")
+    input("按回车键退出程序")
\ No newline at end of file
diff --git a/deb/opt/apps/deepin-wine-runner/deepin-wine-packager.py b/deb/opt/apps/deepin-wine-runner/deepin-wine-packager.py
index 876f4a9..83b03c8 100755
--- a/deb/opt/apps/deepin-wine-runner/deepin-wine-packager.py
+++ b/deb/opt/apps/deepin-wine-runner/deepin-wine-packager.py
@@ -61,6 +61,9 @@ def disabled_or_NORMAL_all(choose):
     option1_text.setDisabled(choose)
     chooseWineHelperValue.setDisabled(choose)
     wineVersion.setDisabled(choose)
+    debArch.setDisabled(choose)
+    if not choose:
+        ChangeArchCombobox()
     
 class QT:
     thread = None
@@ -157,82 +160,17 @@ class make_deb_threading(QtCore.QThread):
                 disabled_or_NORMAL_all(True)
                 self.label.emit("容器路径填写错误,无法进行构建 deb 包")
                 return
-            #############
-            # 删除文件
-            #############
-            self.label.emit("正在删除对构建 deb 包有影响的文件……")
-            debPackagePath = f"/tmp/{random.randint(0, 9999)}"
-            self.run_command(f"rm -rfv /tmp/{debPackagePath}")
-            ###############
-            # 创建目录
-            ###############
-            self.label.emit("正在创建目录……")
-            os.makedirs("{}/DEBIAN".format(debPackagePath))
-            os.makedirs("{}/opt/apps/{}/entries/applications".format(debPackagePath, e1_text.text()))
-            os.makedirs("{}/opt/apps/{}/entries/icons/hicolor/scalable/apps".format(debPackagePath, e1_text.text()))
-            os.makedirs("{}/opt/apps/{}/files".format(debPackagePath, e1_text.text()))
-            ###############
-            # 创建文件
-            ###############
-            self.label.emit("正在创建文件……")
-            os.mknod("{}/DEBIAN/control".format(debPackagePath))
-            os.mknod("{}/opt/apps/{}/entries/applications/{}.desktop".format(debPackagePath, e1_text.text(), e1_text.text()))
-            os.mknod("{}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()))
-            os.mknod("{}/opt/apps/{}/info".format(debPackagePath, e1_text.text()))
-            ###############
-            # 设置容器
-            ###############
-            self.label.emit("正在设置 wine 容器")
-            os.chdir(b)
-            self.run_command("sed -i \"s#$USER#@current_user@#\" ./*.reg")
-            os.chdir(f"{b}/drive_c/users")
-            self.run_command(f"mv -v '{os.getlogin()}' @current_user@")
-            os.chdir(programPath)
-            ###############
-            # 压缩容器
-            ###############
-            self.label.emit("正在打包 wine 容器")
-            self.run_command("7z a {}/opt/apps/{}/files/files.7z {}/*".format(debPackagePath, e1_text.text(), b))
-            ###############
-            # 复制图片
-            ###############
-            self.label.emit("正在复制文件……")
-            self.run_command(f"cp -rv '{programPath}/dlls' {debPackagePath}/opt/apps/{e1_text.text()}/files/")
-            if e9_text.text() != "":
-                shutil.copy(e9_text.text(), "{}/opt/apps/{}/entries/icons/hicolor/scalable/apps/{}.{}".format(debPackagePath, e1_text.text(), e1_text.text(), imms))
-            ################
-            # 获取文件大小
-            ################
-            self.label.emit("正在计算文件大小……")
-            size = getFileFolderSize(debPackagePath) / 1024
-            ################
-            # 写入文本文档
-            ################
-            self.label.emit("正在写入文件……")
-            if not chooseWineHelperValue.isChecked():
-                write_txt("{}/DEBIAN/control".format(debPackagePath), '''Package: {}
-Version: {}
-Architecture: i386
-Maintainer: {}
-Depends: {}, deepin-wine-helper (>= 5.1.30-1), fonts-wqy-microhei, fonts-wqy-zenhei
-Section: non-free/otherosfs
-Priority: optional
-Multi-Arch: foreign
-Description: {}
-'''.format(e1_text.text(), e2_text.text(), e4_text.text(), wine[wineVersion.currentText()], e3_text.text()))
-            else:
-                write_txt("{}/DEBIAN/control".format(debPackagePath), '''Package: {}
-Version: {}
-Architecture: i386
-Maintainer: {}
-Depends: {}, spark-dwine-helper (>= 1.6.2), fonts-wqy-microhei, fonts-wqy-zenhei
-Section: non-free/otherosfs
-Priority: optional
-Multi-Arch: foreign
-Description: {}
-'''.format(e1_text.text(), e2_text.text(), e4_text.text(), wine[wineVersion.currentText()], e3_text.text()))
-            if rmBash.isChecked():
-                write_txt("{}/DEBIAN/postrm".format(debPackagePath, e1_text.text()), f'''#!/bin/bash
+            debInformation = [
+                {
+                    # I386 wine 打包配置文件
+                    "Wine": wine[wineVersion.currentText()],
+                    "Architecture": "i386",
+                    "Depends": [
+                        f"{wine[wineVersion.currentText()]}, deepin-wine-helper (>= 5.1.30-1), fonts-wqy-microhei, fonts-wqy-zenhei",
+                        f"{wine[wineVersion.currentText()]}, spark-dwine-helper (>= 1.6.2), fonts-wqy-microhei, fonts-wqy-zenhei"
+                        ][int(chooseWineHelperValue.isChecked())],
+                    "postinst": "",
+                    "postrm": ["", f"""#!/bin/bash
 
 if [ "$1" = "remove" ] || [ "$1" = "purge" ];then
 
@@ -247,11 +185,9 @@ fi
 done
 else
 echo"非卸载,跳过清理"
-fi
-''')
-            write_txt("{}/opt/apps/{}/entries/applications/{}.desktop".format(debPackagePath, e1_text.text(), e1_text.text()), '#!/usr/bin/env xdg-open\n[Desktop Entry]\nEncoding=UTF-8\nType=Application\nX-Created-By={}\nCategories={};\nIcon={}\nExec="/opt/apps/{}/files/run.sh" {}\nName={}\nComment={}\nMimeType={}\nGenericName={}\nTerminal=false\nStartupNotify=false\n'.format(e4_text.text(), option1_text.currentText(), a, e1_text.text(), e15_text.text(), e8_text.text(), e3_text.text(), e10_text.text(), e1_text.text()))
-            if not bool(chooseWineHelperValue.text()):
-                write_txt("{}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()), '''#!/bin/sh
+fi"""][int()],
+                    "run.sh": [
+                        f"""#!/bin/sh
 
 #   Copyright (C) 2016 Deepin, Inc.
 #
@@ -260,13 +196,13 @@ fi
 
 version_gt() {{ test "$(echo "$@" | tr " " "\\n" | sort -V | head -n 1)" != "$1"; }}
 
-BOTTLENAME="{}"
-APPVER="{}"
-EXEC_PATH="{}"
+BOTTLENAME="{e5_text.text()}"
+APPVER="{e2_text.text()}"
+EXEC_PATH="{e7_text.text()}"
 START_SHELL_PATH="/opt/deepinwine/tools/run_v4.sh"
 export MIME_TYPE=""
-export DEB_PACKAGE_NAME="{}"
-export APPRUN_CMD="{}"
+export DEB_PACKAGE_NAME="{e1_text.text()}"
+export APPRUN_CMD="{wine[wineVersion.currentText()]}"
 DISABLE_ATTACH_FILE_DIALOG=""
 EXPORT_ENVS=""
 
@@ -294,10 +230,8 @@ if [ -n "$EXEC_PATH" ];then
     fi
 else
     $START_SHELL_PATH $BOTTLENAME $APPVER "uninstaller.exe" "$@"
-fi
-'''.format(e5_text.text(), e2_text.text(), e7_text.text(), e1_text.text(), wine[wineVersion.currentText()]))
-            else:
-                write_txt("{}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()), '''#!/bin/sh
+fi""", 
+                        f"""#!/bin/sh
 
 #   Copyright (C) 2016 Deepin, Inc.
 #
@@ -333,16 +267,16 @@ Get_Dist_Name()
 
 version_gt() {{ test "$(echo "$@" | tr " " "\n" | sort -V | head -n 1)" != "$1"; }}
 ####用于比较版本?未实装
-BOTTLENAME="{}"
-APPVER="{}"
-EXEC_PATH="{}"
+BOTTLENAME="{e5_text.text()}"
+APPVER="{e2_text.text()}"
+EXEC_PATH="{e7_text.text()}"
 ##### 软件在wine中的启动路径
 START_SHELL_PATH="/opt/deepinwine/tools/spark_run_v4.sh"
 export MIME_TYPE=""
 #####没什么用
-export DEB_PACKAGE_NAME="{}"
+export DEB_PACKAGE_NAME="{e1_text.text()}"
 ####这里写包名才能在启动的时候正确找到files.7z,似乎也和杀残留进程有关
-export APPRUN_CMD="{}"
+export APPRUN_CMD="{wine[wineVersion.currentText()]}"
 #####wine启动指令,建议
 EXPORT_ENVS=""
 
@@ -403,15 +337,412 @@ if [ -n "$EXEC_PATH" ];then
     fi
 else
     $START_SHELL_PATH $BOTTLENAME $APPVER "uninstaller.exe" "$@"
+fi"""
+                        ][chooseWineHelperValue.isChecked()],
+                        "info": f'''{{
+    "appid": "{e1_text.text()}",
+    "name": "{e8_text.text()}",
+    "version": "{e2_text.text()}",
+    "arch": ["i386"],
+    "permissions": {{
+        "autostart": false,
+        "notification": false,
+        "trayicon": true,
+        "clipboard": true,
+        "account": false,
+        "bluetooth": false,
+        "camera": true,
+        "audio_record": true,
+        "installed_apps": false
+    }}
+}}'''
+                },
+                {
+                    # ARM64 BOX86 wine 打包配置文件
+                    "Wine": f"WINEPREDLL='{programPath}/dlls-arm' WINEDLLPATH=/opt/deepin-wine6-stable/lib BOX86_NOSIGSEGV=1 /opt/deepin-box86/box86 /opt/deepin-wine6-stable/bin/wine ",
+                    "Architecture": "arm64",
+                    "Depends": "deepin-elf-verify (>= 0.0.16.7-1), com.deepin-wine6-stable.deepin(>=6.0deepin14), com.deepin-box86.deepin(>=0.2.3deepin8), p7zip-full, fonts-wqy-microhei, fonts-noto-cjk",
+                    "postinst": f"""#!/bin/sh
+DEB_PATH=/opt/apps/{e1_text.text()}
+NVIDIA_DISP_CARD=`lspci | grep VGA | grep NVIDIA`
+if [ -f $DEB_PATH/files/wined3d.dll.so ] && [ ! -z "$NVIDIA_DISP_CARD" ];then
+	mv $DEB_PATH/files/wined3d.dll.so $DEB_PATH/files/dlls
 fi
-'''.format(e5_text.text(), e2_text.text(), e7_text.text(), e1_text.text(), wine[wineVersion.currentText()]))
-            write_txt("{}/opt/apps/{}/info".format(debPackagePath, e1_text.text()), '{\n    "appid": "' + e1_text.text() + '",\n    "name": "' + e8_text.text() + '",\n    "version": "' + e2_text.text() + '",\n    "arch": ["i386"],\n    "permissions": {\n        "autostart": false,\n        "notification": false,\n        "trayicon": true,\n        "clipboard": true,\n        "account": false,\n        "bluetooth": false,\n        "camera": false,\n        "audio_record": false,\n        "installed_apps": false\n    }\n}')
+true
+""",
+                    "postrm": f"""#!/bin/sh
+
+BOTTLE="$HOME/.deepinwine/{e5_text.text()}"
+WINESERVER=/opt/deepin-wine6-stable/bin/wineserver
+
+if [ -d "$BOTTLE" ];then
+	WINEPREFIX=$BOTTLE $WINESERVER -k
+	rm $BOTTLE -rf
+fi
+
+true""",
+                    "run.sh": f"""#!/bin/bash
+DEB_PATH="/opt/apps/{e1_text.text()}"
+WINE="/opt/deepin-wine6-stable/bin/wine"
+WINESERVER="/opt/deepin-wine6-stable/bin/wineserver"
+BOX86="/opt/deepin-box86/box86"
+EXE="{e7_text.text()}"
+NEW_VERSION="{e2_text.text()}"
+BOTTLE="$HOME/.deepinwine/{e5_text.text()}"
+
+reconstruct_bottle_symlink() {{
+
+    if [ -L $BOTTLE/drive_c/users/$USER/Desktop ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Desktop
+        ln -s $HOME/Desktop $BOTTLE/drive_c/users/$USER/Desktop
+    fi
+    if [ -L $BOTTLE/drive_c/users/$USER/Documents ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Documents
+        ln -s $HOME/Documents $BOTTLE/drive_c/users/$USER/Documents
+    fi
+    if [ -L $BOTTLE/drive_c/users/$USER/Downloads ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Downloads
+        ln -s $HOME/Downloads $BOTTLE/drive_c/users/$USER/Downloads
+    fi
+
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Documents" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Documents"
+        ln -s $HOME/Documents "$BOTTLE/drive_c/users/$USER/My Documents"
+    fi
+
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Music" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Music"
+        ln -s $HOME/Music "$BOTTLE/drive_c/users/$USER/My Music"
+    fi
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Videos" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Videos"
+        ln -s $HOME/Videos "$BOTTLE/drive_c/users/$USER/My Videos"
+    fi
+}}
+
+if [ ! -d "$HOME/.deepinwine" ];then
+    mkdir -p "$HOME/.deepinwine"
+fi
+
+if [ -f $BOTTLE/VERSION ];then
+    old_version=""
+    while read line; do
+    old_version=$line
+    done < $BOTTLE/VERSION
+    if [ "$old_version" != "$NEW_VERSION" ];then
+	WINEPREFIX=$BOTTLE $BOX86 $WINESERVER -k
+        rm -rf $BOTTLE
+    fi
+fi
+
+if [ -d $BOTTLE ] && [ ! -f $BOTTLE/VERSION ];then
+	WINEPREFIX=$BOTTLE $BOX86 $WINESERVER -k
+	rm -rf $BOTTLE
+fi
+
+if [ ! -d $BOTTLE ];then
+    7z x "$DEB_PATH/files/files.7z" -o"$BOTTLE" -aoa
+    mv "$BOTTLE/drive_c/users/@current_user@" "$BOTTLE/drive_c/users/$USER"
+    sed -i "s#@current_user@#$USER#" $BOTTLE/*.reg
+    reconstruct_bottle_symlink
+    echo $NEW_VERSION > $BOTTLE/VERSION
+fi
+
+export WINEPREDLL=$DEB_PATH/files/dlls
+export ATTACH_FILE_DIALOG=1
+export WINEDLLPATH=/opt/deepin-wine6-stable/lib
+WINEPREFIX=$BOTTLE $BOX86 $WINE "$EXE" &""",
+                "info": f'''{{
+    "appid": "{e1_text.text()}",
+    "name": "{e8_text.text()}",
+    "version": "{e2_text.text()}",
+    "arch": ["arm64"],
+    "permissions": {{
+        "autostart": false,
+        "notification": false,
+        "trayicon": true,
+        "clipboard": true,
+        "account": false,
+        "bluetooth": false,
+        "camera": true,
+        "audio_record": true,
+        "installed_apps": false
+    }}
+}}'''
+                },
+                {
+                    # ARM64 exagear wine 打包配置文件
+                    "Wine": f"/opt/exagear/bin/ubt_x64a64_al --path-prefix {get_home()}/.deepinwine/debian-buster --utmp-paths-list {get_home()}/.deepinwine/debian-buster/.exagear/utmp-list --vpaths-list {get_home()}/.deepinwine/debian-buster/.exagear/vpaths-list --opaths-list {get_home()}/.deepinwine/debian-buster/.exagear/opaths-list --smo-mode fbase --smo-severity smart --fd-limit 8192 --foreign-ubt-binary /opt/exagear/bin/ubt_x32a64_al -- /opt/deepin-wine6-stable/bin/wine ",
+                    "Architecture": "arm64",
+                    "Depends": "zenity, com.deepin-wine6-stable.deepin(>=6.0deepin14), deepin-wine-exagear-images(>=10deepin4), com.deepin-box86.deepin(>=0.2.3deepin9), p7zip-full, fonts-wqy-microhei, fonts-noto-cjk",
+                    "postinst": "",
+                    "postrm": "",
+                    "run.sh": f"""#!/bin/bash
+DEB_PATH="/opt/apps/{e1_text.text()}"
+WINE="/opt/deepin-wine6-stable/bin/wine"
+WINESERVER="/opt/deepin-wine6-stable/bin/wineserver"
+EMU="/opt/exagear/bin/ubt_x64a64_al"
+IMAGE_PATH=$HOME/.deepinwine/debian-buster
+EMU_ARGS="--path-prefix $IMAGE_PATH --utmp-paths-list $IMAGE_PATH/.exagear/utmp-list --vpaths-list $IMAGE_PATH/.exagear/vpaths-list --opaths-list $IMAGE_PATH/.exagear/opaths-list --smo-mode fbase --smo-severity smart --fd-limit 8192 --foreign-ubt-binary /opt/exagear/bin/ubt_x32a64_al -- "
+EXE="{e7_text.text()}"
+NEW_VERSION="6.4.1deepin1"
+BOTTLE="$HOME/.deepinwine/{e5_text.text()}"
+KUNPENG=`lscpu | grep 'Model name' | grep Kunpeng`
+IMG_ARCHIVE_DIR=/opt/deepin-wine-exagear-images/debian-buster
+IMAGE_VER="{e2_text.text()}"
+LOCALTIME=`readlink -f /etc/localtime`
+
+export LC_ALL=$LANG
+export XMODIFIERS=$XMODIFIERS
+export DESKTOP_SESSION=deepin
+
+if command -v zenity >/dev/null 2>&1; then
+	progressbar()
+	{{
+		WINDOWID="" zenity --progress --title="$1" --text="$2" --pulsate --width=400 --auto-close --no-cancel ||
+		WINDOWID="" zenity --progress --title="$1" --text="$2" --pulsate --width=400 --auto-close
+	}}
+
+else
+	progressbar()
+	{{
+		cat -
+	}}
+fi
+
+reconstruct_bottle_symlink() {{
+
+    if [ -L $BOTTLE/drive_c/users/$USER/Desktop ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Desktop
+        ln -s $HOME/Desktop $BOTTLE/drive_c/users/$USER/Desktop
+    fi
+    if [ -L $BOTTLE/drive_c/users/$USER/Documents ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Documents
+        ln -s $HOME/Documents $BOTTLE/drive_c/users/$USER/Documents
+    fi
+    if [ -L $BOTTLE/drive_c/users/$USER/Downloads ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Downloads
+        ln -s $HOME/Downloads $BOTTLE/drive_c/users/$USER/Downloads
+    fi
+
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Documents" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Documents"
+        ln -s $HOME/Documents "$BOTTLE/drive_c/users/$USER/My Documents"
+    fi
+
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Music" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Music"
+        ln -s $HOME/Music "$BOTTLE/drive_c/users/$USER/My Music"
+    fi
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Videos" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Videos"
+        ln -s $HOME/Videos "$BOTTLE/drive_c/users/$USER/My Videos"
+    fi
+}}
+
+extract_image() {{
+
+    progpid=$(ps -ef | grep "zenity --progress --title=${{BOTTLE}}" | grep -v grep)
+    if [ -n "$progpid" ];then
+	    echo "one $BOTTLE app is extracting runtime images too."
+	    exit 0
+    fi
+
+    7z x "$IMG_ARCHIVE_DIR/files.7z" -o"$IMAGE_PATH" -aoa | progressbar "$BOTTLE" "正在释放环境..."
+    cp /usr/bin/dde-file-manager $IMAGE_PATH/usr/bin/dde-file-manager
+    rm $IMAGE_PATH/etc/localtime
+    ln -s $LOCALTIME $IMAGE_PATH/etc/localtime
+    if [ -d $IMAGE_PATH/etc/resolvconf ];then
+        rm $IMAGE_PATH/etc/resolvconf
+    fi
+    if [ -d /etc/resolvconf ];then
+    	cp /etc/resolvconf $IMAGE_PATH/etc/ -rf
+    fi
+    cp /etc/resolv.conf $IMAGE_PATH/etc/
+    cp /etc/hosts $IMAGE_PATH/etc/
+    echo $IMAGE_VER > $IMAGE_PATH/VERSION
+}}
+
+get_link_err_nums() {{
+
+	find  $IMAGE_PATH -type l ! -exec test -e {{}} \; -print | wc -l
+}}
+
+if [ ! -d "$HOME/.deepinwine" ];then
+    mkdir -p "$HOME/.deepinwine"
+fi
+
+if [ -f $BOTTLE/VERSION ];then
+    old_version=`cat $BOTTLE/VERSION`
+    if [ "$old_version" != "$NEW_VERSION" ];then
+        WINEPREFIX=$BOTTLE $EMU $EMU_ARGS $WINESERVER -k
+        rm -rf $BOTTLE
+    fi
+fi
+Update_D() {{
+    if [ -L "$BOTTLE/dosdevices/d:" ]; then
+        rm -f "$BOTTLE/dosdevices/d:"
+        ln -s $Downloads "$BOTTLE/dosdevices/d:"
+    fi
+  if [ -L "$BOTTLE/dosdevices/d:" ]; then
+        rm -f "$BOTTLE/dosdevices/d:"
+        ln -s $Downloads "$BOTTLE/dosdevices/d:"
+    fi
+}}
+if [ ! -d $BOTTLE ];then
+
+    7z x "$DEB_PATH/files/files.7z" -o"$BOTTLE" -aoa
+    mv "$BOTTLE/drive_c/users/@current_user@" "$BOTTLE/drive_c/users/$USER"
+    sed -i "s#@current_user@#$USER#" $BOTTLE/*.reg
+    reconstruct_bottle_symlink
+    echo $NEW_VERSION > $BOTTLE/VERSION
+fi
+
+if [ ! -z "$KUNPENG" ];then
+    if [ ! -e $IMAGE_PATH/VERSION ];then
+        extract_image
+    fi
+
+    OLD_IMAGE_VER=`cat $IMAGE_PATH/VERSION`
+    if [ "$OLD_IMAGE_VER" != "$IMAGE_VER" ];then
+        extract_image
+    fi
+
+    echo "======$(get_link_err_nums)===="
+    if [ "$(get_link_err_nums)" -gt "120" ];then
+        extract_image
+    fi
+fi
+
+## mount /data/ dir to geust
+if [ -d $IMAGE_PATH ] && [ ! -d $IMAGE_PATH/data ];then
+	mkdir $IMAGE_PATH/data
+	cp $DEB_PATH/files/exa/vpaths-list $IMAGE_PATH/.exagear
+fi
+
+export WINEPREDLL=$DEB_PATH/files/dlls
+export ATTACH_FILE_DIALOG=1
+export WINEDLLPATH=/opt/deepin-wine6-stable/lib
+WINEPREFIX=$BOTTLE $EMU $EMU_ARGS $WINE  $WINE wineboot --init
+ Update_D
+WINEPREFIX=$BOTTLE $EMU $EMU_ARGS $WINE "$EXE" --disable-gpu &""",
+                "info": f'''{{
+    "appid": "{e1_text.text()}",
+    "name": "{e8_text.text()}",
+    "version": "{e2_text.text()}",
+    "arch": ["arm64"],
+    "permissions": {{
+        "autostart": false,
+        "notification": false,
+        "trayicon": true,
+        "clipboard": true,
+        "account": false,
+        "bluetooth": false,
+        "camera": true,
+        "audio_record": true,
+        "installed_apps": false
+    }}
+}}'''}
+            ]
+            #############
+            # 删除文件
+            #############
+            self.label.emit("正在删除对构建 deb 包有影响的文件……")
+            debPackagePath = f"/tmp/{random.randint(0, 9999)}"
+            self.run_command(f"rm -rfv /tmp/{debPackagePath}")
+            ###############
+            # 创建目录
+            ###############
+            self.label.emit("正在创建目录……")
+            os.makedirs("{}/DEBIAN".format(debPackagePath))
+            os.makedirs("{}/opt/apps/{}/entries/applications".format(debPackagePath, e1_text.text()))
+            os.makedirs("{}/opt/apps/{}/entries/icons/hicolor/scalable/apps".format(debPackagePath, e1_text.text()))
+            os.makedirs("{}/opt/apps/{}/files".format(debPackagePath, e1_text.text()))
+            ###############
+            # 创建文件
+            ###############
+            self.label.emit("正在创建文件……")
+            os.mknod("{}/DEBIAN/control".format(debPackagePath))
+            os.mknod("{}/opt/apps/{}/entries/applications/{}.desktop".format(debPackagePath, e1_text.text(), e1_text.text()))
+            os.mknod("{}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()))
+            os.mknod("{}/opt/apps/{}/info".format(debPackagePath, e1_text.text()))
+            ###############
+            # 设置容器
+            ###############
+            self.label.emit("正在设置 wine 容器")
+            os.chdir(b)
+            self.run_command("sed -i \"s#$USER#@current_user@#\" ./*.reg")
+            os.chdir(f"{b}/drive_c/users")
+            self.run_command(f"mv -v '{os.getlogin()}' @current_user@")
+            os.chdir(programPath)
+            if cleanBottonByUOS.isChecked():
+                self.run_command(f"WINE='{debInformation[debArch.currentIndex()]['Wine']}' '{programPath}/cleanbottle.sh' '{b}'")
+            ###############
+            # 压缩容器
+            ###############
+            self.label.emit("正在打包 wine 容器")
+            self.run_command("7z a {}/opt/apps/{}/files/files.7z {}/*".format(debPackagePath, e1_text.text(), b))
+            ###############
+            # 复制图片
+            ###############
+            self.label.emit("正在复制文件……")
+            # arm64 box86 需要复制 dlls-arm 目录
+            if debArch.currentIndex() == 0:
+                if not os.path.exists(f"{programPath}/dlls"):
+                    self.run_command(f"7z x \"{programPath}/dlls.7z\" -o\"{programPath}\"")
+                    os.remove(f"{programPath}/dlls.7z")
+                self.run_command(f"cp -rv '{programPath}/dlls' {debPackagePath}/opt/apps/{e1_text.text()}/files/")
+            elif debArch.currentIndex() == 1:
+                if not os.path.exists(f"{programPath}/dlls-arm"):
+                    self.run_command(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\"")
+                    os.remove(f"{programPath}/dlls-arm.7z")
+                if not os.path.exists(f"{programPath}/wined3d.dll.so"):
+                    self.run_command(f"7z x \"{programPath}/wined3d.dll.so.7z\" -o\"{programPath}\"")
+                    os.remove(f"{programPath}/wined3d.dll.so.7z")
+                self.run_command(f"cp -rv '{programPath}/dlls-arm' {debPackagePath}/opt/apps/{e1_text.text()}/files/dlls")
+                self.run_command(f"cp -rv '{programPath}/wined3d.dll.so' {debPackagePath}/opt/apps/{e1_text.text()}/files/")
+            elif debArch.currentIndex() == 2:
+                if not os.path.exists(f"{programPath}/exagear"):
+                    self.run_command(f"aria2c -x 16 -s 16 -d \"{programPath}\" -o \"exagear.7z\" https://gitlink.org.cn/api/attachments/392441")
+                    self.run_command(f"7z x \"{programPath}/exagear.7z\" -o\"{programPath}\"")
+                    os.remove(f"{programPath}/exagear.7z")
+                self.run_command(f"cp -rv '{programPath}/exagear/*' {debPackagePath}/opt/apps/{e1_text.text()}/files/")
+            if e9_text.text() != "":
+                shutil.copy(e9_text.text(), "{}/opt/apps/{}/entries/icons/hicolor/scalable/apps/{}.{}".format(debPackagePath, e1_text.text(), e1_text.text(), imms))
+            ################
+            # 获取文件大小
+            ################
+            self.label.emit("正在计算文件大小……")
+            size = getFileFolderSize(debPackagePath) / 1024
+            ################
+            # 写入文本文档
+            ################
+            self.label.emit("正在写入文件……")
+            
+            write_txt(f"{debPackagePath}/DEBIAN/control", f'''Package: {e1_text.text()}
+Version: {e2_text.text()}
+Architecture: {debInformation[debArch.currentIndex()]["Architecture"]}
+Maintainer: {e4_text.text()}
+Depends: {debInformation[debArch.currentIndex()]["Depends"]}
+Section: non-free/otherosfs
+Priority: optional
+Multi-Arch: foreign
+Description: {e3_text.text()}
+''')
+            if debInformation[debArch.currentIndex()]["postinst"] != "":
+                write_txt(f"{debPackagePath}/DEBIAN/postinst", debInformation[debArch.currentIndex()]["postinst"])
+            if debInformation[debArch.currentIndex()]["postrm"] != "":
+                write_txt(f"{debPackagePath}/DEBIAN/postrm", debInformation[debArch.currentIndex()]["postrm"])
+            write_txt("{}/opt/apps/{}/entries/applications/{}.desktop".format(debPackagePath, e1_text.text(), e1_text.text()), '#!/usr/bin/env xdg-open\n[Desktop Entry]\nEncoding=UTF-8\nType=Application\nX-Created-By={}\nCategories={};\nIcon={}\nExec="/opt/apps/{}/files/run.sh" {}\nName={}\nComment={}\nMimeType={}\nGenericName={}\nTerminal=false\nStartupNotify=false\n'.format(e4_text.text(), option1_text.currentText(), a, e1_text.text(), e15_text.text(), e8_text.text(), e3_text.text(), e10_text.text(), e1_text.text()))
+            write_txt(f"{debPackagePath}/opt/apps/{e1_text.text()}/files/run.sh", debInformation[debArch.currentIndex()]["run.sh"])
+            write_txt("{}/opt/apps/{}/info".format(debPackagePath, e1_text.text()), debInformation[debArch.currentIndex()]["info"])
             ################
             # 修改文件权限
             ################
             self.label.emit("正在修改文件权限……")
             self.run_command("chmod -Rv 644 {}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()))
             self.run_command("chmod -Rv 644 {}/opt/apps/{}/info".format(debPackagePath, e1_text.text()))
+            self.run_command("chmod -Rv 0755 {}/DEBIAN".format(debPackagePath))
             self.run_command("chmod -Rv 755 {}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()))
             self.run_command("chmod -Rv 755 {}/opt/apps/{}/entries/applications/{}.desktop".format(debPackagePath, e1_text.text(), e1_text.text()))
             ################
@@ -482,6 +813,18 @@ def readtxt(path):
 def get_home():
     return os.path.expanduser('~')
 
+def ChangeArchCombobox():
+    global chooseWineHelperValue
+    option = True
+    if debArch.currentIndex() != 0:
+        option = False
+    chooseWineHelperValue.setEnabled(option)
+    wineVersion.setEnabled(option)
+    
+    #chooseWineHelperValue.setEnabled(option)
+    rmBash.setEnabled(option)
+
+
 ###############
 # 程序信息
 ###############
@@ -530,7 +873,13 @@ button1 = QtWidgets.QPushButton("浏览……")
 button2 = QtWidgets.QPushButton("浏览……")
 button4 = QtWidgets.QPushButton("浏览……")
 button5 = QtWidgets.QPushButton("打包……")
+debOption = QtWidgets.QHBoxLayout()
 rmBash = QtWidgets.QCheckBox("设置卸载该 deb 后自动删除该容器")
+cleanBottonByUOS = QtWidgets.QCheckBox("使用统信 Wine 生态适配活动容器清理脚本")
+debOption.addWidget(rmBash)
+debOption.addWidget(cleanBottonByUOS)
+debArch = QtWidgets.QComboBox()
+debArch.addItems(["i386", "arm64(box86)", "arm64(exagear)"])
 textbox1 = QtWidgets.QTextBrowser()
 option1_text.addItems(["Network", "Chat", "Audio", "Video", "Graphics", "Office", "Translation", "Development", "Utility"])
 option1_text.setCurrentText("Network")
@@ -541,6 +890,7 @@ button2.clicked.connect(button2_cl)
 button4.clicked.connect(button4_cl)
 button5.clicked.connect(make_deb)
 wineFrame.addWidget(wineVersion)
+debArch.currentIndexChanged.connect(ChangeArchCombobox)
 wineFrame.addWidget(chooseWineHelperValue)
 # 创建控件
 widgetLayout.addWidget(QtWidgets.QLabel("要打包的 deb 包的包名(※必填):"), 0, 0, 1, 1)
@@ -557,7 +907,8 @@ widgetLayout.addWidget(QtWidgets.QLabel("要显示的 .desktop 文件的图标
 widgetLayout.addWidget(QtWidgets.QLabel("要显示的 .desktop 文件的 MimeType 内容(选填):"), 11, 0, 1, 1)
 widgetLayout.addWidget(QtWidgets.QLabel("选择打包的 wine 版本(※必选):"), 12, 0, 1, 1)
 widgetLayout.addWidget(QtWidgets.QLabel("打包 deb 的保存路径(※必填):"), 13, 0, 1, 1)
-widgetLayout.addWidget(QtWidgets.QLabel("自动删除选项(选填):"), 14, 0, 1, 1)
+widgetLayout.addWidget(QtWidgets.QLabel("deb 包选项(选填):"), 14, 0, 1, 1)
+widgetLayout.addWidget(QtWidgets.QLabel("打包 deb 架构(※必选):"), 15, 0, 1, 1)
 widgetLayout.addWidget(e1_text, 0, 1, 1, 1)
 widgetLayout.addWidget(e2_text, 1, 1, 1, 1)
 widgetLayout.addWidget(e3_text, 2, 1, 1, 1)
@@ -575,10 +926,11 @@ widgetLayout.addWidget(e10_text, 11, 1, 1, 1)
 widgetLayout.addLayout(wineFrame, 12, 1, 1, 1)
 widgetLayout.addWidget(e12_text, 13, 1, 1, 1)
 widgetLayout.addWidget(button4, 13, 2, 1, 1)
-widgetLayout.addWidget(rmBash, 14, 1, 1, 1)
-widgetLayout.addWidget(button5, 15, 1, 1, 1)
-widgetLayout.addWidget(label13_text, 16, 0, 1, 3)
-widgetLayout.addWidget(textbox1, 17, 0, 1, 3)
+widgetLayout.addLayout(debOption, 14, 1, 1, 1)
+widgetLayout.addWidget(debArch, 15, 1, 1, 1)
+widgetLayout.addWidget(button5, 16, 1, 1, 1)
+widgetLayout.addWidget(label13_text, 17, 0, 1, 3)
+widgetLayout.addWidget(textbox1, 18, 0, 1, 3)
 menu = window.menuBar()
 programmenu = menu.addMenu("程序")
 help = menu.addMenu("帮助")
diff --git a/deb/opt/apps/deepin-wine-runner/deepin-wine-runner b/deb/opt/apps/deepin-wine-runner/deepin-wine-runner
index 9a4518c..819198c 100755
--- a/deb/opt/apps/deepin-wine-runner/deepin-wine-runner
+++ b/deb/opt/apps/deepin-wine-runner/deepin-wine-runner
@@ -85,7 +85,7 @@ run = None
 def runexebutton(self):
     global run
     DisableButton(True)
-    if not CheckProgramIsInstall(wine[o1.currentText()]) and o1.currentText() != "基于 linglong 的 deepin-wine6-stable(不推荐)" and o1.currentText() != "基于 exagear 的 deepin-wine6-stable" and o1.currentText() != "基于 box86 的 deepin-wine6-stable":
+    if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
         if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 运行?") == QtWidgets.QMessageBox.No:
             DisableButton(False)
             return
@@ -148,6 +148,14 @@ class Runexebutton_threading(QtCore.QThread):
         wineUsingOption = ""
         if o1.currentText() == "基于 exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 box86 的 deepin-wine6-stable":
             wineUsingOption = "--disable-gpu"
+        if o1.currentText() == "基于 exagear 的 deepin-wine6-stable":
+            os.system(f"'{programPath}/deepin-wine-runner-create-botton.py' '{wineBottonPath}'")
+        if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+            if not os.path.exists(f"{programPath}/dlls-arm"):
+                if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                    QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                    return
+                os.remove(f"{programPath}/dlls-arm.7z")
         if setting["TerminalOpen"]:
             res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + e2.currentText() + "' " + setting["WineOption"] + "\" --keep-open" + wineUsingOption], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
         else:
@@ -160,7 +168,7 @@ class Runexebutton_threading(QtCore.QThread):
             except:
                 text = ""
             self.signal.emit(text)
-            print(text)
+            print(text, end="")
         if len(findExeHistory) == 0 or findExeHistory[-1] != wineBottonPath:
             findExeHistory.append(wineBottonPath)  # 将记录写进数组
             write_txt(get_home() + "/.config/deepin-wine-runner/FindExeHistory.json", str(json.dumps(ListToDictionary(findExeHistory))))  # 将历史记录的数组转换为字典并写入
@@ -208,7 +216,7 @@ def make_desktop_on_launcher():
         if combobox1.currentText() == "" or e2.currentText() == "":  # 判断文本框是否有内容
             QtWidgets.QMessageBox.information(widget, "提示", "没有填写需要使用 exe 应用或保存的文件名")
             return
-        if not CheckProgramIsInstall(wine[o1.currentText()]):
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
             if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 写入?") == QtWidgets.QMessageBox.No:
                 DisableButton(False)
                 return
@@ -229,6 +237,12 @@ def make_desktop_on_launcher():
             if not setting["Debug"]:
                 option += "WINEDEBUG=-all "
             wineUsingOption = ""
+            if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+                if not os.path.exists(f"{programPath}/dlls-arm"):
+                    if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                        QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                        return
+                    os.remove(f"{programPath}/dlls-arm.7z")
             if o1.currentText() == "基于 exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 box86 的 deepin-wine6-stable":
                 wineUsingOption = "--disable-gpu"
             write_txt(get_home() + "/.local/share/applications/" + combobox1.currentText() + ".desktop", f'''[Desktop Entry]
@@ -254,7 +268,7 @@ def make_desktop_on_desktop():
         if combobox1.currentText() == "" or e2.currentText() == "":  # 判断文本框是否有内容
             QtWidgets.QMessageBox.information(widget, "提示", "没有填写需要使用 exe 应用或保存的文件名")
             return
-        if not CheckProgramIsInstall(wine[o1.currentText()]):
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
             if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 写入?") == QtWidgets.QMessageBox.No:
                 DisableButton(False)
                 return
@@ -272,6 +286,12 @@ def make_desktop_on_desktop():
             wineUsingOption = ""
             if o1.currentText() == "基于 exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 box86 的 deepin-wine6-stable":
                 wineUsingOption = "--disable-gpu"
+            if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+                if not os.path.exists(f"{programPath}/dlls-arm"):
+                    if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                        QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                        return
+                    os.remove(f"{programPath}/dlls-arm.7z")
             if not os.path.exists(get_desktop_path()):
                 os.makedirs(get_home())
             os.mknod(get_desktop_path() + "/" + combobox1.currentText() + ".desktop")
@@ -336,6 +356,9 @@ def InstallWine():
 def InstallWineOnDeepin23():
     threading.Thread(target=os.system, args=[f"'{programPath}/launch.sh' deepin-terminal -e \"{programPath}/InstallWineOnDeepin23.py\""]).start()
 
+def InstallWineHQ():
+    threading.Thread(target=os.system, args=[f"'{programPath}/launch.sh' deepin-terminal -e \"{programPath}/InstallNewWineHQ.sh\""]).start()
+
 def OpenWineBotton():
     if e1.currentText() == "":
         wineBottonPath = setting["DefultBotton"]
@@ -373,10 +396,18 @@ class RunWineProgramThread(QtCore.QThread):
         if not setting["Debug"]:
             option += "WINEDEBUG=-all "
         wineUsingOption = ""
+        if o1.currentText() == "基于 exagear 的 deepin-wine6-stable":
+            os.system(f"'{programPath}/deepin-wine-runner-create-botton.py' '{wineBottonPath}'")
         if o1.currentText() == "基于 exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 box86 的 deepin-wine6-stable":
             wineUsingOption = "--disable-gpu"
+        if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+            if not os.path.exists(f"{programPath}/dlls-arm"):
+                if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                    QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                    return
+                os.remove(f"{programPath}/dlls-arm.7z")
         if setting["TerminalOpen"]:
-            res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + self.wineProgram + "' " + setting["WineOption"] + "\" --keep-open"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+            res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + self.wineProgram + "' " + setting["WineOption"] + " " + wineUsingOption + "\" --keep-open"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
         else:
             res = subprocess.Popen(["WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + self.wineProgram + "' " + setting["WineOption"]], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
         # 实时读取程序返回
@@ -386,7 +417,7 @@ class RunWineProgramThread(QtCore.QThread):
             except:
                 text = ""
             self.signal.emit(text)
-            print(text)
+            print(text, end="")
         if self.history:
             if len(findExeHistory) == 0 or findExeHistory[-1] != wineBottonPath:
                 findExeHistory.append(wineBottonPath)  # 将记录写进数组
@@ -404,7 +435,7 @@ def RunWineProgram(wineProgram, history = False, Disbled = True):
     global runProgram
     DisableButton(True)
     if not CheckProgramIsInstall(wine[o1.currentText()]) and o1.currentText() != "基于 linglong 的 deepin-wine6-stable(不推荐)" and o1.currentText() != "基于 exagear 的 deepin-wine6-stable" and o1.currentText() != "基于 box86 的 deepin-wine6-stable":
-        if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 运行?") == QtWidgets.QMessageBox.No:
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
             DisableButton(False)
             return
     returnText.setText("")
@@ -427,8 +458,17 @@ class RunWinetricksThread(QtCore.QThread):
             option += f"WINEARCH={setting['Architecture']} "
         if not setting["Debug"]:
             option += "WINEDEBUG=-all "
+        wineUsingOption = ""
+        if o1.currentText() == "基于 exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+            wineUsingOption = "--disable-gpu"
+        if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+            if not os.path.exists(f"{programPath}/dlls-arm"):
+                if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                    QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                    return
+                os.remove(f"{programPath}/dlls-arm.7z")
         if setting["TerminalOpen"]:
-            res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='{wineBottonPath}' {option} WINE=" + subprocess.getoutput(f"which {wine[o1.currentText()]}").replace(" ", "").replace("\n", "") + " winetricks --gui\" --keep-open"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+            res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='{wineBottonPath}' {option} WINE=" + subprocess.getoutput(f"which {wine[o1.currentText()]}").replace(" ", "").replace("\n", "") + f" winetricks --gui {wineUsingOption}\" --keep-open"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
         else:    
             res = subprocess.Popen([f"WINEPREFIX='{wineBottonPath}' {option} WINE='" + subprocess.getoutput(f"which {wine[o1.currentText()]}").replace(" ", "").replace("\n", "") + "' winetricks --gui"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
         # 实时读取程序返回
@@ -445,21 +485,34 @@ runWinetricks = None
 def RunWinetricks():
     global runWinetricks
     DisableButton(True)
-    if not CheckProgramIsInstall(wine[o1.currentText()]):
-        if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 运行?") == QtWidgets.QMessageBox.No:
+    if not CheckProgramIsInstall(wine[o1.currentText()]) and o1.currentText() != "基于 linglong 的 deepin-wine6-stable(不推荐)" and o1.currentText() != "基于 exagear 的 deepin-wine6-stable" and o1.currentText() != "基于 box86 的 deepin-wine6-stable":
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
             DisableButton(False)
             return
+    if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+        if not os.path.exists(f"{programPath}/dlls-arm"):
+            if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                return
+            os.remove(f"{programPath}/dlls-arm.7z")
     returnText.setText("")
     runWinetricks = RunWinetricksThread()
     runWinetricks.signal.connect(QT.ShowWineReturn)
     runWinetricks.start()
-    
+
+def CleanWineBottonByUOS():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    os.system(f"'{programPath}/launch.sh' deepin-terminal -C \"WINE='{wine[o1.currentText()]}' '{programPath}/cleanbottle.sh' '{wineBottonPath}'; echo 按回车退出; read; read; exit;\"")
+
 def FontAppStore():
     if e1.currentText() == "":
         wineBottonPath = setting["DefultBotton"]
     else:
         wineBottonPath = e1.currentText()
-    os.system(f"'{programPath}/launch.sh' deepin-terminal -e '{programPath}/InstallFont.py' '{wineBottonPath}' {int(setting['RuntimeCache'])}")
+    os.system(f"WINE='{programPath}/launch.sh' deepin-terminal -e '{programPath}/InstallFont.py' '{wineBottonPath}' {int(setting['RuntimeCache'])}")
 
 def InstallMonoGecko(program):
     if e1.currentText() == "":
@@ -490,6 +543,11 @@ def InstallMSXML():
     os.system(f"'{programPath}/launch.sh' deepin-terminal -e '{programPath}/InstallMsxml.py' '{wineBottonPath}' '{wine[o1.currentText()]}' {int(setting['RuntimeCache'])}")
 
 def InstallDXVK():
+    if not os.path.exists(f"{programPath}/dxvk"):
+        if os.system(f"7z x \"{programPath}/dxvk.7z\" -o\"{programPath}\""):
+            QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+            return
+        os.remove(f"{programPath}/dxvk.7z")
     if e1.currentText() == "":
         wineBottonPath = setting["DefultBotton"]
     else:
@@ -500,6 +558,11 @@ def InstallDXVK():
             f"{programPath}/dxvk/setup_dxvk.sh", "install"])
 
 def UninstallDXVK():
+    if not os.path.exists(f"{programPath}/dxvk"):
+        if os.system(f"7z x \"{programPath}/dxvk.7z\" -o\"{programPath}\""):
+            QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+            return
+        os.remove(f"{programPath}/dxvk.7z")
     if e1.currentText() == "":
         wineBottonPath = setting["DefultBotton"]
     else:
@@ -610,6 +673,9 @@ def UOSPackageScript():
 def RunVM():
     threading.Thread(target=os.system, args=[f"bash '{programPath}/RunVM.sh'"]).start()
 
+def CleanProgram():
+    os.system(f"'{programPath}/launch.sh' deepin-terminal -e \"{programPath}/clean-unuse-program.py\"")
+
 class UpdateWindow():
     data = {}
     update = None
@@ -1004,10 +1070,28 @@ if not os.path.exists(get_home() + "/.config/deepin-wine-runner/WineSetting.json
 ###########################
 # 设置变量
 ###########################
+programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
 # 如果要添加其他 wine,请在字典添加其名称和执行路径
 try:
-    wine = {"deepin-wine": "deepin-wine", "deepin-wine5": "deepin-wine5", "wine": "wine", "wine64": "wine64", "deepin-wine5 stable": "deepin-wine5-stable", "deepin-wine6 stable": "deepin-wine6-stable", "spark-wine7-devel": "spark-wine7-devel", "ukylin-wine": "ukylin-wine"}
+    wine = {
+        "基于 box86 的 deepin-wine6-stable": f"WINEPREDLL='{programPath}/dlls-arm' WINEDLLPATH=/opt/deepin-wine6-stable/lib BOX86_NOSIGSEGV=1 /opt/deepin-box86/box86 /opt/deepin-wine6-stable/bin/wine ",
+        "基于 exagear 的 deepin-wine6-stable": f"/opt/exagear/bin/ubt_x64a64_al --path-prefix {get_home()}/.deepinwine/debian-buster --utmp-paths-list {get_home()}/.deepinwine/debian-buster/.exagear/utmp-list --vpaths-list {get_home()}/.deepinwine/debian-buster/.exagear/vpaths-list --opaths-list {get_home()}/.deepinwine/debian-buster/.exagear/opaths-list --smo-mode fbase --smo-severity smart --fd-limit 8192 --foreign-ubt-binary /opt/exagear/bin/ubt_x32a64_al -- /opt/deepin-wine6-stable/bin/wine ",
+        "deepin-wine6 stable": "deepin-wine6-stable", 
+        "deepin-wine5 stable": "deepin-wine5-stable", 
+        "spark-wine7-devel": "spark-wine7-devel", 
+        "deepin-wine": "deepin-wine", 
+        "deepin-wine5": "deepin-wine5", 
+        "wine": "wine", 
+        "wine64": "wine64", 
+        "ukylin-wine": "ukylin-wine",
+        "基于 linglong 的 deepin-wine6-stable(不推荐)": f"ll-cli run '' --exec '/bin/deepin-wine6-stable'"
+    }
+    untipsWine = ["基于 box86 的 deepin-wine6-stable", "基于 exagear 的 deepin-wine6-stable", "基于 linglong 的 deepin-wine6-stable(不推荐)"]
     canUseWine = []
+    if os.path.exists("/opt/deepin-box86/box86"):
+        canUseWine.append("基于 box86 的 deepin-wine6-stable")
+    if os.path.exists("/opt/exagear/bin/ubt_x64a64_al"):
+        canUseWine.append("基于 exagear 的 deepin-wine6-stable")
     for i in wine.keys():
         if not os.system(f"which '{wine[i]}'"):
             canUseWine.append(i)
@@ -1022,12 +1106,6 @@ try:
                     break
             except:
                 pass
-    if os.path.exists("/opt/deepin-box86/box86"):
-        wine["基于 box86 的 deepin-wine6-stable"] = f"BOX86_NOSIGSEGV=1 /opt/deepin-box86/box86 /opt/deepin-wine6-stable/bin/wine "
-        canUseWine.append("基于 box86 的 deepin-wine6-stable")
-    if os.path.exists("/opt/exagear/bin/ubt_x64a64_al"):
-        wine["基于 exagear 的 deepin-wine6-stable"] = f"/opt/exagear/bin/ubt_x64a64_al --path-prefix {get_home()}/.deepinwine/debian-buster --utmp-paths-list {get_home()}/.deepinwine/debian-buster/.exagear/utmp-list --vpaths-list {get_home()}/.deepinwine/debian-buster/.exagear/vpaths-list --opaths-list {get_home()}/.deepinwine/debian-buster/.exagear/opaths-list --smo-mode fbase --smo-severity smart --fd-limit 8192 --foreign-ubt-binary /opt/exagear/bin/ubt_x32a64_al -- /opt/deepin-wine6-stable/bin/wine "
-        canUseWine.append("基于 exagear 的 deepin-wine6-stable")
     shellHistory = list(json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/ShellHistory.json")).values())
     findExeHistory = list(json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/FindExeHistory.json")).values())
     wineBottonHistory = list(json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/WineBottonHistory.json")).values())
@@ -1050,7 +1128,6 @@ except:
 ###########################
 # 程序信息
 ###########################
-programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
 iconPath = "{}/deepin-wine-runner.svg".format(programPath)
 programUrl = "https://gitee.com/gfdgd-xi/deep-wine-runner\nhttps://github.com/gfdgd-xi/deep-wine-runner\nhttps://www.gitlink.org.cn/gfdgd_xi/deep-wine-runner"
 information = json.loads(readtxt(f"{programPath}/information.json"))
@@ -1065,26 +1142,30 @@ tips = '''<h4>提示:</h4>
 exe路径\' 参数 \'
 即可(单引号需要输入)
 5、wine 容器如果没有指定,则会默认为 ~/.wine
-6、在使用 linglong 包的 Wine 应用时,必须安装至少一个 linglong 的使用 Wine 软件包才会出现该选项,
+6、对于非 X86 的用户来说,请不要使用本程序自带的 Wine 安装程序和 Windows 虚拟机安装功能(检测到为非 X86 架构会自动禁用)
+7、在使用 linglong 包的 Wine 应用时,必须安装至少一个 linglong 的使用 Wine 软件包才会出现该选项,
 而程序识别到的 Wine 是按 linglong 的使用 Wine 软件包名的字母排序第一个的 Wine,且生成的容器不在用户目录下,而是在容器的用户目录下(~/.deepinwine、/tmp、桌面、下载、文档等被映射的目录除外),
 同理需要运行的 EXE 也必须在被映射的目录内
-7、如果是使用 Deepin 23 的 Wine 安装脚本,请切记——安装过程会临时添加 Deepin 20 的 apt 源,不要中断安装以及
+8、如果是使用 Deepin 23 的 Wine 安装脚本,请切记——安装过程会临时添加 Deepin 20 的 apt 源,不要中断安装以及
 <b>千万不要中断后不删除源的情况下 apt upgrade !!!</b>中断后只需重新打开脚本输入 repair 或者随意安装一个 Wine(会自动执行恢复操作)即可
 以及此脚本安装的 Wine 无法保证 100% 能使用,以及副作用是会提示
 <code>N: 鉴于仓库 'https://community-packages.deepin.com/beige beige InRelease' 不支持 'i386' 体系结构,跳过配置文件 'main/binary-i386/Packages' 的获取。</code>'''
-updateThingsString = '''※1、修复了重复路径一直自动重复增加的问题
+updateThingsString = '''<b>※1、修复了重复路径一直自动重复增加的问题
 ※2、修复了两个打包器打包错误的问题(非基于生态活动脚本的为 wine 导入错误,基于生态活动脚本的为架构有误导致打包出的 deb 无法打包)
-※3、适配了部分非 i386、amd64 架构计算机的 UOS 系统使用的 wine
+※3、适配了部分非 i386、amd64 架构计算机的 UOS 系统使用的 wine 并支持打包非 i386、amd64 架构计算机的 UOS 系统使用的 wine 程序 deb 包
 ※4、支持安装 dxvk(遵守 Zlib 开源协议)
-5、支持不显示没有安装的 Wine,方便用户识别
-6、增加字体商店
+※5、运行器、打包器(包括非基于生态适配活动脚本制作的)支持使用 Wine 生态适配活动的容器清理脚本</b>
+6、支持不显示没有安装的 Wine,方便用户识别
+7、增加字体商店
+8、修改了 Wine 的顺序使其更加合理
 '''
 for i in information["Thank"]:
     thankText += f"{i}\n"
-updateTime = "2022年08月05日"
+updateTime = "2022年08月11日"
 about = f'''<h1>关于</h1>
 <p>一个能让Linux用户更加方便运行Windows应用的程序,内置了对wine图形话的支持和各种Wine工具和自制Wine程序打包器、运行库安装工具等等</p>
 <p>同时也内置了基于VirtualBox制作的小白Windows虚拟机安装工具,可以做到只需要用户下载系统镜像并点击安装即可,无需顾及虚拟机安装、创建、虚拟机的分区等等</p>
+<p>本程序依照 GPLV3 协议开源</p>
 <pre>
 
 一个图形化了如下命令的程序(最简单格式)
@@ -1261,24 +1342,30 @@ menu = window.menuBar()
 programmenu = menu.addMenu("程序(&P)")
 p1 = QtWidgets.QAction("安装 wine(&I)")
 installWineOnDeepin23 = QtWidgets.QAction("安装 wine(只限Deepin23)")
+installWineHQ = QtWidgets.QAction("安装 WineHQ")
 p2 = QtWidgets.QAction("设置程序(&S)")
 p3 = QtWidgets.QAction("清空软件历史记录(&C)")
 cleanCache = QtWidgets.QAction("清空软件缓存")
+cleanProgramUnuse = QtWidgets.QAction("删除程序组件")
 p4 = QtWidgets.QAction("退出程序(&E)")
 programmenu.addAction(p1)
 programmenu.addAction(installWineOnDeepin23)
+programmenu.addAction(installWineHQ)
 programmenu.addSeparator()
 programmenu.addAction(p2)
 programmenu.addSeparator()
 programmenu.addAction(p3)
 programmenu.addAction(cleanCache)
+programmenu.addAction(cleanProgramUnuse)
 programmenu.addSeparator()
 programmenu.addAction(p4)
 p1.triggered.connect(InstallWine)
 installWineOnDeepin23.triggered.connect(InstallWineOnDeepin23)
+installWineHQ.triggered.connect(InstallWineHQ)
 p2.triggered.connect(ProgramSetting.ShowWindow)
 p3.triggered.connect(CleanProgramHistory)
 cleanCache.triggered.connect(CleanProgramCache)
+cleanProgramUnuse.triggered.connect(CleanProgram)
 p4.triggered.connect(window.close)
 
 wineOption = menu.addMenu("Wine(&W)")
@@ -1286,6 +1373,7 @@ w1 = QtWidgets.QAction("打开 Wine 容器目录")
 w2 = QtWidgets.QAction("安装常见字体")
 w3 = QtWidgets.QAction("安装自定义字体")
 w4 = QtWidgets.QAction("删除选择的 Wine 容器")
+cleanBottonUOS = QtWidgets.QAction("清理 Wine 容器(基于 Wine 适配活动脚本)")
 w5 = QtWidgets.QAction("打包 wine 应用")
 w6 = QtWidgets.QAction("使用官方 Wine 适配活动的脚本进行打包")
 w7 = QtWidgets.QAction("从镜像获取DLL(只支持Windows XP、Windows Server 2003官方安装镜像)")
@@ -1294,6 +1382,7 @@ wineOption.addAction(w1)
 wineOption.addAction(w2)
 wineOption.addAction(w3)
 wineOption.addAction(w4)
+wineOption.addAction(cleanBottonUOS)
 wineOption.addSeparator()
 wineOption.addAction(w5)
 wineOption.addAction(w6)
@@ -1358,6 +1447,7 @@ w1.triggered.connect(OpenWineBotton)
 w2.triggered.connect(InstallWineFont)
 w3.triggered.connect(OpenWineFontPath)
 w4.triggered.connect(DeleteWineBotton)
+cleanBottonUOS.triggered.connect(CleanWineBottonByUOS)
 w5.triggered.connect(BuildExeDeb)
 w6.triggered.connect(UOSPackageScript)
 w7.triggered.connect(GetDllFromWindowsISO.ShowWindow)
@@ -1451,6 +1541,24 @@ if setting["AutoWine"]:
     o1.addItems(canUseWine)
 else:
     o1.addItems(wine.keys())
+# 禁用被精简掉的控件
+for i in [
+    [[p1, installWineOnDeepin23, installWineHQ], f"{programPath}/InstallWineOnDeepin23.py"],
+    [[w5], f"{programPath}/deepin-wine-packager.py"],
+    [[w6], f"{programPath}/deepin-wine-packager-with-script.py"],
+    [[p1, v1], f"{programPath}/RunVM.sh"]
+]:
+    if not os.path.exists(i[1]):
+        for x in i[0]:
+            x.setDisabled(True)
+# 有些功能是非 X86 不适用的,需要屏蔽
+if subprocess.getoutput("arch").lower() != "x86_64":
+    p1.setDisabled(True)
+    installWineOnDeepin23.setDisabled(True)
+    virtualMachine.setDisabled(True)
+    v1.setDisabled(True)
+    installWineHQ.setDisabled(True)
+    pass
 o1.setCurrentText(setting["DefultWine"])
 e1.setEditText(setting["DefultBotton"])
 e2.setEditText("")
diff --git a/deb/opt/apps/deepin-wine-runner/deepin.list b/deb/opt/apps/deepin-wine-runner/deepin.list
new file mode 100644
index 0000000..624cada
--- /dev/null
+++ b/deb/opt/apps/deepin-wine-runner/deepin.list
@@ -0,0 +1,4 @@
+## Generated by deepin-installer
+deb https://community-packages.deepin.com/deepin/ apricot main contrib non-free
+# Written by deepin-home-appstore-client
+deb https://com-store-packages.uniontech.com/appstore deepin appstore
diff --git a/deb/opt/apps/deepin-wine-runner/dlls-arm.7z b/deb/opt/apps/deepin-wine-runner/dlls-arm.7z
new file mode 100644
index 0000000..55d907a
Binary files /dev/null and b/deb/opt/apps/deepin-wine-runner/dlls-arm.7z differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls.7z b/deb/opt/apps/deepin-wine-runner/dlls.7z
new file mode 100644
index 0000000..b6975e1
Binary files /dev/null and b/deb/opt/apps/deepin-wine-runner/dlls.7z differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls/gdi32.dll.so b/deb/opt/apps/deepin-wine-runner/dlls/gdi32.dll.so
deleted file mode 100755
index a982738..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dlls/gdi32.dll.so and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls/gdi32.so b/deb/opt/apps/deepin-wine-runner/dlls/gdi32.so
deleted file mode 100755
index 5585f0d..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dlls/gdi32.so and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls/kernel32.dll.so b/deb/opt/apps/deepin-wine-runner/dlls/kernel32.dll.so
deleted file mode 100755
index 41e815f..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dlls/kernel32.dll.so and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls/kernelbase.dll.so b/deb/opt/apps/deepin-wine-runner/dlls/kernelbase.dll.so
deleted file mode 100755
index 83187d8..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dlls/kernelbase.dll.so and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls/sechost.dll.so b/deb/opt/apps/deepin-wine-runner/dlls/sechost.dll.so
deleted file mode 100755
index d98efad..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dlls/sechost.dll.so and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls/shell32.dll.so b/deb/opt/apps/deepin-wine-runner/dlls/shell32.dll.so
deleted file mode 100755
index 7761c91..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dlls/shell32.dll.so and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls/user32.dll.so b/deb/opt/apps/deepin-wine-runner/dlls/user32.dll.so
deleted file mode 100755
index 3e7f393..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dlls/user32.dll.so and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls/user32.so b/deb/opt/apps/deepin-wine-runner/dlls/user32.so
deleted file mode 100755
index f548270..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dlls/user32.so and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls/winebrowser.exe.so b/deb/opt/apps/deepin-wine-runner/dlls/winebrowser.exe.so
deleted file mode 100755
index 3520019..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dlls/winebrowser.exe.so and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls/winex11.drv.so b/deb/opt/apps/deepin-wine-runner/dlls/winex11.drv.so
deleted file mode 100755
index 892d829..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dlls/winex11.drv.so and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dlls/ws2_32.dll.so b/deb/opt/apps/deepin-wine-runner/dlls/ws2_32.dll.so
deleted file mode 100755
index e00c709..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dlls/ws2_32.dll.so and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk.7z b/deb/opt/apps/deepin-wine-runner/dxvk.7z
new file mode 100644
index 0000000..8c022ed
Binary files /dev/null and b/deb/opt/apps/deepin-wine-runner/dxvk.7z differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/setup_dxvk.sh b/deb/opt/apps/deepin-wine-runner/dxvk/setup_dxvk.sh
deleted file mode 100755
index 4bbaf64..0000000
--- a/deb/opt/apps/deepin-wine-runner/dxvk/setup_dxvk.sh
+++ /dev/null
@@ -1,232 +0,0 @@
-#!/usr/bin/env bash
-function wait(){
-	echo Press Enter To Exit
-	read
-}
-# default directories
-dxvk_lib32=${dxvk_lib32:-"x32"}
-dxvk_lib64=${dxvk_lib64:-"x64"}
-
-# figure out where we are
-basedir=$(dirname "$(readlink -f $0)")
-
-# figure out which action to perform
-action="$1"
-
-case "$action" in
-install)
-  ;;
-uninstall)
-  ;;
-*)
-  echo "Unrecognized action: $action"
-  echo "Usage: $0 [install|uninstall] [--without-dxgi] [--with-d3d10] [--symlink]"
-  wait
-  exit 1
-esac
-
-# process arguments
-shift
-
-with_dxgi=true
-with_d3d10=false
-file_cmd="cp -v"
-
-while (($# > 0)); do
-  case "$1" in
-  "--without-dxgi")
-    with_dxgi=false
-    ;;
-  "--with-d3d10")
-    with_d3d10=true
-    ;;
-  "--symlink")
-    file_cmd="ln -s -v"
-    ;;
-  esac
-  shift
-done
-
-# check wine prefix before invoking wine, so that we
-# don't accidentally create one if the user screws up
-if [ -n "$WINEPREFIX" ] && ! [ -f "$WINEPREFIX/system.reg" ]; then
-  echo "$WINEPREFIX:"' Not a valid wine prefix.' >&2
-  wait
-  exit 1
-fi
-
-# find wine executable
-export WINEDEBUG=-all
-# disable mscoree and mshtml to avoid downloading
-# wine gecko and mono
-export WINEDLLOVERRIDES="mscoree,mshtml="
-# 专门添加,为了可以使用自定义的 wine
-wine=$WINE
-wine64=$WINE64
-wineboot="$WINE wineboot"
-if [[ $WINE == "" ]];then
-   wine="wine"
-fi
-if [[ $WINE64 == "" ]];then
-   wine64="wine64"
-fi
-
-# $PATH is the way for user to control where wine is located (including custom Wine versions).
-# Pure 64-bit Wine (non Wow64) requries skipping 32-bit steps.
-# In such case, wine64 and winebooot will be present, but wine binary will be missing,
-# however it can be present in other PATHs, so it shouldn't be used, to avoid versions mixing.
-wine_path=$(dirname "$(which $wineboot)")
-wow64=true
-if ! [ -f "$wine_path/$wine" ]; then
-   wine=$wine64
-   wow64=false
-   wineboot="$wine64 wineboot"	
-fi
-
-# resolve 32-bit and 64-bit system32 path
-winever=$($wine --version | grep wine)
-if [ -z "$winever" ]; then
-    echo "$wine:"' Not a wine executable. Check your $wine.' >&2
-    wait
-    exit 1
-fi
-
-# ensure wine placeholder dlls are recreated
-# if they are missing
-$wineboot -u
-
-win64_sys_path=$($wine64 winepath -u 'C:\windows\system32' 2> /dev/null)
-win64_sys_path="${win64_sys_path/$'\r'/}"
-if $wow64; then
-  win32_sys_path=$($wine winepath -u 'C:\windows\system32' 2> /dev/null)
-  win32_sys_path="${win32_sys_path/$'\r'/}"
-fi
-
-if [ -z "$win32_sys_path" ] && [ -z "$win64_sys_path" ]; then
-  echo 'Failed to resolve C:\windows\system32.' >&2
-  wait
-  exit 1
-fi
-
-# create native dll override
-overrideDll() {
-  $wine reg add 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v $1 /d native /f >/dev/null 2>&1
-  if [ $? -ne 0 ]; then
-    echo -e "Failed to add override for $1"
-    wait
-    exit 1
-  fi
-}
-
-# remove dll override
-restoreDll() {
-  $wine reg delete 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v $1 /f > /dev/null 2>&1
-  if [ $? -ne 0 ]; then
-    echo "Failed to remove override for $1"
-  fi
-}
-
-# copy or link dxvk dll, back up original file
-installFile() {
-  dstfile="${1}/${3}.dll"
-  srcfile="${basedir}/${2}/${3}.dll"
-
-  if [ -f "${srcfile}.so" ]; then
-    srcfile="${srcfile}.so"
-  fi
-
-  if ! [ -f "${srcfile}" ]; then
-    echo "${srcfile}: File not found. Skipping." >&2
-    return 1
-  fi
-
-  if [ -n "$1" ]; then
-    if [ -f "${dstfile}" ] || [ -h "${dstfile}" ]; then
-      if ! [ -f "${dstfile}.old" ]; then
-        mv -v "${dstfile}" "${dstfile}.old"
-      else
-        rm -v "${dstfile}"
-      fi
-      $file_cmd "${srcfile}" "${dstfile}"
-    else
-      echo "${dstfile}: File not found in wine prefix" >&2
-      return 1
-    fi
-  fi
-  return 0
-}
-
-# remove dxvk dll, restore original file
-uninstallFile() {
-  dstfile="${1}/${3}.dll"
-  srcfile="${basedir}/${2}/${3}.dll"
-
-  if [ -f "${srcfile}.so" ]; then
-    srcfile="${srcfile}.so"
-  fi
-
-  if ! [ -f "${srcfile}" ]; then
-    echo "${srcfile}: File not found. Skipping." >&2
-    return 1
-  fi
-
-  if ! [ -f "${dstfile}" ] && ! [ -h "${dstfile}" ]; then
-    echo "${dstfile}: File not found. Skipping." >&2
-    return 1
-  fi
-
-  if [ -f "${dstfile}.old" ]; then
-    rm -v "${dstfile}"
-    mv -v "${dstfile}.old" "${dstfile}"
-    return 0
-  else
-    return 1
-  fi
-}
-
-install() {
-  installFile "$win64_sys_path" "$dxvk_lib64" "$1"
-  inst64_ret="$?"
-
-  inst32_ret=-1
-  if $wow64; then
-    installFile "$win32_sys_path" "$dxvk_lib32" "$1"
-    inst32_ret="$?"
-  fi
-
-  if (( ($inst32_ret == 0) || ($inst64_ret == 0) )); then
-    overrideDll "$1"
-  fi
-}
-
-uninstall() {
-  uninstallFile "$win64_sys_path" "$dxvk_lib64" "$1"
-  uninst64_ret="$?"
-
-  uninst32_ret=-1
-  if $wow64; then
-    uninstallFile "$win32_sys_path" "$dxvk_lib32" "$1"
-    uninst32_ret="$?"
-  fi
-
-  if (( ($uninst32_ret == 0) || ($uninst64_ret == 0) )); then
-    restoreDll "$1"
-  fi
-}
-
-# skip dxgi during install if not explicitly
-# enabled, but always try to uninstall it
-if $with_dxgi || [ "$action" == "uninstall" ]; then
-  $action dxgi
-fi
-
-$action d3d9
-
-if $with_d3d10 || [ "$action" == "uninstall" ]; then
-  $action d3d10
-  $action d3d10_1
-fi
-
-$action d3d10core
-$action d3d11
-wait
\ No newline at end of file
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d10.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d10.dll
deleted file mode 100755
index 7cc8c6c..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d10.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d10_1.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d10_1.dll
deleted file mode 100755
index 658870b..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d10_1.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d10core.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d10core.dll
deleted file mode 100755
index de5ce82..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d10core.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d11.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d11.dll
deleted file mode 100755
index 11f0602..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d11.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d9.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d9.dll
deleted file mode 100755
index e170c8a..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x32/d3d9.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x32/dxgi.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x32/dxgi.dll
deleted file mode 100755
index 45b2796..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x32/dxgi.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d10.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d10.dll
deleted file mode 100755
index 3c9fa15..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d10.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d10_1.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d10_1.dll
deleted file mode 100755
index 265c0e0..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d10_1.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d10core.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d10core.dll
deleted file mode 100755
index 6408c73..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d10core.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d11.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d11.dll
deleted file mode 100755
index 4011e2c..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d11.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d9.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d9.dll
deleted file mode 100755
index 738f075..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x64/d3d9.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/dxvk/x64/dxgi.dll b/deb/opt/apps/deepin-wine-runner/dxvk/x64/dxgi.dll
deleted file mode 100755
index f4cdb85..0000000
Binary files a/deb/opt/apps/deepin-wine-runner/dxvk/x64/dxgi.dll and /dev/null differ
diff --git a/deb/opt/apps/deepin-wine-runner/information.json b/deb/opt/apps/deepin-wine-runner/information.json
index 2c49dc6..36e7b12 100755
--- a/deb/opt/apps/deepin-wine-runner/information.json
+++ b/deb/opt/apps/deepin-wine-runner/information.json
@@ -1,5 +1,5 @@
 {
-    "Version": "1.9.0Alpha3",
+    "Version": "1.9.0",
     "Thank": [
         "感谢 @a2035274 @虚幻的早晨 https://bbs.deepin.org/post/238301",
         "感谢 @zhangs https://bbs.deepin.org/post/227948",
@@ -12,7 +12,11 @@
         "感谢 @PossibleVing 提供的新版应用图标",
         "感谢 @zhengjl 反馈的 1.7.0 中 .net framrwork 3.5 非离线版安装包的问题以及 1.8.0 重复路径一直自动重复增加的问题",
         "感谢 @国川 @刘岐 提供的非 i386、amd64 运行 wine 使用 i386/amd64 可执行文件的教程和脚本",
+        "感谢 @勇往直前 梦想启航 @189******09 @tfhyl 提供在非 X86 平台的国产 PC 进行测试",
+        "感谢 @cuisirwork 提供的提供视频教程的建议",
+        "感谢 @办公助手 提供的非 X86 平台 Wine 运行自定义 exe 应用教程和 deb 包",
         "感谢统信在 Wine 生态适配活动中提供的打包脚本",
+        "也感谢 DXVK 的开发者开发了 DXVK 这个程序,项目链接:https://github.com/doitsujin/dxvk",
         "",
         "可以从上面的各种解决方案更好的学习 Wine 生态适配,也可以看 deepin 论坛板块 https://bbs.deepin.org/module/detail/116 进行学习,最后也向各位有进行 Wine 生态适配的大佬进行由衷的感谢!",
         "如果上面有遗漏,请向我反馈补充"
diff --git a/deb/opt/apps/deepin-wine-runner/package-script.zip b/deb/opt/apps/deepin-wine-runner/package-script.zip
index 0f6eb7e..4054b73 100755
Binary files a/deb/opt/apps/deepin-wine-runner/package-script.zip and b/deb/opt/apps/deepin-wine-runner/package-script.zip differ
diff --git a/deb/opt/apps/deepin-wine-runner/sparkstore.list b/deb/opt/apps/deepin-wine-runner/sparkstore.list
new file mode 100644
index 0000000..0563772
--- /dev/null
+++ b/deb/opt/apps/deepin-wine-runner/sparkstore.list
@@ -0,0 +1 @@
+deb [by-hash=force] https://d.store.deepinos.org.cn / 
diff --git a/deb/opt/apps/deepin-wine-runner/wined3d.dll.so.7z b/deb/opt/apps/deepin-wine-runner/wined3d.dll.so.7z
new file mode 100644
index 0000000..0a86fd3
Binary files /dev/null and b/deb/opt/apps/deepin-wine-runner/wined3d.dll.so.7z differ
diff --git a/deb/usr/bin/deepin-wine-runner-winehq-install b/deb/usr/bin/deepin-wine-runner-winehq-install
new file mode 120000
index 0000000..5967df2
--- /dev/null
+++ b/deb/usr/bin/deepin-wine-runner-winehq-install
@@ -0,0 +1 @@
+/opt/apps/deepin-wine-runner/InstallNewWineHQ.sh
\ No newline at end of file
diff --git a/deepin-wine-packager.py b/deepin-wine-packager.py
index 876f4a9..83b03c8 100755
--- a/deepin-wine-packager.py
+++ b/deepin-wine-packager.py
@@ -61,6 +61,9 @@ def disabled_or_NORMAL_all(choose):
     option1_text.setDisabled(choose)
     chooseWineHelperValue.setDisabled(choose)
     wineVersion.setDisabled(choose)
+    debArch.setDisabled(choose)
+    if not choose:
+        ChangeArchCombobox()
     
 class QT:
     thread = None
@@ -157,82 +160,17 @@ class make_deb_threading(QtCore.QThread):
                 disabled_or_NORMAL_all(True)
                 self.label.emit("容器路径填写错误,无法进行构建 deb 包")
                 return
-            #############
-            # 删除文件
-            #############
-            self.label.emit("正在删除对构建 deb 包有影响的文件……")
-            debPackagePath = f"/tmp/{random.randint(0, 9999)}"
-            self.run_command(f"rm -rfv /tmp/{debPackagePath}")
-            ###############
-            # 创建目录
-            ###############
-            self.label.emit("正在创建目录……")
-            os.makedirs("{}/DEBIAN".format(debPackagePath))
-            os.makedirs("{}/opt/apps/{}/entries/applications".format(debPackagePath, e1_text.text()))
-            os.makedirs("{}/opt/apps/{}/entries/icons/hicolor/scalable/apps".format(debPackagePath, e1_text.text()))
-            os.makedirs("{}/opt/apps/{}/files".format(debPackagePath, e1_text.text()))
-            ###############
-            # 创建文件
-            ###############
-            self.label.emit("正在创建文件……")
-            os.mknod("{}/DEBIAN/control".format(debPackagePath))
-            os.mknod("{}/opt/apps/{}/entries/applications/{}.desktop".format(debPackagePath, e1_text.text(), e1_text.text()))
-            os.mknod("{}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()))
-            os.mknod("{}/opt/apps/{}/info".format(debPackagePath, e1_text.text()))
-            ###############
-            # 设置容器
-            ###############
-            self.label.emit("正在设置 wine 容器")
-            os.chdir(b)
-            self.run_command("sed -i \"s#$USER#@current_user@#\" ./*.reg")
-            os.chdir(f"{b}/drive_c/users")
-            self.run_command(f"mv -v '{os.getlogin()}' @current_user@")
-            os.chdir(programPath)
-            ###############
-            # 压缩容器
-            ###############
-            self.label.emit("正在打包 wine 容器")
-            self.run_command("7z a {}/opt/apps/{}/files/files.7z {}/*".format(debPackagePath, e1_text.text(), b))
-            ###############
-            # 复制图片
-            ###############
-            self.label.emit("正在复制文件……")
-            self.run_command(f"cp -rv '{programPath}/dlls' {debPackagePath}/opt/apps/{e1_text.text()}/files/")
-            if e9_text.text() != "":
-                shutil.copy(e9_text.text(), "{}/opt/apps/{}/entries/icons/hicolor/scalable/apps/{}.{}".format(debPackagePath, e1_text.text(), e1_text.text(), imms))
-            ################
-            # 获取文件大小
-            ################
-            self.label.emit("正在计算文件大小……")
-            size = getFileFolderSize(debPackagePath) / 1024
-            ################
-            # 写入文本文档
-            ################
-            self.label.emit("正在写入文件……")
-            if not chooseWineHelperValue.isChecked():
-                write_txt("{}/DEBIAN/control".format(debPackagePath), '''Package: {}
-Version: {}
-Architecture: i386
-Maintainer: {}
-Depends: {}, deepin-wine-helper (>= 5.1.30-1), fonts-wqy-microhei, fonts-wqy-zenhei
-Section: non-free/otherosfs
-Priority: optional
-Multi-Arch: foreign
-Description: {}
-'''.format(e1_text.text(), e2_text.text(), e4_text.text(), wine[wineVersion.currentText()], e3_text.text()))
-            else:
-                write_txt("{}/DEBIAN/control".format(debPackagePath), '''Package: {}
-Version: {}
-Architecture: i386
-Maintainer: {}
-Depends: {}, spark-dwine-helper (>= 1.6.2), fonts-wqy-microhei, fonts-wqy-zenhei
-Section: non-free/otherosfs
-Priority: optional
-Multi-Arch: foreign
-Description: {}
-'''.format(e1_text.text(), e2_text.text(), e4_text.text(), wine[wineVersion.currentText()], e3_text.text()))
-            if rmBash.isChecked():
-                write_txt("{}/DEBIAN/postrm".format(debPackagePath, e1_text.text()), f'''#!/bin/bash
+            debInformation = [
+                {
+                    # I386 wine 打包配置文件
+                    "Wine": wine[wineVersion.currentText()],
+                    "Architecture": "i386",
+                    "Depends": [
+                        f"{wine[wineVersion.currentText()]}, deepin-wine-helper (>= 5.1.30-1), fonts-wqy-microhei, fonts-wqy-zenhei",
+                        f"{wine[wineVersion.currentText()]}, spark-dwine-helper (>= 1.6.2), fonts-wqy-microhei, fonts-wqy-zenhei"
+                        ][int(chooseWineHelperValue.isChecked())],
+                    "postinst": "",
+                    "postrm": ["", f"""#!/bin/bash
 
 if [ "$1" = "remove" ] || [ "$1" = "purge" ];then
 
@@ -247,11 +185,9 @@ fi
 done
 else
 echo"非卸载,跳过清理"
-fi
-''')
-            write_txt("{}/opt/apps/{}/entries/applications/{}.desktop".format(debPackagePath, e1_text.text(), e1_text.text()), '#!/usr/bin/env xdg-open\n[Desktop Entry]\nEncoding=UTF-8\nType=Application\nX-Created-By={}\nCategories={};\nIcon={}\nExec="/opt/apps/{}/files/run.sh" {}\nName={}\nComment={}\nMimeType={}\nGenericName={}\nTerminal=false\nStartupNotify=false\n'.format(e4_text.text(), option1_text.currentText(), a, e1_text.text(), e15_text.text(), e8_text.text(), e3_text.text(), e10_text.text(), e1_text.text()))
-            if not bool(chooseWineHelperValue.text()):
-                write_txt("{}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()), '''#!/bin/sh
+fi"""][int()],
+                    "run.sh": [
+                        f"""#!/bin/sh
 
 #   Copyright (C) 2016 Deepin, Inc.
 #
@@ -260,13 +196,13 @@ fi
 
 version_gt() {{ test "$(echo "$@" | tr " " "\\n" | sort -V | head -n 1)" != "$1"; }}
 
-BOTTLENAME="{}"
-APPVER="{}"
-EXEC_PATH="{}"
+BOTTLENAME="{e5_text.text()}"
+APPVER="{e2_text.text()}"
+EXEC_PATH="{e7_text.text()}"
 START_SHELL_PATH="/opt/deepinwine/tools/run_v4.sh"
 export MIME_TYPE=""
-export DEB_PACKAGE_NAME="{}"
-export APPRUN_CMD="{}"
+export DEB_PACKAGE_NAME="{e1_text.text()}"
+export APPRUN_CMD="{wine[wineVersion.currentText()]}"
 DISABLE_ATTACH_FILE_DIALOG=""
 EXPORT_ENVS=""
 
@@ -294,10 +230,8 @@ if [ -n "$EXEC_PATH" ];then
     fi
 else
     $START_SHELL_PATH $BOTTLENAME $APPVER "uninstaller.exe" "$@"
-fi
-'''.format(e5_text.text(), e2_text.text(), e7_text.text(), e1_text.text(), wine[wineVersion.currentText()]))
-            else:
-                write_txt("{}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()), '''#!/bin/sh
+fi""", 
+                        f"""#!/bin/sh
 
 #   Copyright (C) 2016 Deepin, Inc.
 #
@@ -333,16 +267,16 @@ Get_Dist_Name()
 
 version_gt() {{ test "$(echo "$@" | tr " " "\n" | sort -V | head -n 1)" != "$1"; }}
 ####用于比较版本?未实装
-BOTTLENAME="{}"
-APPVER="{}"
-EXEC_PATH="{}"
+BOTTLENAME="{e5_text.text()}"
+APPVER="{e2_text.text()}"
+EXEC_PATH="{e7_text.text()}"
 ##### 软件在wine中的启动路径
 START_SHELL_PATH="/opt/deepinwine/tools/spark_run_v4.sh"
 export MIME_TYPE=""
 #####没什么用
-export DEB_PACKAGE_NAME="{}"
+export DEB_PACKAGE_NAME="{e1_text.text()}"
 ####这里写包名才能在启动的时候正确找到files.7z,似乎也和杀残留进程有关
-export APPRUN_CMD="{}"
+export APPRUN_CMD="{wine[wineVersion.currentText()]}"
 #####wine启动指令,建议
 EXPORT_ENVS=""
 
@@ -403,15 +337,412 @@ if [ -n "$EXEC_PATH" ];then
     fi
 else
     $START_SHELL_PATH $BOTTLENAME $APPVER "uninstaller.exe" "$@"
+fi"""
+                        ][chooseWineHelperValue.isChecked()],
+                        "info": f'''{{
+    "appid": "{e1_text.text()}",
+    "name": "{e8_text.text()}",
+    "version": "{e2_text.text()}",
+    "arch": ["i386"],
+    "permissions": {{
+        "autostart": false,
+        "notification": false,
+        "trayicon": true,
+        "clipboard": true,
+        "account": false,
+        "bluetooth": false,
+        "camera": true,
+        "audio_record": true,
+        "installed_apps": false
+    }}
+}}'''
+                },
+                {
+                    # ARM64 BOX86 wine 打包配置文件
+                    "Wine": f"WINEPREDLL='{programPath}/dlls-arm' WINEDLLPATH=/opt/deepin-wine6-stable/lib BOX86_NOSIGSEGV=1 /opt/deepin-box86/box86 /opt/deepin-wine6-stable/bin/wine ",
+                    "Architecture": "arm64",
+                    "Depends": "deepin-elf-verify (>= 0.0.16.7-1), com.deepin-wine6-stable.deepin(>=6.0deepin14), com.deepin-box86.deepin(>=0.2.3deepin8), p7zip-full, fonts-wqy-microhei, fonts-noto-cjk",
+                    "postinst": f"""#!/bin/sh
+DEB_PATH=/opt/apps/{e1_text.text()}
+NVIDIA_DISP_CARD=`lspci | grep VGA | grep NVIDIA`
+if [ -f $DEB_PATH/files/wined3d.dll.so ] && [ ! -z "$NVIDIA_DISP_CARD" ];then
+	mv $DEB_PATH/files/wined3d.dll.so $DEB_PATH/files/dlls
 fi
-'''.format(e5_text.text(), e2_text.text(), e7_text.text(), e1_text.text(), wine[wineVersion.currentText()]))
-            write_txt("{}/opt/apps/{}/info".format(debPackagePath, e1_text.text()), '{\n    "appid": "' + e1_text.text() + '",\n    "name": "' + e8_text.text() + '",\n    "version": "' + e2_text.text() + '",\n    "arch": ["i386"],\n    "permissions": {\n        "autostart": false,\n        "notification": false,\n        "trayicon": true,\n        "clipboard": true,\n        "account": false,\n        "bluetooth": false,\n        "camera": false,\n        "audio_record": false,\n        "installed_apps": false\n    }\n}')
+true
+""",
+                    "postrm": f"""#!/bin/sh
+
+BOTTLE="$HOME/.deepinwine/{e5_text.text()}"
+WINESERVER=/opt/deepin-wine6-stable/bin/wineserver
+
+if [ -d "$BOTTLE" ];then
+	WINEPREFIX=$BOTTLE $WINESERVER -k
+	rm $BOTTLE -rf
+fi
+
+true""",
+                    "run.sh": f"""#!/bin/bash
+DEB_PATH="/opt/apps/{e1_text.text()}"
+WINE="/opt/deepin-wine6-stable/bin/wine"
+WINESERVER="/opt/deepin-wine6-stable/bin/wineserver"
+BOX86="/opt/deepin-box86/box86"
+EXE="{e7_text.text()}"
+NEW_VERSION="{e2_text.text()}"
+BOTTLE="$HOME/.deepinwine/{e5_text.text()}"
+
+reconstruct_bottle_symlink() {{
+
+    if [ -L $BOTTLE/drive_c/users/$USER/Desktop ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Desktop
+        ln -s $HOME/Desktop $BOTTLE/drive_c/users/$USER/Desktop
+    fi
+    if [ -L $BOTTLE/drive_c/users/$USER/Documents ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Documents
+        ln -s $HOME/Documents $BOTTLE/drive_c/users/$USER/Documents
+    fi
+    if [ -L $BOTTLE/drive_c/users/$USER/Downloads ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Downloads
+        ln -s $HOME/Downloads $BOTTLE/drive_c/users/$USER/Downloads
+    fi
+
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Documents" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Documents"
+        ln -s $HOME/Documents "$BOTTLE/drive_c/users/$USER/My Documents"
+    fi
+
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Music" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Music"
+        ln -s $HOME/Music "$BOTTLE/drive_c/users/$USER/My Music"
+    fi
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Videos" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Videos"
+        ln -s $HOME/Videos "$BOTTLE/drive_c/users/$USER/My Videos"
+    fi
+}}
+
+if [ ! -d "$HOME/.deepinwine" ];then
+    mkdir -p "$HOME/.deepinwine"
+fi
+
+if [ -f $BOTTLE/VERSION ];then
+    old_version=""
+    while read line; do
+    old_version=$line
+    done < $BOTTLE/VERSION
+    if [ "$old_version" != "$NEW_VERSION" ];then
+	WINEPREFIX=$BOTTLE $BOX86 $WINESERVER -k
+        rm -rf $BOTTLE
+    fi
+fi
+
+if [ -d $BOTTLE ] && [ ! -f $BOTTLE/VERSION ];then
+	WINEPREFIX=$BOTTLE $BOX86 $WINESERVER -k
+	rm -rf $BOTTLE
+fi
+
+if [ ! -d $BOTTLE ];then
+    7z x "$DEB_PATH/files/files.7z" -o"$BOTTLE" -aoa
+    mv "$BOTTLE/drive_c/users/@current_user@" "$BOTTLE/drive_c/users/$USER"
+    sed -i "s#@current_user@#$USER#" $BOTTLE/*.reg
+    reconstruct_bottle_symlink
+    echo $NEW_VERSION > $BOTTLE/VERSION
+fi
+
+export WINEPREDLL=$DEB_PATH/files/dlls
+export ATTACH_FILE_DIALOG=1
+export WINEDLLPATH=/opt/deepin-wine6-stable/lib
+WINEPREFIX=$BOTTLE $BOX86 $WINE "$EXE" &""",
+                "info": f'''{{
+    "appid": "{e1_text.text()}",
+    "name": "{e8_text.text()}",
+    "version": "{e2_text.text()}",
+    "arch": ["arm64"],
+    "permissions": {{
+        "autostart": false,
+        "notification": false,
+        "trayicon": true,
+        "clipboard": true,
+        "account": false,
+        "bluetooth": false,
+        "camera": true,
+        "audio_record": true,
+        "installed_apps": false
+    }}
+}}'''
+                },
+                {
+                    # ARM64 exagear wine 打包配置文件
+                    "Wine": f"/opt/exagear/bin/ubt_x64a64_al --path-prefix {get_home()}/.deepinwine/debian-buster --utmp-paths-list {get_home()}/.deepinwine/debian-buster/.exagear/utmp-list --vpaths-list {get_home()}/.deepinwine/debian-buster/.exagear/vpaths-list --opaths-list {get_home()}/.deepinwine/debian-buster/.exagear/opaths-list --smo-mode fbase --smo-severity smart --fd-limit 8192 --foreign-ubt-binary /opt/exagear/bin/ubt_x32a64_al -- /opt/deepin-wine6-stable/bin/wine ",
+                    "Architecture": "arm64",
+                    "Depends": "zenity, com.deepin-wine6-stable.deepin(>=6.0deepin14), deepin-wine-exagear-images(>=10deepin4), com.deepin-box86.deepin(>=0.2.3deepin9), p7zip-full, fonts-wqy-microhei, fonts-noto-cjk",
+                    "postinst": "",
+                    "postrm": "",
+                    "run.sh": f"""#!/bin/bash
+DEB_PATH="/opt/apps/{e1_text.text()}"
+WINE="/opt/deepin-wine6-stable/bin/wine"
+WINESERVER="/opt/deepin-wine6-stable/bin/wineserver"
+EMU="/opt/exagear/bin/ubt_x64a64_al"
+IMAGE_PATH=$HOME/.deepinwine/debian-buster
+EMU_ARGS="--path-prefix $IMAGE_PATH --utmp-paths-list $IMAGE_PATH/.exagear/utmp-list --vpaths-list $IMAGE_PATH/.exagear/vpaths-list --opaths-list $IMAGE_PATH/.exagear/opaths-list --smo-mode fbase --smo-severity smart --fd-limit 8192 --foreign-ubt-binary /opt/exagear/bin/ubt_x32a64_al -- "
+EXE="{e7_text.text()}"
+NEW_VERSION="6.4.1deepin1"
+BOTTLE="$HOME/.deepinwine/{e5_text.text()}"
+KUNPENG=`lscpu | grep 'Model name' | grep Kunpeng`
+IMG_ARCHIVE_DIR=/opt/deepin-wine-exagear-images/debian-buster
+IMAGE_VER="{e2_text.text()}"
+LOCALTIME=`readlink -f /etc/localtime`
+
+export LC_ALL=$LANG
+export XMODIFIERS=$XMODIFIERS
+export DESKTOP_SESSION=deepin
+
+if command -v zenity >/dev/null 2>&1; then
+	progressbar()
+	{{
+		WINDOWID="" zenity --progress --title="$1" --text="$2" --pulsate --width=400 --auto-close --no-cancel ||
+		WINDOWID="" zenity --progress --title="$1" --text="$2" --pulsate --width=400 --auto-close
+	}}
+
+else
+	progressbar()
+	{{
+		cat -
+	}}
+fi
+
+reconstruct_bottle_symlink() {{
+
+    if [ -L $BOTTLE/drive_c/users/$USER/Desktop ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Desktop
+        ln -s $HOME/Desktop $BOTTLE/drive_c/users/$USER/Desktop
+    fi
+    if [ -L $BOTTLE/drive_c/users/$USER/Documents ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Documents
+        ln -s $HOME/Documents $BOTTLE/drive_c/users/$USER/Documents
+    fi
+    if [ -L $BOTTLE/drive_c/users/$USER/Downloads ]; then
+        rm -f $BOTTLE/drive_c/users/$USER/Downloads
+        ln -s $HOME/Downloads $BOTTLE/drive_c/users/$USER/Downloads
+    fi
+
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Documents" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Documents"
+        ln -s $HOME/Documents "$BOTTLE/drive_c/users/$USER/My Documents"
+    fi
+
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Music" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Music"
+        ln -s $HOME/Music "$BOTTLE/drive_c/users/$USER/My Music"
+    fi
+    if [ -L "$BOTTLE/drive_c/users/$USER/My Videos" ]; then
+        rm -f "$BOTTLE/drive_c/users/$USER/My Videos"
+        ln -s $HOME/Videos "$BOTTLE/drive_c/users/$USER/My Videos"
+    fi
+}}
+
+extract_image() {{
+
+    progpid=$(ps -ef | grep "zenity --progress --title=${{BOTTLE}}" | grep -v grep)
+    if [ -n "$progpid" ];then
+	    echo "one $BOTTLE app is extracting runtime images too."
+	    exit 0
+    fi
+
+    7z x "$IMG_ARCHIVE_DIR/files.7z" -o"$IMAGE_PATH" -aoa | progressbar "$BOTTLE" "正在释放环境..."
+    cp /usr/bin/dde-file-manager $IMAGE_PATH/usr/bin/dde-file-manager
+    rm $IMAGE_PATH/etc/localtime
+    ln -s $LOCALTIME $IMAGE_PATH/etc/localtime
+    if [ -d $IMAGE_PATH/etc/resolvconf ];then
+        rm $IMAGE_PATH/etc/resolvconf
+    fi
+    if [ -d /etc/resolvconf ];then
+    	cp /etc/resolvconf $IMAGE_PATH/etc/ -rf
+    fi
+    cp /etc/resolv.conf $IMAGE_PATH/etc/
+    cp /etc/hosts $IMAGE_PATH/etc/
+    echo $IMAGE_VER > $IMAGE_PATH/VERSION
+}}
+
+get_link_err_nums() {{
+
+	find  $IMAGE_PATH -type l ! -exec test -e {{}} \; -print | wc -l
+}}
+
+if [ ! -d "$HOME/.deepinwine" ];then
+    mkdir -p "$HOME/.deepinwine"
+fi
+
+if [ -f $BOTTLE/VERSION ];then
+    old_version=`cat $BOTTLE/VERSION`
+    if [ "$old_version" != "$NEW_VERSION" ];then
+        WINEPREFIX=$BOTTLE $EMU $EMU_ARGS $WINESERVER -k
+        rm -rf $BOTTLE
+    fi
+fi
+Update_D() {{
+    if [ -L "$BOTTLE/dosdevices/d:" ]; then
+        rm -f "$BOTTLE/dosdevices/d:"
+        ln -s $Downloads "$BOTTLE/dosdevices/d:"
+    fi
+  if [ -L "$BOTTLE/dosdevices/d:" ]; then
+        rm -f "$BOTTLE/dosdevices/d:"
+        ln -s $Downloads "$BOTTLE/dosdevices/d:"
+    fi
+}}
+if [ ! -d $BOTTLE ];then
+
+    7z x "$DEB_PATH/files/files.7z" -o"$BOTTLE" -aoa
+    mv "$BOTTLE/drive_c/users/@current_user@" "$BOTTLE/drive_c/users/$USER"
+    sed -i "s#@current_user@#$USER#" $BOTTLE/*.reg
+    reconstruct_bottle_symlink
+    echo $NEW_VERSION > $BOTTLE/VERSION
+fi
+
+if [ ! -z "$KUNPENG" ];then
+    if [ ! -e $IMAGE_PATH/VERSION ];then
+        extract_image
+    fi
+
+    OLD_IMAGE_VER=`cat $IMAGE_PATH/VERSION`
+    if [ "$OLD_IMAGE_VER" != "$IMAGE_VER" ];then
+        extract_image
+    fi
+
+    echo "======$(get_link_err_nums)===="
+    if [ "$(get_link_err_nums)" -gt "120" ];then
+        extract_image
+    fi
+fi
+
+## mount /data/ dir to geust
+if [ -d $IMAGE_PATH ] && [ ! -d $IMAGE_PATH/data ];then
+	mkdir $IMAGE_PATH/data
+	cp $DEB_PATH/files/exa/vpaths-list $IMAGE_PATH/.exagear
+fi
+
+export WINEPREDLL=$DEB_PATH/files/dlls
+export ATTACH_FILE_DIALOG=1
+export WINEDLLPATH=/opt/deepin-wine6-stable/lib
+WINEPREFIX=$BOTTLE $EMU $EMU_ARGS $WINE  $WINE wineboot --init
+ Update_D
+WINEPREFIX=$BOTTLE $EMU $EMU_ARGS $WINE "$EXE" --disable-gpu &""",
+                "info": f'''{{
+    "appid": "{e1_text.text()}",
+    "name": "{e8_text.text()}",
+    "version": "{e2_text.text()}",
+    "arch": ["arm64"],
+    "permissions": {{
+        "autostart": false,
+        "notification": false,
+        "trayicon": true,
+        "clipboard": true,
+        "account": false,
+        "bluetooth": false,
+        "camera": true,
+        "audio_record": true,
+        "installed_apps": false
+    }}
+}}'''}
+            ]
+            #############
+            # 删除文件
+            #############
+            self.label.emit("正在删除对构建 deb 包有影响的文件……")
+            debPackagePath = f"/tmp/{random.randint(0, 9999)}"
+            self.run_command(f"rm -rfv /tmp/{debPackagePath}")
+            ###############
+            # 创建目录
+            ###############
+            self.label.emit("正在创建目录……")
+            os.makedirs("{}/DEBIAN".format(debPackagePath))
+            os.makedirs("{}/opt/apps/{}/entries/applications".format(debPackagePath, e1_text.text()))
+            os.makedirs("{}/opt/apps/{}/entries/icons/hicolor/scalable/apps".format(debPackagePath, e1_text.text()))
+            os.makedirs("{}/opt/apps/{}/files".format(debPackagePath, e1_text.text()))
+            ###############
+            # 创建文件
+            ###############
+            self.label.emit("正在创建文件……")
+            os.mknod("{}/DEBIAN/control".format(debPackagePath))
+            os.mknod("{}/opt/apps/{}/entries/applications/{}.desktop".format(debPackagePath, e1_text.text(), e1_text.text()))
+            os.mknod("{}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()))
+            os.mknod("{}/opt/apps/{}/info".format(debPackagePath, e1_text.text()))
+            ###############
+            # 设置容器
+            ###############
+            self.label.emit("正在设置 wine 容器")
+            os.chdir(b)
+            self.run_command("sed -i \"s#$USER#@current_user@#\" ./*.reg")
+            os.chdir(f"{b}/drive_c/users")
+            self.run_command(f"mv -v '{os.getlogin()}' @current_user@")
+            os.chdir(programPath)
+            if cleanBottonByUOS.isChecked():
+                self.run_command(f"WINE='{debInformation[debArch.currentIndex()]['Wine']}' '{programPath}/cleanbottle.sh' '{b}'")
+            ###############
+            # 压缩容器
+            ###############
+            self.label.emit("正在打包 wine 容器")
+            self.run_command("7z a {}/opt/apps/{}/files/files.7z {}/*".format(debPackagePath, e1_text.text(), b))
+            ###############
+            # 复制图片
+            ###############
+            self.label.emit("正在复制文件……")
+            # arm64 box86 需要复制 dlls-arm 目录
+            if debArch.currentIndex() == 0:
+                if not os.path.exists(f"{programPath}/dlls"):
+                    self.run_command(f"7z x \"{programPath}/dlls.7z\" -o\"{programPath}\"")
+                    os.remove(f"{programPath}/dlls.7z")
+                self.run_command(f"cp -rv '{programPath}/dlls' {debPackagePath}/opt/apps/{e1_text.text()}/files/")
+            elif debArch.currentIndex() == 1:
+                if not os.path.exists(f"{programPath}/dlls-arm"):
+                    self.run_command(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\"")
+                    os.remove(f"{programPath}/dlls-arm.7z")
+                if not os.path.exists(f"{programPath}/wined3d.dll.so"):
+                    self.run_command(f"7z x \"{programPath}/wined3d.dll.so.7z\" -o\"{programPath}\"")
+                    os.remove(f"{programPath}/wined3d.dll.so.7z")
+                self.run_command(f"cp -rv '{programPath}/dlls-arm' {debPackagePath}/opt/apps/{e1_text.text()}/files/dlls")
+                self.run_command(f"cp -rv '{programPath}/wined3d.dll.so' {debPackagePath}/opt/apps/{e1_text.text()}/files/")
+            elif debArch.currentIndex() == 2:
+                if not os.path.exists(f"{programPath}/exagear"):
+                    self.run_command(f"aria2c -x 16 -s 16 -d \"{programPath}\" -o \"exagear.7z\" https://gitlink.org.cn/api/attachments/392441")
+                    self.run_command(f"7z x \"{programPath}/exagear.7z\" -o\"{programPath}\"")
+                    os.remove(f"{programPath}/exagear.7z")
+                self.run_command(f"cp -rv '{programPath}/exagear/*' {debPackagePath}/opt/apps/{e1_text.text()}/files/")
+            if e9_text.text() != "":
+                shutil.copy(e9_text.text(), "{}/opt/apps/{}/entries/icons/hicolor/scalable/apps/{}.{}".format(debPackagePath, e1_text.text(), e1_text.text(), imms))
+            ################
+            # 获取文件大小
+            ################
+            self.label.emit("正在计算文件大小……")
+            size = getFileFolderSize(debPackagePath) / 1024
+            ################
+            # 写入文本文档
+            ################
+            self.label.emit("正在写入文件……")
+            
+            write_txt(f"{debPackagePath}/DEBIAN/control", f'''Package: {e1_text.text()}
+Version: {e2_text.text()}
+Architecture: {debInformation[debArch.currentIndex()]["Architecture"]}
+Maintainer: {e4_text.text()}
+Depends: {debInformation[debArch.currentIndex()]["Depends"]}
+Section: non-free/otherosfs
+Priority: optional
+Multi-Arch: foreign
+Description: {e3_text.text()}
+''')
+            if debInformation[debArch.currentIndex()]["postinst"] != "":
+                write_txt(f"{debPackagePath}/DEBIAN/postinst", debInformation[debArch.currentIndex()]["postinst"])
+            if debInformation[debArch.currentIndex()]["postrm"] != "":
+                write_txt(f"{debPackagePath}/DEBIAN/postrm", debInformation[debArch.currentIndex()]["postrm"])
+            write_txt("{}/opt/apps/{}/entries/applications/{}.desktop".format(debPackagePath, e1_text.text(), e1_text.text()), '#!/usr/bin/env xdg-open\n[Desktop Entry]\nEncoding=UTF-8\nType=Application\nX-Created-By={}\nCategories={};\nIcon={}\nExec="/opt/apps/{}/files/run.sh" {}\nName={}\nComment={}\nMimeType={}\nGenericName={}\nTerminal=false\nStartupNotify=false\n'.format(e4_text.text(), option1_text.currentText(), a, e1_text.text(), e15_text.text(), e8_text.text(), e3_text.text(), e10_text.text(), e1_text.text()))
+            write_txt(f"{debPackagePath}/opt/apps/{e1_text.text()}/files/run.sh", debInformation[debArch.currentIndex()]["run.sh"])
+            write_txt("{}/opt/apps/{}/info".format(debPackagePath, e1_text.text()), debInformation[debArch.currentIndex()]["info"])
             ################
             # 修改文件权限
             ################
             self.label.emit("正在修改文件权限……")
             self.run_command("chmod -Rv 644 {}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()))
             self.run_command("chmod -Rv 644 {}/opt/apps/{}/info".format(debPackagePath, e1_text.text()))
+            self.run_command("chmod -Rv 0755 {}/DEBIAN".format(debPackagePath))
             self.run_command("chmod -Rv 755 {}/opt/apps/{}/files/run.sh".format(debPackagePath, e1_text.text()))
             self.run_command("chmod -Rv 755 {}/opt/apps/{}/entries/applications/{}.desktop".format(debPackagePath, e1_text.text(), e1_text.text()))
             ################
@@ -482,6 +813,18 @@ def readtxt(path):
 def get_home():
     return os.path.expanduser('~')
 
+def ChangeArchCombobox():
+    global chooseWineHelperValue
+    option = True
+    if debArch.currentIndex() != 0:
+        option = False
+    chooseWineHelperValue.setEnabled(option)
+    wineVersion.setEnabled(option)
+    
+    #chooseWineHelperValue.setEnabled(option)
+    rmBash.setEnabled(option)
+
+
 ###############
 # 程序信息
 ###############
@@ -530,7 +873,13 @@ button1 = QtWidgets.QPushButton("浏览……")
 button2 = QtWidgets.QPushButton("浏览……")
 button4 = QtWidgets.QPushButton("浏览……")
 button5 = QtWidgets.QPushButton("打包……")
+debOption = QtWidgets.QHBoxLayout()
 rmBash = QtWidgets.QCheckBox("设置卸载该 deb 后自动删除该容器")
+cleanBottonByUOS = QtWidgets.QCheckBox("使用统信 Wine 生态适配活动容器清理脚本")
+debOption.addWidget(rmBash)
+debOption.addWidget(cleanBottonByUOS)
+debArch = QtWidgets.QComboBox()
+debArch.addItems(["i386", "arm64(box86)", "arm64(exagear)"])
 textbox1 = QtWidgets.QTextBrowser()
 option1_text.addItems(["Network", "Chat", "Audio", "Video", "Graphics", "Office", "Translation", "Development", "Utility"])
 option1_text.setCurrentText("Network")
@@ -541,6 +890,7 @@ button2.clicked.connect(button2_cl)
 button4.clicked.connect(button4_cl)
 button5.clicked.connect(make_deb)
 wineFrame.addWidget(wineVersion)
+debArch.currentIndexChanged.connect(ChangeArchCombobox)
 wineFrame.addWidget(chooseWineHelperValue)
 # 创建控件
 widgetLayout.addWidget(QtWidgets.QLabel("要打包的 deb 包的包名(※必填):"), 0, 0, 1, 1)
@@ -557,7 +907,8 @@ widgetLayout.addWidget(QtWidgets.QLabel("要显示的 .desktop 文件的图标
 widgetLayout.addWidget(QtWidgets.QLabel("要显示的 .desktop 文件的 MimeType 内容(选填):"), 11, 0, 1, 1)
 widgetLayout.addWidget(QtWidgets.QLabel("选择打包的 wine 版本(※必选):"), 12, 0, 1, 1)
 widgetLayout.addWidget(QtWidgets.QLabel("打包 deb 的保存路径(※必填):"), 13, 0, 1, 1)
-widgetLayout.addWidget(QtWidgets.QLabel("自动删除选项(选填):"), 14, 0, 1, 1)
+widgetLayout.addWidget(QtWidgets.QLabel("deb 包选项(选填):"), 14, 0, 1, 1)
+widgetLayout.addWidget(QtWidgets.QLabel("打包 deb 架构(※必选):"), 15, 0, 1, 1)
 widgetLayout.addWidget(e1_text, 0, 1, 1, 1)
 widgetLayout.addWidget(e2_text, 1, 1, 1, 1)
 widgetLayout.addWidget(e3_text, 2, 1, 1, 1)
@@ -575,10 +926,11 @@ widgetLayout.addWidget(e10_text, 11, 1, 1, 1)
 widgetLayout.addLayout(wineFrame, 12, 1, 1, 1)
 widgetLayout.addWidget(e12_text, 13, 1, 1, 1)
 widgetLayout.addWidget(button4, 13, 2, 1, 1)
-widgetLayout.addWidget(rmBash, 14, 1, 1, 1)
-widgetLayout.addWidget(button5, 15, 1, 1, 1)
-widgetLayout.addWidget(label13_text, 16, 0, 1, 3)
-widgetLayout.addWidget(textbox1, 17, 0, 1, 3)
+widgetLayout.addLayout(debOption, 14, 1, 1, 1)
+widgetLayout.addWidget(debArch, 15, 1, 1, 1)
+widgetLayout.addWidget(button5, 16, 1, 1, 1)
+widgetLayout.addWidget(label13_text, 17, 0, 1, 3)
+widgetLayout.addWidget(textbox1, 18, 0, 1, 3)
 menu = window.menuBar()
 programmenu = menu.addMenu("程序")
 help = menu.addMenu("帮助")
diff --git a/deepin-wine-runner-create-botton.py b/deepin-wine-runner-create-botton.py
new file mode 100755
index 0000000..00d28b5
--- /dev/null
+++ b/deepin-wine-runner-create-botton.py
@@ -0,0 +1,52 @@
+#!/usr/bin/env python3
+import os
+import sys
+import threading
+import PyQt5.QtGui as QtGui
+import PyQt5.QtWidgets as QtWidgets
+
+def Create():  
+    # 解压容器
+    # 这里参考了 deepin wine 的 run_v4.sh
+    os.system(f"mkdir -p \"{sys.argv[1]}\"")
+    os.system(f"7z x \"{programPath}/files-exagear.7z\" -o\"{sys.argv[1]}\"")
+    os.system(f"mv \"{sys.argv[1]}/drive_c/users/@current_user@\" \"{sys.argv[1]}/drive_c/users/$USER\"")
+    os.system(f"sed -i \"s#@current_user@#$USER#\" {sys.argv[1]}/*.reg")
+    window.close()
+
+def Download():
+    os.system(f"aria2c -x 16 -s 16 -d \"{programPath}\" -o files-exagear.7z https://www.gitlink.org.cn/api/attachments/392364")
+    window.close()
+
+if __name__ == "__main__":
+    if len(sys.argv) <= 1 or "--help" in sys.argv:
+        print("帮助:")
+        print("参数为要解压到的路径")
+        print("--help 查看帮助")
+        sys.exit(1)
+    programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
+    if os.path.exists(sys.argv[1]):
+        exit()
+    app = QtWidgets.QApplication(sys.argv)
+    window = QtWidgets.QMainWindow()
+    widget = QtWidgets.QWidget()
+    layout = QtWidgets.QHBoxLayout()
+    label = QtWidgets.QLabel("正在下载容器,请稍后……")
+    layout.addWidget(QtWidgets.QLabel(f"<img src=\"{programPath}/deepin-wine-runner.svg\" width=50>"))
+    layout.addWidget(label)
+    widget.setLayout(layout)
+    window.setCentralWidget(widget)
+    window.setWindowTitle("下载容器")
+    window.setWindowIcon(QtGui.QIcon(f"{programPath}/deepin-wine-runner.svg"))
+    # 下载容器
+    if not os.path.exists(f"{programPath}/files-exagear.7z"):
+        window.setWindowTitle("下载容器")
+        label.setText("正在下载容器,请稍后……")
+        window.show()
+        threading.Thread(target=Download).start()
+        app.exec_()
+    window.setWindowTitle(f"解压容器 {sys.argv[1]}")
+    label.setText(f"正在解压容器,请稍后……\n容器路径:{sys.argv[1]}")
+    window.show()
+    threading.Thread(target=Create).start()
+    app.exec_()
\ No newline at end of file
diff --git a/dlls-arm.7z b/dlls-arm.7z
new file mode 100644
index 0000000..55d907a
Binary files /dev/null and b/dlls-arm.7z differ
diff --git a/dlls.7z b/dlls.7z
new file mode 100644
index 0000000..b6975e1
Binary files /dev/null and b/dlls.7z differ
diff --git a/dlls/gdi32.dll.so b/dlls/gdi32.dll.so
deleted file mode 100755
index a982738..0000000
Binary files a/dlls/gdi32.dll.so and /dev/null differ
diff --git a/dlls/gdi32.so b/dlls/gdi32.so
deleted file mode 100755
index 5585f0d..0000000
Binary files a/dlls/gdi32.so and /dev/null differ
diff --git a/dlls/kernel32.dll.so b/dlls/kernel32.dll.so
deleted file mode 100755
index 41e815f..0000000
Binary files a/dlls/kernel32.dll.so and /dev/null differ
diff --git a/dlls/kernelbase.dll.so b/dlls/kernelbase.dll.so
deleted file mode 100755
index 83187d8..0000000
Binary files a/dlls/kernelbase.dll.so and /dev/null differ
diff --git a/dlls/sechost.dll.so b/dlls/sechost.dll.so
deleted file mode 100755
index d98efad..0000000
Binary files a/dlls/sechost.dll.so and /dev/null differ
diff --git a/dlls/shell32.dll.so b/dlls/shell32.dll.so
deleted file mode 100755
index 7761c91..0000000
Binary files a/dlls/shell32.dll.so and /dev/null differ
diff --git a/dlls/user32.dll.so b/dlls/user32.dll.so
deleted file mode 100755
index 3e7f393..0000000
Binary files a/dlls/user32.dll.so and /dev/null differ
diff --git a/dlls/user32.so b/dlls/user32.so
deleted file mode 100755
index f548270..0000000
Binary files a/dlls/user32.so and /dev/null differ
diff --git a/dlls/winebrowser.exe.so b/dlls/winebrowser.exe.so
deleted file mode 100755
index 3520019..0000000
Binary files a/dlls/winebrowser.exe.so and /dev/null differ
diff --git a/dlls/winex11.drv.so b/dlls/winex11.drv.so
deleted file mode 100755
index 892d829..0000000
Binary files a/dlls/winex11.drv.so and /dev/null differ
diff --git a/dlls/ws2_32.dll.so b/dlls/ws2_32.dll.so
deleted file mode 100755
index e00c709..0000000
Binary files a/dlls/ws2_32.dll.so and /dev/null differ
diff --git a/dxvk.7z b/dxvk.7z
new file mode 100644
index 0000000..8c022ed
Binary files /dev/null and b/dxvk.7z differ
diff --git a/dxvk/setup_dxvk.sh b/dxvk/setup_dxvk.sh
deleted file mode 100755
index 4bbaf64..0000000
--- a/dxvk/setup_dxvk.sh
+++ /dev/null
@@ -1,232 +0,0 @@
-#!/usr/bin/env bash
-function wait(){
-	echo Press Enter To Exit
-	read
-}
-# default directories
-dxvk_lib32=${dxvk_lib32:-"x32"}
-dxvk_lib64=${dxvk_lib64:-"x64"}
-
-# figure out where we are
-basedir=$(dirname "$(readlink -f $0)")
-
-# figure out which action to perform
-action="$1"
-
-case "$action" in
-install)
-  ;;
-uninstall)
-  ;;
-*)
-  echo "Unrecognized action: $action"
-  echo "Usage: $0 [install|uninstall] [--without-dxgi] [--with-d3d10] [--symlink]"
-  wait
-  exit 1
-esac
-
-# process arguments
-shift
-
-with_dxgi=true
-with_d3d10=false
-file_cmd="cp -v"
-
-while (($# > 0)); do
-  case "$1" in
-  "--without-dxgi")
-    with_dxgi=false
-    ;;
-  "--with-d3d10")
-    with_d3d10=true
-    ;;
-  "--symlink")
-    file_cmd="ln -s -v"
-    ;;
-  esac
-  shift
-done
-
-# check wine prefix before invoking wine, so that we
-# don't accidentally create one if the user screws up
-if [ -n "$WINEPREFIX" ] && ! [ -f "$WINEPREFIX/system.reg" ]; then
-  echo "$WINEPREFIX:"' Not a valid wine prefix.' >&2
-  wait
-  exit 1
-fi
-
-# find wine executable
-export WINEDEBUG=-all
-# disable mscoree and mshtml to avoid downloading
-# wine gecko and mono
-export WINEDLLOVERRIDES="mscoree,mshtml="
-# 专门添加,为了可以使用自定义的 wine
-wine=$WINE
-wine64=$WINE64
-wineboot="$WINE wineboot"
-if [[ $WINE == "" ]];then
-   wine="wine"
-fi
-if [[ $WINE64 == "" ]];then
-   wine64="wine64"
-fi
-
-# $PATH is the way for user to control where wine is located (including custom Wine versions).
-# Pure 64-bit Wine (non Wow64) requries skipping 32-bit steps.
-# In such case, wine64 and winebooot will be present, but wine binary will be missing,
-# however it can be present in other PATHs, so it shouldn't be used, to avoid versions mixing.
-wine_path=$(dirname "$(which $wineboot)")
-wow64=true
-if ! [ -f "$wine_path/$wine" ]; then
-   wine=$wine64
-   wow64=false
-   wineboot="$wine64 wineboot"	
-fi
-
-# resolve 32-bit and 64-bit system32 path
-winever=$($wine --version | grep wine)
-if [ -z "$winever" ]; then
-    echo "$wine:"' Not a wine executable. Check your $wine.' >&2
-    wait
-    exit 1
-fi
-
-# ensure wine placeholder dlls are recreated
-# if they are missing
-$wineboot -u
-
-win64_sys_path=$($wine64 winepath -u 'C:\windows\system32' 2> /dev/null)
-win64_sys_path="${win64_sys_path/$'\r'/}"
-if $wow64; then
-  win32_sys_path=$($wine winepath -u 'C:\windows\system32' 2> /dev/null)
-  win32_sys_path="${win32_sys_path/$'\r'/}"
-fi
-
-if [ -z "$win32_sys_path" ] && [ -z "$win64_sys_path" ]; then
-  echo 'Failed to resolve C:\windows\system32.' >&2
-  wait
-  exit 1
-fi
-
-# create native dll override
-overrideDll() {
-  $wine reg add 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v $1 /d native /f >/dev/null 2>&1
-  if [ $? -ne 0 ]; then
-    echo -e "Failed to add override for $1"
-    wait
-    exit 1
-  fi
-}
-
-# remove dll override
-restoreDll() {
-  $wine reg delete 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v $1 /f > /dev/null 2>&1
-  if [ $? -ne 0 ]; then
-    echo "Failed to remove override for $1"
-  fi
-}
-
-# copy or link dxvk dll, back up original file
-installFile() {
-  dstfile="${1}/${3}.dll"
-  srcfile="${basedir}/${2}/${3}.dll"
-
-  if [ -f "${srcfile}.so" ]; then
-    srcfile="${srcfile}.so"
-  fi
-
-  if ! [ -f "${srcfile}" ]; then
-    echo "${srcfile}: File not found. Skipping." >&2
-    return 1
-  fi
-
-  if [ -n "$1" ]; then
-    if [ -f "${dstfile}" ] || [ -h "${dstfile}" ]; then
-      if ! [ -f "${dstfile}.old" ]; then
-        mv -v "${dstfile}" "${dstfile}.old"
-      else
-        rm -v "${dstfile}"
-      fi
-      $file_cmd "${srcfile}" "${dstfile}"
-    else
-      echo "${dstfile}: File not found in wine prefix" >&2
-      return 1
-    fi
-  fi
-  return 0
-}
-
-# remove dxvk dll, restore original file
-uninstallFile() {
-  dstfile="${1}/${3}.dll"
-  srcfile="${basedir}/${2}/${3}.dll"
-
-  if [ -f "${srcfile}.so" ]; then
-    srcfile="${srcfile}.so"
-  fi
-
-  if ! [ -f "${srcfile}" ]; then
-    echo "${srcfile}: File not found. Skipping." >&2
-    return 1
-  fi
-
-  if ! [ -f "${dstfile}" ] && ! [ -h "${dstfile}" ]; then
-    echo "${dstfile}: File not found. Skipping." >&2
-    return 1
-  fi
-
-  if [ -f "${dstfile}.old" ]; then
-    rm -v "${dstfile}"
-    mv -v "${dstfile}.old" "${dstfile}"
-    return 0
-  else
-    return 1
-  fi
-}
-
-install() {
-  installFile "$win64_sys_path" "$dxvk_lib64" "$1"
-  inst64_ret="$?"
-
-  inst32_ret=-1
-  if $wow64; then
-    installFile "$win32_sys_path" "$dxvk_lib32" "$1"
-    inst32_ret="$?"
-  fi
-
-  if (( ($inst32_ret == 0) || ($inst64_ret == 0) )); then
-    overrideDll "$1"
-  fi
-}
-
-uninstall() {
-  uninstallFile "$win64_sys_path" "$dxvk_lib64" "$1"
-  uninst64_ret="$?"
-
-  uninst32_ret=-1
-  if $wow64; then
-    uninstallFile "$win32_sys_path" "$dxvk_lib32" "$1"
-    uninst32_ret="$?"
-  fi
-
-  if (( ($uninst32_ret == 0) || ($uninst64_ret == 0) )); then
-    restoreDll "$1"
-  fi
-}
-
-# skip dxgi during install if not explicitly
-# enabled, but always try to uninstall it
-if $with_dxgi || [ "$action" == "uninstall" ]; then
-  $action dxgi
-fi
-
-$action d3d9
-
-if $with_d3d10 || [ "$action" == "uninstall" ]; then
-  $action d3d10
-  $action d3d10_1
-fi
-
-$action d3d10core
-$action d3d11
-wait
\ No newline at end of file
diff --git a/dxvk/x32/d3d10.dll b/dxvk/x32/d3d10.dll
deleted file mode 100755
index 7cc8c6c..0000000
Binary files a/dxvk/x32/d3d10.dll and /dev/null differ
diff --git a/dxvk/x32/d3d10_1.dll b/dxvk/x32/d3d10_1.dll
deleted file mode 100755
index 658870b..0000000
Binary files a/dxvk/x32/d3d10_1.dll and /dev/null differ
diff --git a/dxvk/x32/d3d10core.dll b/dxvk/x32/d3d10core.dll
deleted file mode 100755
index de5ce82..0000000
Binary files a/dxvk/x32/d3d10core.dll and /dev/null differ
diff --git a/dxvk/x32/d3d11.dll b/dxvk/x32/d3d11.dll
deleted file mode 100755
index 11f0602..0000000
Binary files a/dxvk/x32/d3d11.dll and /dev/null differ
diff --git a/dxvk/x32/d3d9.dll b/dxvk/x32/d3d9.dll
deleted file mode 100755
index e170c8a..0000000
Binary files a/dxvk/x32/d3d9.dll and /dev/null differ
diff --git a/dxvk/x32/dxgi.dll b/dxvk/x32/dxgi.dll
deleted file mode 100755
index 45b2796..0000000
Binary files a/dxvk/x32/dxgi.dll and /dev/null differ
diff --git a/dxvk/x64/d3d10.dll b/dxvk/x64/d3d10.dll
deleted file mode 100755
index 3c9fa15..0000000
Binary files a/dxvk/x64/d3d10.dll and /dev/null differ
diff --git a/dxvk/x64/d3d10_1.dll b/dxvk/x64/d3d10_1.dll
deleted file mode 100755
index 265c0e0..0000000
Binary files a/dxvk/x64/d3d10_1.dll and /dev/null differ
diff --git a/dxvk/x64/d3d10core.dll b/dxvk/x64/d3d10core.dll
deleted file mode 100755
index 6408c73..0000000
Binary files a/dxvk/x64/d3d10core.dll and /dev/null differ
diff --git a/dxvk/x64/d3d11.dll b/dxvk/x64/d3d11.dll
deleted file mode 100755
index 4011e2c..0000000
Binary files a/dxvk/x64/d3d11.dll and /dev/null differ
diff --git a/dxvk/x64/d3d9.dll b/dxvk/x64/d3d9.dll
deleted file mode 100755
index 738f075..0000000
Binary files a/dxvk/x64/d3d9.dll and /dev/null differ
diff --git a/dxvk/x64/dxgi.dll b/dxvk/x64/dxgi.dll
deleted file mode 100755
index f4cdb85..0000000
Binary files a/dxvk/x64/dxgi.dll and /dev/null differ
diff --git a/information.json b/information.json
index 2c49dc6..70a758b 100755
--- a/information.json
+++ b/information.json
@@ -1,5 +1,5 @@
 {
-    "Version": "1.9.0Alpha3",
+    "Version": "1.9.0",
     "Thank": [
         "感谢 @a2035274 @虚幻的早晨 https://bbs.deepin.org/post/238301",
         "感谢 @zhangs https://bbs.deepin.org/post/227948",
@@ -12,7 +12,13 @@
         "感谢 @PossibleVing 提供的新版应用图标",
         "感谢 @zhengjl 反馈的 1.7.0 中 .net framrwork 3.5 非离线版安装包的问题以及 1.8.0 重复路径一直自动重复增加的问题",
         "感谢 @国川 @刘岐 提供的非 i386、amd64 运行 wine 使用 i386/amd64 可执行文件的教程和脚本",
+        "感谢 @勇往直前 梦想启航 @189******09 @tfhyl 提供在非 X86 平台的国产 PC 进行测试",
+        "感谢 @cuisirwork 提供的提供视频教程的建议",
+        "感谢 @办公助手 提供的非 X86 平台 Wine 运行自定义 exe 应用教程和 deb 包",
+        "感谢 @季星火 反馈的无法使用该程序删除生成的 .desktop 的问题",
         "感谢统信在 Wine 生态适配活动中提供的打包脚本",
+        "也感谢 DXVK 的开发者开发了 DXVK 这个程序,项目链接:https://github.com/doitsujin/dxvk",
+        "也感谢 WineHQ 开发团队开发的 WineHQ,项目网址:https://dl.winehq.org/",
         "",
         "可以从上面的各种解决方案更好的学习 Wine 生态适配,也可以看 deepin 论坛板块 https://bbs.deepin.org/module/detail/116 进行学习,最后也向各位有进行 Wine 生态适配的大佬进行由衷的感谢!",
         "如果上面有遗漏,请向我反馈补充"
diff --git a/mainwindow.py b/mainwindow.py
index 9a4518c..cfbf74d 100755
--- a/mainwindow.py
+++ b/mainwindow.py
@@ -10,6 +10,7 @@
 #################
 # 引入所需的库
 #################
+from fileinput import close
 import os
 import sys
 import time
@@ -85,7 +86,7 @@ run = None
 def runexebutton(self):
     global run
     DisableButton(True)
-    if not CheckProgramIsInstall(wine[o1.currentText()]) and o1.currentText() != "基于 linglong 的 deepin-wine6-stable(不推荐)" and o1.currentText() != "基于 exagear 的 deepin-wine6-stable" and o1.currentText() != "基于 box86 的 deepin-wine6-stable":
+    if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
         if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 运行?") == QtWidgets.QMessageBox.No:
             DisableButton(False)
             return
@@ -148,6 +149,14 @@ class Runexebutton_threading(QtCore.QThread):
         wineUsingOption = ""
         if o1.currentText() == "基于 exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 box86 的 deepin-wine6-stable":
             wineUsingOption = "--disable-gpu"
+        if o1.currentText() == "基于 exagear 的 deepin-wine6-stable":
+            os.system(f"'{programPath}/deepin-wine-runner-create-botton.py' '{wineBottonPath}'")
+        if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+            if not os.path.exists(f"{programPath}/dlls-arm"):
+                if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                    QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                    return
+                os.remove(f"{programPath}/dlls-arm.7z")
         if setting["TerminalOpen"]:
             res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + e2.currentText() + "' " + setting["WineOption"] + "\" --keep-open" + wineUsingOption], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
         else:
@@ -160,7 +169,7 @@ class Runexebutton_threading(QtCore.QThread):
             except:
                 text = ""
             self.signal.emit(text)
-            print(text)
+            print(text, end="")
         if len(findExeHistory) == 0 or findExeHistory[-1] != wineBottonPath:
             findExeHistory.append(wineBottonPath)  # 将记录写进数组
             write_txt(get_home() + "/.config/deepin-wine-runner/FindExeHistory.json", str(json.dumps(ListToDictionary(findExeHistory))))  # 将历史记录的数组转换为字典并写入
@@ -208,7 +217,7 @@ def make_desktop_on_launcher():
         if combobox1.currentText() == "" or e2.currentText() == "":  # 判断文本框是否有内容
             QtWidgets.QMessageBox.information(widget, "提示", "没有填写需要使用 exe 应用或保存的文件名")
             return
-        if not CheckProgramIsInstall(wine[o1.currentText()]):
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
             if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 写入?") == QtWidgets.QMessageBox.No:
                 DisableButton(False)
                 return
@@ -229,6 +238,12 @@ def make_desktop_on_launcher():
             if not setting["Debug"]:
                 option += "WINEDEBUG=-all "
             wineUsingOption = ""
+            if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+                if not os.path.exists(f"{programPath}/dlls-arm"):
+                    if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                        QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                        return
+                    os.remove(f"{programPath}/dlls-arm.7z")
             if o1.currentText() == "基于 exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 box86 的 deepin-wine6-stable":
                 wineUsingOption = "--disable-gpu"
             write_txt(get_home() + "/.local/share/applications/" + combobox1.currentText() + ".desktop", f'''[Desktop Entry]
@@ -254,7 +269,7 @@ def make_desktop_on_desktop():
         if combobox1.currentText() == "" or e2.currentText() == "":  # 判断文本框是否有内容
             QtWidgets.QMessageBox.information(widget, "提示", "没有填写需要使用 exe 应用或保存的文件名")
             return
-        if not CheckProgramIsInstall(wine[o1.currentText()]):
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
             if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 写入?") == QtWidgets.QMessageBox.No:
                 DisableButton(False)
                 return
@@ -272,6 +287,12 @@ def make_desktop_on_desktop():
             wineUsingOption = ""
             if o1.currentText() == "基于 exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 box86 的 deepin-wine6-stable":
                 wineUsingOption = "--disable-gpu"
+            if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+                if not os.path.exists(f"{programPath}/dlls-arm"):
+                    if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                        QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                        return
+                    os.remove(f"{programPath}/dlls-arm.7z")
             if not os.path.exists(get_desktop_path()):
                 os.makedirs(get_home())
             os.mknod(get_desktop_path() + "/" + combobox1.currentText() + ".desktop")
@@ -336,6 +357,9 @@ def InstallWine():
 def InstallWineOnDeepin23():
     threading.Thread(target=os.system, args=[f"'{programPath}/launch.sh' deepin-terminal -e \"{programPath}/InstallWineOnDeepin23.py\""]).start()
 
+def InstallWineHQ():
+    threading.Thread(target=os.system, args=[f"'{programPath}/launch.sh' deepin-terminal -e \"{programPath}/InstallNewWineHQ.sh\""]).start()
+
 def OpenWineBotton():
     if e1.currentText() == "":
         wineBottonPath = setting["DefultBotton"]
@@ -373,10 +397,18 @@ class RunWineProgramThread(QtCore.QThread):
         if not setting["Debug"]:
             option += "WINEDEBUG=-all "
         wineUsingOption = ""
+        if o1.currentText() == "基于 exagear 的 deepin-wine6-stable":
+            os.system(f"'{programPath}/deepin-wine-runner-create-botton.py' '{wineBottonPath}'")
         if o1.currentText() == "基于 exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 box86 的 deepin-wine6-stable":
             wineUsingOption = "--disable-gpu"
+        if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+            if not os.path.exists(f"{programPath}/dlls-arm"):
+                if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                    QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                    return
+                os.remove(f"{programPath}/dlls-arm.7z")
         if setting["TerminalOpen"]:
-            res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + self.wineProgram + "' " + setting["WineOption"] + "\" --keep-open"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+            res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + self.wineProgram + "' " + setting["WineOption"] + " " + wineUsingOption + "\" --keep-open"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
         else:
             res = subprocess.Popen(["WINEPREFIX='" + wineBottonPath + "' " + option + wine[o1.currentText()] + " '" + self.wineProgram + "' " + setting["WineOption"]], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
         # 实时读取程序返回
@@ -386,7 +418,7 @@ class RunWineProgramThread(QtCore.QThread):
             except:
                 text = ""
             self.signal.emit(text)
-            print(text)
+            print(text, end="")
         if self.history:
             if len(findExeHistory) == 0 or findExeHistory[-1] != wineBottonPath:
                 findExeHistory.append(wineBottonPath)  # 将记录写进数组
@@ -404,7 +436,7 @@ def RunWineProgram(wineProgram, history = False, Disbled = True):
     global runProgram
     DisableButton(True)
     if not CheckProgramIsInstall(wine[o1.currentText()]) and o1.currentText() != "基于 linglong 的 deepin-wine6-stable(不推荐)" and o1.currentText() != "基于 exagear 的 deepin-wine6-stable" and o1.currentText() != "基于 box86 的 deepin-wine6-stable":
-        if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 运行?") == QtWidgets.QMessageBox.No:
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
             DisableButton(False)
             return
     returnText.setText("")
@@ -427,8 +459,17 @@ class RunWinetricksThread(QtCore.QThread):
             option += f"WINEARCH={setting['Architecture']} "
         if not setting["Debug"]:
             option += "WINEDEBUG=-all "
+        wineUsingOption = ""
+        if o1.currentText() == "基于 exagear 的 deepin-wine6-stable" or o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+            wineUsingOption = "--disable-gpu"
+        if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+            if not os.path.exists(f"{programPath}/dlls-arm"):
+                if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                    QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                    return
+                os.remove(f"{programPath}/dlls-arm.7z")
         if setting["TerminalOpen"]:
-            res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='{wineBottonPath}' {option} WINE=" + subprocess.getoutput(f"which {wine[o1.currentText()]}").replace(" ", "").replace("\n", "") + " winetricks --gui\" --keep-open"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+            res = subprocess.Popen([f"'{programPath}/launch.sh' deepin-terminal -C \"WINEPREFIX='{wineBottonPath}' {option} WINE=" + subprocess.getoutput(f"which {wine[o1.currentText()]}").replace(" ", "").replace("\n", "") + f" winetricks --gui {wineUsingOption}\" --keep-open"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
         else:    
             res = subprocess.Popen([f"WINEPREFIX='{wineBottonPath}' {option} WINE='" + subprocess.getoutput(f"which {wine[o1.currentText()]}").replace(" ", "").replace("\n", "") + "' winetricks --gui"], shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
         # 实时读取程序返回
@@ -445,21 +486,34 @@ runWinetricks = None
 def RunWinetricks():
     global runWinetricks
     DisableButton(True)
-    if not CheckProgramIsInstall(wine[o1.currentText()]):
-        if QtWidgets.QMessageBox.question(widget, "提示", "检查到您未安装这个 wine,是否继续使用这个 wine 运行?") == QtWidgets.QMessageBox.No:
+    if not CheckProgramIsInstall(wine[o1.currentText()]) and o1.currentText() != "基于 linglong 的 deepin-wine6-stable(不推荐)" and o1.currentText() != "基于 exagear 的 deepin-wine6-stable" and o1.currentText() != "基于 box86 的 deepin-wine6-stable":
+        if not CheckProgramIsInstall(wine[o1.currentText()]) and not o1.currentText() in untipsWine:
             DisableButton(False)
             return
+    if o1.currentText() == "基于 box86 的 deepin-wine6-stable":
+        if not os.path.exists(f"{programPath}/dlls-arm"):
+            if os.system(f"7z x \"{programPath}/dlls-arm.7z\" -o\"{programPath}\""):
+                QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+                return
+            os.remove(f"{programPath}/dlls-arm.7z")
     returnText.setText("")
     runWinetricks = RunWinetricksThread()
     runWinetricks.signal.connect(QT.ShowWineReturn)
     runWinetricks.start()
-    
+
+def CleanWineBottonByUOS():
+    if e1.currentText() == "":
+        wineBottonPath = setting["DefultBotton"]
+    else:
+        wineBottonPath = e1.currentText()
+    os.system(f"'{programPath}/launch.sh' deepin-terminal -C \"WINE='{wine[o1.currentText()]}' '{programPath}/cleanbottle.sh' '{wineBottonPath}'; echo 按回车退出; read; read; exit;\"")
+
 def FontAppStore():
     if e1.currentText() == "":
         wineBottonPath = setting["DefultBotton"]
     else:
         wineBottonPath = e1.currentText()
-    os.system(f"'{programPath}/launch.sh' deepin-terminal -e '{programPath}/InstallFont.py' '{wineBottonPath}' {int(setting['RuntimeCache'])}")
+    os.system(f"WINE='{programPath}/launch.sh' deepin-terminal -e '{programPath}/InstallFont.py' '{wineBottonPath}' {int(setting['RuntimeCache'])}")
 
 def InstallMonoGecko(program):
     if e1.currentText() == "":
@@ -490,6 +544,11 @@ def InstallMSXML():
     os.system(f"'{programPath}/launch.sh' deepin-terminal -e '{programPath}/InstallMsxml.py' '{wineBottonPath}' '{wine[o1.currentText()]}' {int(setting['RuntimeCache'])}")
 
 def InstallDXVK():
+    if not os.path.exists(f"{programPath}/dxvk"):
+        if os.system(f"7z x \"{programPath}/dxvk.7z\" -o\"{programPath}\""):
+            QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+            return
+        os.remove(f"{programPath}/dxvk.7z")
     if e1.currentText() == "":
         wineBottonPath = setting["DefultBotton"]
     else:
@@ -500,6 +559,11 @@ def InstallDXVK():
             f"{programPath}/dxvk/setup_dxvk.sh", "install"])
 
 def UninstallDXVK():
+    if not os.path.exists(f"{programPath}/dxvk"):
+        if os.system(f"7z x \"{programPath}/dxvk.7z\" -o\"{programPath}\""):
+            QtWidgets.QMessageBox(widget, "错误", "无法解压资源")
+            return
+        os.remove(f"{programPath}/dxvk.7z")
     if e1.currentText() == "":
         wineBottonPath = setting["DefultBotton"]
     else:
@@ -553,6 +617,16 @@ def SetDeepinFileDialogDefult():
 def SetDeepinFileDialogRecovery():
     threading.Thread(target=os.system, args=[f"'{programPath}/launch.sh' deepin-terminal -C 'pkexec \"{programPath}/deepin-wine-venturi-setter.py\" recovery' --keep-open"]).start()
 
+def DeleteDesktopIcon():
+    if os.path.exists(f"{get_home()}/.local/share/applications/wine"):
+        try:
+            shutil.rmtree(f"{get_home()}/.local/share/applications/wine")
+        except:
+            traceback.print_exc()
+            QtWidgets.QMessageBox.critical(widget, "错误", traceback.format_exc())
+            return
+    QtWidgets.QMessageBox.information(widget, "提示", "删除完成")
+
 def DeleteWineBotton():
     if QtWidgets.QMessageBox.question(widget, "提示", "你确定要删除容器吗?删除后将无法恢复!\n如果没有选择 wine 容器,将会自动删除默认的容器!") == QtWidgets.QMessageBox.No:
         return
@@ -610,6 +684,9 @@ def UOSPackageScript():
 def RunVM():
     threading.Thread(target=os.system, args=[f"bash '{programPath}/RunVM.sh'"]).start()
 
+def CleanProgram():
+    os.system(f"'{programPath}/launch.sh' deepin-terminal -e \"{programPath}/clean-unuse-program.py\"")
+
 class UpdateWindow():
     data = {}
     update = None
@@ -978,7 +1055,8 @@ defultProgramList = {
     "Theme": "",
     "MonoGeckoInstaller": True,
     "AutoWine": True,
-    "RuntimeCache": True
+    "RuntimeCache": True,
+    "MustRead": False
 }
 if not os.path.exists(get_home() + "/.config/deepin-wine-runner"):  # 如果没有配置文件夹
     os.mkdir(get_home() + "/.config/deepin-wine-runner")  # 创建配置文件夹
@@ -1004,10 +1082,28 @@ if not os.path.exists(get_home() + "/.config/deepin-wine-runner/WineSetting.json
 ###########################
 # 设置变量
 ###########################
+programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
 # 如果要添加其他 wine,请在字典添加其名称和执行路径
 try:
-    wine = {"deepin-wine": "deepin-wine", "deepin-wine5": "deepin-wine5", "wine": "wine", "wine64": "wine64", "deepin-wine5 stable": "deepin-wine5-stable", "deepin-wine6 stable": "deepin-wine6-stable", "spark-wine7-devel": "spark-wine7-devel", "ukylin-wine": "ukylin-wine"}
+    wine = {
+        "基于 box86 的 deepin-wine6-stable": f"WINEPREDLL='{programPath}/dlls-arm' WINEDLLPATH=/opt/deepin-wine6-stable/lib BOX86_NOSIGSEGV=1 /opt/deepin-box86/box86 /opt/deepin-wine6-stable/bin/wine ",
+        "基于 exagear 的 deepin-wine6-stable": f"/opt/exagear/bin/ubt_x64a64_al --path-prefix {get_home()}/.deepinwine/debian-buster --utmp-paths-list {get_home()}/.deepinwine/debian-buster/.exagear/utmp-list --vpaths-list {get_home()}/.deepinwine/debian-buster/.exagear/vpaths-list --opaths-list {get_home()}/.deepinwine/debian-buster/.exagear/opaths-list --smo-mode fbase --smo-severity smart --fd-limit 8192 --foreign-ubt-binary /opt/exagear/bin/ubt_x32a64_al -- /opt/deepin-wine6-stable/bin/wine ",
+        "deepin-wine6 stable": "deepin-wine6-stable", 
+        "deepin-wine5 stable": "deepin-wine5-stable", 
+        "spark-wine7-devel": "spark-wine7-devel", 
+        "deepin-wine": "deepin-wine", 
+        "deepin-wine5": "deepin-wine5", 
+        "wine": "wine", 
+        "wine64": "wine64", 
+        "ukylin-wine": "ukylin-wine",
+        "基于 linglong 的 deepin-wine6-stable(不推荐)": f"ll-cli run '' --exec '/bin/deepin-wine6-stable'"
+    }
+    untipsWine = ["基于 box86 的 deepin-wine6-stable", "基于 exagear 的 deepin-wine6-stable", "基于 linglong 的 deepin-wine6-stable(不推荐)"]
     canUseWine = []
+    if os.path.exists("/opt/deepin-box86/box86"):
+        canUseWine.append("基于 box86 的 deepin-wine6-stable")
+    if os.path.exists("/opt/exagear/bin/ubt_x64a64_al"):
+        canUseWine.append("基于 exagear 的 deepin-wine6-stable")
     for i in wine.keys():
         if not os.system(f"which '{wine[i]}'"):
             canUseWine.append(i)
@@ -1022,12 +1118,6 @@ try:
                     break
             except:
                 pass
-    if os.path.exists("/opt/deepin-box86/box86"):
-        wine["基于 box86 的 deepin-wine6-stable"] = f"BOX86_NOSIGSEGV=1 /opt/deepin-box86/box86 /opt/deepin-wine6-stable/bin/wine "
-        canUseWine.append("基于 box86 的 deepin-wine6-stable")
-    if os.path.exists("/opt/exagear/bin/ubt_x64a64_al"):
-        wine["基于 exagear 的 deepin-wine6-stable"] = f"/opt/exagear/bin/ubt_x64a64_al --path-prefix {get_home()}/.deepinwine/debian-buster --utmp-paths-list {get_home()}/.deepinwine/debian-buster/.exagear/utmp-list --vpaths-list {get_home()}/.deepinwine/debian-buster/.exagear/vpaths-list --opaths-list {get_home()}/.deepinwine/debian-buster/.exagear/opaths-list --smo-mode fbase --smo-severity smart --fd-limit 8192 --foreign-ubt-binary /opt/exagear/bin/ubt_x32a64_al -- /opt/deepin-wine6-stable/bin/wine "
-        canUseWine.append("基于 exagear 的 deepin-wine6-stable")
     shellHistory = list(json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/ShellHistory.json")).values())
     findExeHistory = list(json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/FindExeHistory.json")).values())
     wineBottonHistory = list(json.loads(readtxt(get_home() + "/.config/deepin-wine-runner/WineBottonHistory.json")).values())
@@ -1050,7 +1140,6 @@ except:
 ###########################
 # 程序信息
 ###########################
-programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
 iconPath = "{}/deepin-wine-runner.svg".format(programPath)
 programUrl = "https://gitee.com/gfdgd-xi/deep-wine-runner\nhttps://github.com/gfdgd-xi/deep-wine-runner\nhttps://www.gitlink.org.cn/gfdgd_xi/deep-wine-runner"
 information = json.loads(readtxt(f"{programPath}/information.json"))
@@ -1065,26 +1154,32 @@ tips = '''<h4>提示:</h4>
 exe路径\' 参数 \'
 即可(单引号需要输入)
 5、wine 容器如果没有指定,则会默认为 ~/.wine
-6、在使用 linglong 包的 Wine 应用时,必须安装至少一个 linglong 的使用 Wine 软件包才会出现该选项,
+6、对于非 X86 的用户来说,请不要使用本程序自带的 Wine 安装程序和 Windows 虚拟机安装功能(检测到为非 X86 架构会自动禁用)
+7、在使用 linglong 包的 Wine 应用时,必须安装至少一个 linglong 的使用 Wine 软件包才会出现该选项,
 而程序识别到的 Wine 是按 linglong 的使用 Wine 软件包名的字母排序第一个的 Wine,且生成的容器不在用户目录下,而是在容器的用户目录下(~/.deepinwine、/tmp、桌面、下载、文档等被映射的目录除外),
 同理需要运行的 EXE 也必须在被映射的目录内
-7、如果是使用 Deepin 23 的 Wine 安装脚本,请切记——安装过程会临时添加 Deepin 20 的 apt 源,不要中断安装以及
+8、如果是使用 Deepin 23 的 Wine 安装脚本,请切记——安装过程会临时添加 Deepin 20 的 apt 源,不要中断安装以及
 <b>千万不要中断后不删除源的情况下 apt upgrade !!!</b>中断后只需重新打开脚本输入 repair 或者随意安装一个 Wine(会自动执行恢复操作)即可
 以及此脚本安装的 Wine 无法保证 100% 能使用,以及副作用是会提示
 <code>N: 鉴于仓库 'https://community-packages.deepin.com/beige beige InRelease' 不支持 'i386' 体系结构,跳过配置文件 'main/binary-i386/Packages' 的获取。</code>'''
-updateThingsString = '''※1、修复了重复路径一直自动重复增加的问题
+updateThingsString = '''<b>※1、修复了重复路径一直自动重复增加的问题
 ※2、修复了两个打包器打包错误的问题(非基于生态活动脚本的为 wine 导入错误,基于生态活动脚本的为架构有误导致打包出的 deb 无法打包)
-※3、适配了部分非 i386、amd64 架构计算机的 UOS 系统使用的 wine
+※3、适配了部分非 i386、amd64 架构计算机的 UOS 系统使用的 wine 并支持打包非 i386、amd64 架构计算机的 UOS 系统使用的 wine 程序 deb 包
 ※4、支持安装 dxvk(遵守 Zlib 开源协议)
-5、支持不显示没有安装的 Wine,方便用户识别
-6、增加字体商店
+※5、运行器、打包器(包括非基于生态适配活动脚本制作的)支持使用 Wine 生态适配活动的容器清理脚本
+※6、支持更加简易的安装最新版的 WineHQ</b>
+7、支持不显示没有安装的 Wine,方便用户识别
+8、增加字体商店
+9、修改了 Wine 的顺序使其更加合理
+10、支持删除安装 exe 后在启动器的快捷方式
 '''
 for i in information["Thank"]:
     thankText += f"{i}\n"
-updateTime = "2022年08月05日"
+updateTime = "2022年08月11日"
 about = f'''<h1>关于</h1>
 <p>一个能让Linux用户更加方便运行Windows应用的程序,内置了对wine图形话的支持和各种Wine工具和自制Wine程序打包器、运行库安装工具等等</p>
 <p>同时也内置了基于VirtualBox制作的小白Windows虚拟机安装工具,可以做到只需要用户下载系统镜像并点击安装即可,无需顾及虚拟机安装、创建、虚拟机的分区等等</p>
+<p>本程序依照 GPLV3 协议开源</p>
 <pre>
 
 一个图形化了如下命令的程序(最简单格式)
@@ -1261,24 +1356,30 @@ menu = window.menuBar()
 programmenu = menu.addMenu("程序(&P)")
 p1 = QtWidgets.QAction("安装 wine(&I)")
 installWineOnDeepin23 = QtWidgets.QAction("安装 wine(只限Deepin23)")
+installWineHQ = QtWidgets.QAction("安装 WineHQ")
 p2 = QtWidgets.QAction("设置程序(&S)")
 p3 = QtWidgets.QAction("清空软件历史记录(&C)")
 cleanCache = QtWidgets.QAction("清空软件缓存")
+cleanProgramUnuse = QtWidgets.QAction("删除程序组件")
 p4 = QtWidgets.QAction("退出程序(&E)")
 programmenu.addAction(p1)
 programmenu.addAction(installWineOnDeepin23)
+programmenu.addAction(installWineHQ)
 programmenu.addSeparator()
 programmenu.addAction(p2)
 programmenu.addSeparator()
 programmenu.addAction(p3)
 programmenu.addAction(cleanCache)
+programmenu.addAction(cleanProgramUnuse)
 programmenu.addSeparator()
 programmenu.addAction(p4)
 p1.triggered.connect(InstallWine)
 installWineOnDeepin23.triggered.connect(InstallWineOnDeepin23)
+installWineHQ.triggered.connect(InstallWineHQ)
 p2.triggered.connect(ProgramSetting.ShowWindow)
 p3.triggered.connect(CleanProgramHistory)
 cleanCache.triggered.connect(CleanProgramCache)
+cleanProgramUnuse.triggered.connect(CleanProgram)
 p4.triggered.connect(window.close)
 
 wineOption = menu.addMenu("Wine(&W)")
@@ -1286,14 +1387,17 @@ w1 = QtWidgets.QAction("打开 Wine 容器目录")
 w2 = QtWidgets.QAction("安装常见字体")
 w3 = QtWidgets.QAction("安装自定义字体")
 w4 = QtWidgets.QAction("删除选择的 Wine 容器")
+cleanBottonUOS = QtWidgets.QAction("清理 Wine 容器(基于 Wine 适配活动脚本)")
 w5 = QtWidgets.QAction("打包 wine 应用")
 w6 = QtWidgets.QAction("使用官方 Wine 适配活动的脚本进行打包")
 w7 = QtWidgets.QAction("从镜像获取DLL(只支持Windows XP、Windows Server 2003官方安装镜像)")
 updateGeek = QtWidgets.QAction("从 Geek Uninstaller 官网升级程序")
+deleteDesktopIcon = QtWidgets.QAction("删除所有 Wine 程序在启动器的快捷方式")
 wineOption.addAction(w1)
 wineOption.addAction(w2)
 wineOption.addAction(w3)
 wineOption.addAction(w4)
+wineOption.addAction(cleanBottonUOS)
 wineOption.addSeparator()
 wineOption.addAction(w5)
 wineOption.addAction(w6)
@@ -1354,10 +1458,13 @@ installDxvk = QtWidgets.QAction("安装 DXVK")
 uninstallDxvk = QtWidgets.QAction("卸载 DXVK")
 dxvkMenu.addAction(installDxvk)
 dxvkMenu.addAction(uninstallDxvk)
+wineOption.addSeparator()
+wineOption.addAction(deleteDesktopIcon)
 w1.triggered.connect(OpenWineBotton)
 w2.triggered.connect(InstallWineFont)
 w3.triggered.connect(OpenWineFontPath)
 w4.triggered.connect(DeleteWineBotton)
+cleanBottonUOS.triggered.connect(CleanWineBottonByUOS)
 w5.triggered.connect(BuildExeDeb)
 w6.triggered.connect(UOSPackageScript)
 w7.triggered.connect(GetDllFromWindowsISO.ShowWindow)
@@ -1384,6 +1491,7 @@ wm4_1.triggered.connect(lambda: os.system(f"'{programPath}/launch.sh' deepin-ter
 wm4_2.triggered.connect(lambda: os.system(f"'{programPath}/launch.sh' deepin-terminal -C 'pkexec apt purge winbind -y' --keep-open"))
 installDxvk.triggered.connect(InstallDXVK)
 uninstallDxvk.triggered.connect(UninstallDXVK)
+deleteDesktopIcon.triggered.connect(DeleteDesktopIcon)
 
 virtualMachine = menu.addMenu("虚拟机(&V)")
 v1 = QtWidgets.QAction("使用 Virtualbox 虚拟机运行 Windows 应用")
@@ -1451,6 +1559,24 @@ if setting["AutoWine"]:
     o1.addItems(canUseWine)
 else:
     o1.addItems(wine.keys())
+# 禁用被精简掉的控件
+for i in [
+    [[p1, installWineOnDeepin23, installWineHQ], f"{programPath}/InstallWineOnDeepin23.py"],
+    [[w5], f"{programPath}/deepin-wine-packager.py"],
+    [[w6], f"{programPath}/deepin-wine-packager-with-script.py"],
+    [[p1, v1], f"{programPath}/RunVM.sh"]
+]:
+    if not os.path.exists(i[1]):
+        for x in i[0]:
+            x.setDisabled(True)
+# 有些功能是非 X86 不适用的,需要屏蔽
+if subprocess.getoutput("arch").lower() != "x86_64":
+    p1.setDisabled(True)
+    installWineOnDeepin23.setDisabled(True)
+    virtualMachine.setDisabled(True)
+    v1.setDisabled(True)
+    installWineHQ.setDisabled(True)
+    pass
 o1.setCurrentText(setting["DefultWine"])
 e1.setEditText(setting["DefultBotton"])
 e2.setEditText("")
diff --git a/package-script.zip b/package-script.zip
index 0f6eb7e..4054b73 100755
Binary files a/package-script.zip and b/package-script.zip differ
diff --git a/package-script/cleanbottle.sh b/package-script/cleanbottle.sh
index 4933bd2..8b60131 100755
--- a/package-script/cleanbottle.sh
+++ b/package-script/cleanbottle.sh
@@ -1,6 +1,9 @@
 #!/bin/sh
-
-WINE_CMD="deepin-wine5"
+if [ $WINE = "" ]; then
+	WINE_CMD="deepin-wine5"
+else
+	WINE_CMD=$WINE
+fi
 userdir=$USER
 
 remove_file()
@@ -364,7 +367,7 @@ if [ -z "$1" ]; then
     echo "prefix should be given"
     exit 1
 fi
-
+WINEPREFIX=$1
 BottlePath=$1
 BottleBase=${BottlePath}/drive_c
 
diff --git a/package-script/information.json b/package-script/information.json
index fa1c155..6175d4f 100755
--- a/package-script/information.json
+++ b/package-script/information.json
@@ -1,3 +1,3 @@
 {
-    "Version": "1.9.0Alpha3"
+    "Version": "1.9.0"
 }
diff --git a/package-script/package.py b/package-script/package.py
index ed075a2..fdc33eb 100755
--- a/package-script/package.py
+++ b/package-script/package.py
@@ -115,7 +115,8 @@ def PackageDeb():
     QT.run.start()
 
 def RunCommand(command):
-    commandReturn.append(command)
+    if command.replace("\n", "").replace(" ", "") != "":
+        commandReturn.append(command.replace("\n", ""))
 
 def ShowHelp():
     QtWidgets.QMessageBox.information(widget, "帮助", f"下面是有关打包器的各个输入框的意义以及有关的 UOS 填写标准\n{tips}")
diff --git a/system.reg b/system.reg
new file mode 100644
index 0000000..63ae8a5
--- /dev/null
+++ b/system.reg
@@ -0,0 +1,38800 @@
+WINE REGISTRY Version 2
+;; All keys relative to \\Machine
+
+#arch=win32
+
+[Software\\Borland\\Database Engine\\Settings\\SYSTEM\\INIT] 1660099897
+#time=1d8ac641c4ea294
+"SHAREDMEMLOCATION"="9000"
+
+[Software\\Classes\\*\\shellex\\ContextMenuHandlers] 1660099897
+#time=1d8ac641c4b810e
+
+[Software\\Classes\\.chm] 1660099897
+#time=1d8ac641c4b70b0
+@="chm.file"
+
+[Software\\Classes\\.cpl] 1660099897
+#time=1d8ac641c4b7222
+@="cplfile"
+
+[Software\\Classes\\.hlp] 1660099897
+#time=1d8ac641c4b7394
+@="hlpfile"
+
+[Software\\Classes\\.inf] 1660099897
+#time=1d8ac641c4b7506
+@="inffile"
+
+[Software\\Classes\\.ini] 1660099897
+#time=1d8ac641c4b7664
+@="inifile"
+
+[Software\\Classes\\.its] 1660099896
+#time=1d8ac641b7c1db0
+@="ITS File"
+
+[Software\\Classes\\.js] 1660099896
+#time=1d8ac641bb5900e
+@="JSFile"
+
+[Software\\Classes\\.lnk] 1660099897
+#time=1d8ac641c4b77cc
+@="lnkfile"
+
+[Software\\Classes\\.msi] 1660099897
+#time=1d8ac641c4b7934
+@="Msi.Package"
+
+[Software\\Classes\\.msp] 1660099897
+#time=1d8ac641c4b7a9c
+@="Msi.Patch"
+
+[Software\\Classes\\.pdf] 1660099897
+#time=1d8ac641c4b7c22
+@="pdffile"
+
+[Software\\Classes\\.rtf] 1660099897
+#time=1d8ac641c4b7d8a
+@="rtffile"
+
+[Software\\Classes\\.url] 1660099896
+#time=1d8ac641b788830
+@="InternetShortcut"
+
+[Software\\Classes\\.vbs] 1660099896
+#time=1d8ac641bb5919e
+@="VBSFile"
+
+[Software\\Classes\\.wri] 1660099897
+#time=1d8ac641c4b7ef2
+@="wrifile"
+
+[Software\\Classes\\ADODB.Command] 1660099895
+#time=1d8ac641b17086c
+@="Command"
+
+[Software\\Classes\\ADODB.Command\\CLSID] 1660099895
+#time=1d8ac641b1707a4
+@="{00000507-0000-0010-8000-00AA006D2EA4}"
+
+[Software\\Classes\\ADODB.Command\\CurVer] 1660099895
+#time=1d8ac641b1708d0
+@="ADODB.Command.6.0"
+
+[Software\\Classes\\ADODB.Command.6.0] 1660099895
+#time=1d8ac641b16b222
+@="Command"
+
+[Software\\Classes\\ADODB.Command.6.0\\CLSID] 1660099895
+#time=1d8ac641b16b29a
+@="{00000507-0000-0010-8000-00AA006D2EA4}"
+
+[Software\\Classes\\ADODB.Connection] 1660099895
+#time=1d8ac641b170e02
+@="Connection"
+
+[Software\\Classes\\ADODB.Connection\\CLSID] 1660099895
+#time=1d8ac641b170d4e
+@="{00000514-0000-0010-8000-00AA006D2EA4}"
+
+[Software\\Classes\\ADODB.Connection\\CurVer] 1660099895
+#time=1d8ac641b170e5c
+@="ADODB.Connection.6.0"
+
+[Software\\Classes\\ADODB.Connection.6.0] 1660099895
+#time=1d8ac641b170aba
+@="Connection"
+
+[Software\\Classes\\ADODB.Connection.6.0\\CLSID] 1660099895
+#time=1d8ac641b170b14
+@="{00000514-0000-0010-8000-00AA006D2EA4}"
+
+[Software\\Classes\\ADODB.Recordset] 1660099895
+#time=1d8ac641b17137a
+@="Recordset"
+
+[Software\\Classes\\ADODB.Recordset\\CLSID] 1660099895
+#time=1d8ac641b1712d0
+@="{00000535-0000-0010-8000-00AA006D2EA4}"
+
+[Software\\Classes\\ADODB.Recordset\\CurVer] 1660099895
+#time=1d8ac641b1713de
+@="ADODB.Recordset.6.0"
+
+[Software\\Classes\\ADODB.Recordset.6.0] 1660099895
+#time=1d8ac641b171046
+@="Recordset"
+
+[Software\\Classes\\ADODB.Recordset.6.0\\CLSID] 1660099895
+#time=1d8ac641b1710a0
+@="{00000535-0000-0010-8000-00AA006D2EA4}"
+
+[Software\\Classes\\ADODB.Stream] 1660099895
+#time=1d8ac641b1718f2
+@="Stream"
+
+[Software\\Classes\\ADODB.Stream\\CLSID] 1660099895
+#time=1d8ac641b171848
+@="{00000566-0000-0010-8000-00AA006D2EA4}"
+
+[Software\\Classes\\ADODB.Stream\\CurVer] 1660099895
+#time=1d8ac641b17194c
+@="ADODB.Stream.6.0"
+
+[Software\\Classes\\ADODB.Stream.6.0] 1660099895
+#time=1d8ac641b1715a0
+@="Stream"
+
+[Software\\Classes\\ADODB.Stream.6.0\\CLSID] 1660099895
+#time=1d8ac641b171604
+@="{00000566-0000-0010-8000-00AA006D2EA4}"
+
+[Software\\Classes\\ADSystemInfo] 1660099896
+#time=1d8ac641b2f066a
+@="AD System Info Object"
+
+[Software\\Classes\\ADSystemInfo\\CLSID] 1660099896
+#time=1d8ac641b2f06c4
+@="{50B6327F-AFD1-11D2-9CB9-0000F87A369E}"
+
+[Software\\Classes\\AppID\\BITS] 1660099896
+#time=1d8ac641bab75c4
+"AppID"="{69AD4AEE-51BE-439B-A92C-86AE490E8B30}"
+
+[Software\\Classes\\AppID\\{69AD4AEE-51BE-439B-A92C-86AE490E8B30}] 1660099896
+#time=1d8ac641bab748e
+"LocalService"="BITS"
+
+[Software\\Classes\\AppID\\{A1F4E726-8CF1-11D1-BF92-0060081ED811}] 1660099897
+#time=1d8ac641bd5bf3c
+@="WIA Device Manager"
+"LocalService"="stisvc"
+
+[Software\\Classes\\Applications\\iexplore.exe\\shell\\open\\command] 1660099897
+#time=1d8ac641c4a458c
+@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" %1"
+
+[Software\\Classes\\ATL.Registrar] 1660099896
+#time=1d8ac641b449002
+@="Registrar Class"
+
+[Software\\Classes\\ATL.Registrar\\CLSID] 1660099896
+#time=1d8ac641b449066
+@="{44EC053A-400F-11D0-9DCD-00A0C90391D3}"
+
+[Software\\Classes\\AudioVBScript] 1660099896
+#time=1d8ac641b616cc2
+@="DirectMusic Audio VB Script Language"
+
+[Software\\Classes\\AudioVBScript\\CLSID] 1660099896
+#time=1d8ac641b61692a
+@="{4EE17959-931E-49E4-A2C6-977ECF3628F3}"
+
+[Software\\Classes\\AudioVBScript\\CurVer] 1660099896
+#time=1d8ac641b616a88
+@="AudioVBScript.1"
+
+[Software\\Classes\\AudioVBScript\\DMScript] 1660099896
+#time=1d8ac641b616cc2
+
+[Software\\Classes\\AudioVBScript.1] 1660099896
+#time=1d8ac641b616e52
+@="DirectMusic Audio VB Script Language"
+
+[Software\\Classes\\AudioVBScript.1\\CLSID] 1660099896
+#time=1d8ac641b6166c8
+@="{4EE17959-931E-49E4-A2C6-977ECF3628F3}"
+
+[Software\\Classes\\AudioVBScript.1\\DMScript] 1660099896
+#time=1d8ac641b616e52
+
+[Software\\Classes\\AVIFile\\Compressors\\auds] 1660099896
+#time=1d8ac641b471a84
+@="{0002000F-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\AVIFile\\Compressors\\vids] 1660099896
+#time=1d8ac641b471b92
+@="{00020001-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\AVIFile\\Extensions\\AU] 1660099896
+#time=1d8ac641b471e08
+@="{00020003-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\AVIFile\\Extensions\\AVI] 1660099896
+#time=1d8ac641b471f20
+@="{00020000-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\AVIFile\\Extensions\\WAV] 1660099896
+#time=1d8ac641b475846
+@="{00020003-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\AVIFile\\RIFFHandlers\\AVI] 1660099896
+#time=1d8ac641b475de6
+@="{00020000-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\AVIFile\\RIFFHandlers\\WAVE] 1660099896
+#time=1d8ac641b475fee
+@="{00020003-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\BMPFilter.CoBMPFilter] 1660099896
+#time=1d8ac641b8ad346
+@="CoBMPFilter Class"
+
+[Software\\Classes\\BMPFilter.CoBMPFilter\\CLSID] 1660099896
+#time=1d8ac641b8ad0f8
+@="{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}"
+
+[Software\\Classes\\BMPFilter.CoBMPFilter\\CurVer] 1660099896
+#time=1d8ac641b8ad3b4
+@="BMPFilter.CoBMPFilter.1"
+
+[Software\\Classes\\BMPFilter.CoBMPFilter.1] 1660099896
+#time=1d8ac641b8ace6e
+@="CoBMPFilter Class"
+
+[Software\\Classes\\BMPFilter.CoBMPFilter.1\\CLSID] 1660099896
+#time=1d8ac641b8acedc
+@="{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}"
+
+[Software\\Classes\\chm.file] 1660099897
+#time=1d8ac641c4b85dc
+@="Compiled HTML Help File"
+
+[Software\\Classes\\chm.file\\DefaultIcon] 1660099897
+#time=1d8ac641c4b8474
+@="C:\\windows\\hh.exe,0"
+
+[Software\\Classes\\chm.file\\shell\\open\\command] 1660099897
+#time=1d8ac641c4b8870
+@="C:\\windows\\hh.exe %1"
+
+[Software\\Classes\\CLRMetaData.CLRRuntimeHost] 1660099896
+#time=1d8ac641b87aa5e
+@="Microsoft Common Language Runtime Host V2"
+
+[Software\\Classes\\CLRMetaData.CLRRuntimeHost\\CLSID] 1660099896
+#time=1d8ac641b87aeaa
+@="{90F1A06E-7712-4762-86B5-7A5EBA6BDB02}"
+
+[Software\\Classes\\CLRMetaData.CLRRuntimeHost\\CurVer] 1660099896
+#time=1d8ac641b87afa4
+@="CLRMetaData.CLRRuntimeHost.2"
+
+[Software\\Classes\\CLRMetaData.CLRRuntimeHost.1] 1660099896
+#time=1d8ac641b87a75c
+@="Microsoft Common Language Runtime Host V2"
+
+[Software\\Classes\\CLRMetaData.CLRRuntimeHost.1\\CLSID] 1660099896
+#time=1d8ac641b87a7b6
+@="{90F1A06E-7712-4762-86B5-7A5EBA6BDB01}"
+
+[Software\\Classes\\CLRMetaData.CLRRuntimeHost.2] 1660099896
+#time=1d8ac641b87ac66
+@="Microsoft Common Language Runtime Host V2"
+
+[Software\\Classes\\CLRMetaData.CLRRuntimeHost.2\\CLSID] 1660099896
+#time=1d8ac641b87acb6
+@="{90F1A06E-7712-4762-86B5-7A5EBA6BDB02}"
+
+[Software\\Classes\\CLRMetaData.CorMetaDataDispenser] 1660099896
+#time=1d8ac641b87b45e
+@="Microsoft Common Language Runtime Meta Data"
+
+[Software\\Classes\\CLRMetaData.CorMetaDataDispenser\\CLSID] 1660099896
+#time=1d8ac641b87b38c
+@="{E5CB7A31-7512-11D2-89CE-0080C792E5D8}"
+
+[Software\\Classes\\CLRMetaData.CorMetaDataDispenser\\CurVer] 1660099896
+#time=1d8ac641b87b4ae
+@="CLRMetaData.CorMetaDataDispenser.2"
+
+[Software\\Classes\\CLRMetaData.CorMetaDataDispenser.2] 1660099896
+#time=1d8ac641b87b148
+@="Microsoft Common Language Runtime Meta Data"
+
+[Software\\Classes\\CLRMetaData.CorMetaDataDispenser.2\\CLSID] 1660099896
+#time=1d8ac641b87b198
+@="{E5CB7A31-7512-11D2-89CE-0080C792E5D8}"
+
+[Software\\Classes\\CLRMetaData.CorMetaDataDispenserRuntime] 1660099896
+#time=1d8ac641b87baa8
+@="Microsoft Common Language Runtime Meta Data"
+
+[Software\\Classes\\CLRMetaData.CorMetaDataDispenserRuntime\\CLSID] 1660099896
+#time=1d8ac641b87b9fe
+@="{1EC2DE53-75CC-11D2-9775-00A0C9B4D50C}"
+
+[Software\\Classes\\CLRMetaData.CorMetaDataDispenserRuntime\\CurVer] 1660099896
+#time=1d8ac641b87baf8
+@="CLRMetaData.CorMetaDataDispenserRuntime.2"
+
+[Software\\Classes\\CLRMetaData.CorMetaDataDispenserRuntime.2] 1660099896
+#time=1d8ac641b87b65c
+@="Microsoft Common Language Runtime Meta Data"
+
+[Software\\Classes\\CLRMetaData.CorMetaDataDispenserRuntime.2\\CLSID] 1660099896
+#time=1d8ac641b87b77e
+@="{1EC2DE53-75CC-11D2-9775-00A0C9B4D50C}"
+
+[Software\\Classes\\CLRMetaData.CorRuntimeHost] 1660099896
+#time=1d8ac641b87bfbc
+@="Microsoft Common Language Runtime Host"
+
+[Software\\Classes\\CLRMetaData.CorRuntimeHost\\CLSID] 1660099896
+#time=1d8ac641b87bf12
+@="{CB2F6723-AB3A-11D2-9C40-00C04FA30A3E}"
+
+[Software\\Classes\\CLRMetaData.CorRuntimeHost\\CurVer] 1660099896
+#time=1d8ac641b87c016
+@="CLRMetaData.CorRuntimeHost.2"
+
+[Software\\Classes\\CLRMetaData.CorRuntimeHost.2] 1660099896
+#time=1d8ac641b87bcba
+@="Microsoft Common Language Runtime Host"
+
+[Software\\Classes\\CLRMetaData.CorRuntimeHost.2\\CLSID] 1660099896
+#time=1d8ac641b87bd14
+@="{CB2F6723-AB3A-11D2-9C40-00C04FA30A3E}"
+
+[Software\\Classes\\CLSID] 1660099897
+#time=1d8ac641c3386b2
+@="ClassMoniker"
+
+[Software\\Classes\\CLSID\\CLSID] 1660099896
+#time=1d8ac641ba17db2
+@="{0000031A-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\CLSID\\{0000002F-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba449d4
+@="CLSID_RecordInfo"
+
+[Software\\Classes\\CLSID\\{0000002F-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba44a9c
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000300-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba152f6
+@="StdOleLink"
+
+[Software\\Classes\\CLSID\\{00000300-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba153aa
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000301-A8F2-4877-BA0A-FD2B6645FB94}] 1660099897
+#time=1d8ac641bd8227c
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{00000301-A8F2-4877-BA0A-FD2B6645FB94}\\InprocServer32] 1660099897
+#time=1d8ac641bd8238a
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000303-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba156e8
+@="FileMoniker"
+
+[Software\\Classes\\CLSID\\{00000303-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba1563e
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000303-0000-0000-C000-000000000046}\\ProgId] 1660099896
+#time=1d8ac641ba15742
+@="file"
+
+[Software\\Classes\\CLSID\\{00000304-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba15904
+@="ItemMoniker"
+
+[Software\\Classes\\CLSID\\{00000304-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba159b8
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000305-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba15b7a
+@="AntiMoniker"
+
+[Software\\Classes\\CLSID\\{00000305-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba15c2e
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000306-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba15df0
+@="PointerMoniker"
+
+[Software\\Classes\\CLSID\\{00000306-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba15ec2
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000308-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba1607a
+@="PackagerMoniker"
+
+[Software\\Classes\\CLSID\\{00000308-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba1612e
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000309-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba162e6
+@="CompositeMoniker"
+
+[Software\\Classes\\CLSID\\{00000309-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba163a4
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{0000030B-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba1655c
+@="DfMarshal"
+
+[Software\\Classes\\CLSID\\{0000030B-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba1662e
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000315-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba16958
+@="Picture (Metafile)"
+
+[Software\\Classes\\CLSID\\{00000315-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba168a4
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000315-0000-0000-C000-000000000046}\\ProgId] 1660099896
+#time=1d8ac641ba169a8
+@="StaticMetafile"
+
+[Software\\Classes\\CLSID\\{00000316-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba16cbe
+@="Picture (Device Independent Bitmap)"
+
+[Software\\Classes\\CLSID\\{00000316-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba16c14
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000316-0000-0000-C000-000000000046}\\ProgId] 1660099896
+#time=1d8ac641ba16d18
+@="StaticDib"
+
+[Software\\Classes\\CLSID\\{0000031A-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba17024
+@="ClassMoniker"
+
+[Software\\Classes\\CLSID\\{0000031A-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba16f84
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{0000031A-0000-0000-C000-000000000046}\\ProgId] 1660099896
+#time=1d8ac641ba1707e
+@="CLSID"
+
+[Software\\Classes\\CLSID\\{00000320-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba0da74
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{00000320-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba0db32
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000507-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b169cc4
+@="Command"
+
+[Software\\Classes\\CLSID\\{00000507-0000-0010-8000-00AA006D2EA4}\\InprocServer32] 1660099895
+#time=1d8ac641b169b2a
+@="C:\\Program Files\\Common Files\\System\\ADO\\msado15.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{00000507-0000-0010-8000-00AA006D2EA4}\\ProgId] 1660099895
+#time=1d8ac641b169c24
+@="ADODB.Command.6.0"
+
+[Software\\Classes\\CLSID\\{00000507-0000-0010-8000-00AA006D2EA4}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b169d1e
+@="ADODB.Command"
+
+[Software\\Classes\\CLSID\\{00000514-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b16a17e
+@="Connection"
+
+[Software\\Classes\\CLSID\\{00000514-0000-0010-8000-00AA006D2EA4}\\InprocServer32] 1660099895
+#time=1d8ac641b169fbc
+@="C:\\Program Files\\Common Files\\System\\ADO\\msado15.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{00000514-0000-0010-8000-00AA006D2EA4}\\ProgId] 1660099895
+#time=1d8ac641b16a0c0
+@="ADODB.Connection.6.0"
+
+[Software\\Classes\\CLSID\\{00000514-0000-0010-8000-00AA006D2EA4}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b16a1e2
+@="ADODB.Connection"
+
+[Software\\Classes\\CLSID\\{00000535-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b16a926
+@="Recordset"
+
+[Software\\Classes\\CLSID\\{00000535-0000-0010-8000-00AA006D2EA4}\\InprocServer32] 1660099895
+#time=1d8ac641b16a728
+@="C:\\Program Files\\Common Files\\System\\ADO\\msado15.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000535-0000-0010-8000-00AA006D2EA4}\\ProgId] 1660099895
+#time=1d8ac641b16a84a
+@="ADODB.Recordset.6.0"
+
+[Software\\Classes\\CLSID\\{00000535-0000-0010-8000-00AA006D2EA4}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b16a9bc
+@="ADODB.Recordset"
+
+[Software\\Classes\\CLSID\\{00000566-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b16aed0
+@="Stream"
+
+[Software\\Classes\\CLSID\\{00000566-0000-0010-8000-00AA006D2EA4}\\InprocServer32] 1660099895
+#time=1d8ac641b16acf0
+@="C:\\Program Files\\Common Files\\System\\ADO\\msado15.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00000566-0000-0010-8000-00AA006D2EA4}\\ProgId] 1660099895
+#time=1d8ac641b16ae12
+@="ADODB.Stream.6.0"
+
+[Software\\Classes\\CLSID\\{00000566-0000-0010-8000-00AA006D2EA4}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b16af48
+@="ADODB.Stream"
+
+[Software\\Classes\\CLSID\\{00020000-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b470cba
+@="Microsoft AVI Files"
+
+[Software\\Classes\\CLSID\\{00020000-0000-0000-C000-000000000046}\\InprocServer] 1660099896
+#time=1d8ac641b470d1e
+@="avifile.dll"
+
+[Software\\Classes\\CLSID\\{00020000-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641b46fa68
+@="C:\\windows\\system32\\avifil32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00020001-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b4711c4
+@="AVI Compressed Stream"
+
+[Software\\Classes\\CLSID\\{00020001-0000-0000-C000-000000000046}\\InprocServer] 1660099896
+#time=1d8ac641b471228
+@="avifile.dll"
+
+[Software\\Classes\\CLSID\\{00020001-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641b46fd74
+@="C:\\windows\\system32\\avifil32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00020003-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b4713a4
+@="Microsoft Wave File"
+
+[Software\\Classes\\CLSID\\{00020003-0000-0000-C000-000000000046}\\InprocServer] 1660099896
+#time=1d8ac641b4713fe
+@="avifile.dll"
+
+[Software\\Classes\\CLSID\\{00020003-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641b47001c
+@="C:\\windows\\system32\\avifil32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{0002000D-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b471570
+@="IAVIStream & IAVIFile Proxy"
+
+[Software\\Classes\\CLSID\\{0002000D-0000-0000-C000-000000000046}\\InprocServer] 1660099896
+#time=1d8ac641b4715d4
+@="avifile.dll"
+
+[Software\\Classes\\CLSID\\{0002000D-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641b4702ba
+@="C:\\windows\\system32\\avifil32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{0002000F-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b47173c
+@="ACM Compressed Audio Stream"
+
+[Software\\Classes\\CLSID\\{0002000F-0000-0000-C000-000000000046}\\InprocServer] 1660099896
+#time=1d8ac641b4717a0
+@="avifile.dll"
+
+[Software\\Classes\\CLSID\\{0002000F-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641b4709fe
+@="C:\\windows\\system32\\avifil32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00020420-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba45942
+@="PSDispatch"
+
+[Software\\Classes\\CLSID\\{00020420-0000-0000-C000-000000000046}\\InprocServer] 1660099896
+#time=1d8ac641ba45b9a
+@="ole2disp.dll"
+
+[Software\\Classes\\CLSID\\{00020420-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba42b16
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00020421-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba45f82
+@="PSEnumVariant"
+
+[Software\\Classes\\CLSID\\{00020421-0000-0000-C000-000000000046}\\InprocServer] 1660099896
+#time=1d8ac641ba46004
+@="ole2disp.dll"
+
+[Software\\Classes\\CLSID\\{00020421-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba42db4
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00020422-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba46180
+@="PSTypeInfo"
+
+[Software\\Classes\\CLSID\\{00020422-0000-0000-C000-000000000046}\\InprocServer] 1660099896
+#time=1d8ac641ba461e4
+@="ole2disp.dll"
+
+[Software\\Classes\\CLSID\\{00020422-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba4307a
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00020423-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba46428
+@="PSTypeLib"
+
+[Software\\Classes\\CLSID\\{00020423-0000-0000-C000-000000000046}\\InprocServer] 1660099896
+#time=1d8ac641ba464e6
+@="ole2disp.dll"
+
+[Software\\Classes\\CLSID\\{00020423-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba434f8
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00020424-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba466ee
+@="PSOAInterface"
+
+[Software\\Classes\\CLSID\\{00020424-0000-0000-C000-000000000046}\\InprocServer] 1660099896
+#time=1d8ac641ba46752
+@="ole2disp.dll"
+
+[Software\\Classes\\CLSID\\{00020424-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba43c0a
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00020425-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba468ce
+@="PSTypeComp"
+
+[Software\\Classes\\CLSID\\{00020425-0000-0000-C000-000000000046}\\InprocServer] 1660099896
+#time=1d8ac641ba4696e
+@="ole2disp.dll"
+
+[Software\\Classes\\CLSID\\{00020425-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba440f6
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00021400-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641bbcdff8
+@="Desktop"
+"LocalizedString"="@C:\\windows\\system32\\shell32.dll,-20"
+
+[Software\\Classes\\CLSID\\{00021400-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641bbcb99c
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{00021401-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641bbce6e2
+@="Shortcut"
+
+[Software\\Classes\\CLSID\\{00021401-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641bbcbc80
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{00021401-0000-0000-C000-000000000046}\\shellex\\MayChangeDefaultMenu] 1660099896
+#time=1d8ac641bbce750
+
+[Software\\Classes\\CLSID\\{0002DF01-0000-0000-C000-000000000046}] 1660099897
+#time=1d8ac641c4a2854
+@="Internet Explorer(Ver 1.0)"
+
+[Software\\Classes\\CLSID\\{0002DF01-0000-0000-C000-000000000046}\\LocalServer32] 1660099897
+#time=1d8ac641c4a2c8c
+@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\""
+
+[Software\\Classes\\CLSID\\{0002DF01-0000-0000-C000-000000000046}\\ProgId] 1660099895
+#time=1d8ac641b0d8904
+@="InternetExplorer.Application.1"
+
+[Software\\Classes\\CLSID\\{0002DF01-0000-0000-C000-000000000046}\\TypeLib] 1660099895
+#time=1d8ac641b0d8a08
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+
+[Software\\Classes\\CLSID\\{0002DF01-0000-0000-C000-000000000046}\\Version] 1660099895
+#time=1d8ac641b0d8b2a
+@="1.1"
+
+[Software\\Classes\\CLSID\\{0002DF01-0000-0000-C000-000000000046}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0d8c42
+@="InternetExplorer.Application"
+
+[Software\\Classes\\CLSID\\{0002E005-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba17470
+@="Component Categories Manager"
+
+[Software\\Classes\\CLSID\\{0002E005-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641ba17524
+@="C:\\windows\\system32\\ole32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{0003000C-0000-0000-C000-000000000046}\\NotInsertable] 1660099896
+#time=1d8ac641ba74e9a
+
+[Software\\Classes\\CLSID\\{0003000C-0000-0000-C000-000000000046}\\TreatAs] 1660099896
+#time=1d8ac641ba74dd2
+@="{F20DA720-C02F-11CE-927B-0800095AE340}"
+
+[Software\\Classes\\CLSID\\{000C101C-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b9283ca
+@="Msi install server"
+
+[Software\\Classes\\CLSID\\{000C101C-0000-0000-C000-000000000046}\\ProgId] 1660099896
+#time=1d8ac641b928456
+@="IMsiServer"
+
+[Software\\Classes\\CLSID\\{000C101D-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b92a4c2
+@="Microsoft Windows Installer Message RPC"
+
+[Software\\Classes\\CLSID\\{000C101D-0000-0000-C000-000000000046}\\DllVersion] 1660099896
+#time=1d8ac641b92a51c
+@="4.5.6001"
+
+[Software\\Classes\\CLSID\\{000C101D-0000-0000-C000-000000000046}\\ProgId] 1660099896
+#time=1d8ac641b928744
+@="WindowsInstaller.Message"
+
+[Software\\Classes\\CLSID\\{000C103E-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b928974
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{000C103E-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641b928a6e
+@="C:\\windows\\system32\\msi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{000C1082-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b9294c8
+@="MsiTransform"
+
+[Software\\Classes\\CLSID\\{000C1084-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b9296b2
+@="MsiDatabase"
+
+[Software\\Classes\\CLSID\\{000C1086-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b929838
+@="MsiPatch"
+
+[Software\\Classes\\CLSID\\{000C1090-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b92abe8
+@="Microsoft Windows Installer"
+
+[Software\\Classes\\CLSID\\{000C1090-0000-0000-C000-000000000046}\\InProcHandler32] 1660099896
+#time=1d8ac641b92ac56
+@="ole32.dll"
+
+[Software\\Classes\\CLSID\\{000C1090-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641b928d2a
+@="C:\\windows\\system32\\msi.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{000C1090-0000-0000-C000-000000000046}\\ProgId] 1660099896
+#time=1d8ac641b92928e
+@="WindowsInstaller.Installer"
+
+[Software\\Classes\\CLSID\\{000C1090-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b92a6fc
+@="{000C1092-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\CLSID\\{000C1090-0000-0000-C000-000000000046}\\Version] 1660099896
+#time=1d8ac641b92ab02
+@="1.0"
+
+[Software\\Classes\\CLSID\\{000C1094-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b9299dc
+@="MsiServerX3"
+
+[Software\\Classes\\CLSID\\{000C1094-0000-0000-C000-000000000046}\\InprocServer32] 1660099896
+#time=1d8ac641b929ae0
+@="C:\\windows\\system32\\msi.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{00BB2763-6A77-11D0-A535-00C04FD7D062}] 1660099896
+#time=1d8ac641bbcb08c
+@="AutoComplete"
+
+[Software\\Classes\\CLSID\\{00BB2763-6A77-11D0-A535-00C04FD7D062}\\InprocServer32] 1660099896
+#time=1d8ac641bbcb14a
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{00BB2765-6A77-11D0-A535-00C04FD7D062}] 1660099896
+#time=1d8ac641b4812fe
+@="Multiple AutoComplete List Container"
+
+[Software\\Classes\\CLSID\\{00BB2765-6A77-11D0-A535-00C04FD7D062}\\InprocServer32] 1660099896
+#time=1d8ac641b4813da
+@="C:\\windows\\system32\\browseui.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}] 1660099897
+#time=1d8ac641c31c750
+@="WIC TIFF Encoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{163BCC30-E2E9-4F0B-961D-A3E9FDB788A3}"
+"FileExtensions"=".tif;.tiff"
+"FriendlyName"="TIFF Encoder"
+"MimeTypes"="image/tiff"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC901}] 1660099897
+#time=1d8ac641c31ca2a
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC903}] 1660099897
+#time=1d8ac641c31cb06
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c31cbd8
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC905}] 1660099897
+#time=1d8ac641c31c7c8
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC907}] 1660099897
+#time=1d8ac641c31c890
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}] 1660099897
+#time=1d8ac641c31c962
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c31ccb4
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c31cd86
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC910}] 1660099897
+#time=1d8ac641c31ce62
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC915}] 1660099897
+#time=1d8ac641c31cf2a
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC916}] 1660099897
+#time=1d8ac641c31cffc
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC917}] 1660099897
+#time=1d8ac641c31d0d8
+
+[Software\\Classes\\CLSID\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}\\InprocServer32] 1660099897
+#time=1d8ac641bd8693a
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{03022430-ABC4-11D0-BDE2-00AA001A1953}] 1660099896
+#time=1d8ac641ba320d6
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{03022430-ABC4-11D0-BDE2-00AA001A1953}\\InprocServer32] 1660099896
+#time=1d8ac641ba321b2
+@="C:\\windows\\system32\\oleacc.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{03C036F1-A186-11D0-824A-00AA005B4383}] 1660099896
+#time=1d8ac641b481b78
+@="Shell Folder AutoComplete List"
+
+[Software\\Classes\\CLSID\\{03C036F1-A186-11D0-824A-00AA005B4383}\\InprocServer32] 1660099896
+#time=1d8ac641b481c36
+@="C:\\windows\\system32\\browseui.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{05300401-BCBC-11D0-85E3-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79f940
+@="MHTML Asynchronous Pluggable Protocol Handler"
+
+[Software\\Classes\\CLSID\\{05300401-BCBC-11D0-85E3-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79fa30
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}\\Instance\\{1767B93A-B021-44EA-920F-863C11F4F768}] 1660099897
+#time=1d8ac641c32bf5c
+"CLSID"="{1767B93A-B021-44EA-920F-863C11F4F768}"
+
+[Software\\Classes\\CLSID\\{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}\\Instance\\{32557D3B-69DC-4F95-836E-F5972B2F6159}] 1660099897
+#time=1d8ac641c32c790
+"CLSID"="{32557D3B-69DC-4F95-836E-F5972B2F6159}"
+
+[Software\\Classes\\CLSID\\{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}\\Instance\\{3692CA39-E082-4350-9E1F-3704CB083CD5}] 1660099897
+#time=1d8ac641c321bf6
+"CLSID"="{3692CA39-E082-4350-9E1F-3704CB083CD5}"
+
+[Software\\Classes\\CLSID\\{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}\\Instance\\{41070793-59E4-479A-A1F7-954ADC2EF5FC}] 1660099897
+#time=1d8ac641c322f1a
+"CLSID"="{41070793-59E4-479A-A1F7-954ADC2EF5FC}"
+
+[Software\\Classes\\CLSID\\{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}\\Instance\\{4B59AFCC-B8C3-408A-B670-89E5FAB6FDA7}] 1660099897
+#time=1d8ac641c322560
+"CLSID"="{4B59AFCC-B8C3-408A-B670-89E5FAB6FDA7}"
+
+[Software\\Classes\\CLSID\\{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}\\Instance\\{699745C2-5066-4B82-A8E3-D40478DBEC8C}] 1660099897
+#time=1d8ac641c31ff7c
+"CLSID"="{699745C2-5066-4B82-A8E3-D40478DBEC8C}"
+
+[Software\\Classes\\CLSID\\{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}\\Instance\\{7447A267-0015-42C8-A8F1-FB3B94C68361}] 1660099897
+#time=1d8ac641c323bb8
+"CLSID"="{7447A267-0015-42C8-A8F1-FB3B94C68361}"
+
+[Software\\Classes\\CLSID\\{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}\\Instance\\{8F914656-9D0A-4EB2-9019-0BF96D8A9EE6}] 1660099897
+#time=1d8ac641c3205ee
+"CLSID"="{8F914656-9D0A-4EB2-9019-0BF96D8A9EE6}"
+
+[Software\\Classes\\CLSID\\{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}\\Instance\\{B92E345D-F52D-41F3-B562-081BC772E3B9}] 1660099897
+#time=1d8ac641c324554
+"CLSID"="{B92E345D-F52D-41F3-B562-081BC772E3B9}"
+
+[Software\\Classes\\CLSID\\{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}\\Instance\\{F90B5F36-367B-402A-9DD1-BC0FD59D8F62}] 1660099897
+#time=1d8ac641c32111a
+"CLSID"="{F90B5F36-367B-402A-9DD1-BC0FD59D8F62}"
+
+[Software\\Classes\\CLSID\\{05EC7C2B-F1E6-4961-AD46-E1CC810A87D2}] 1660099897
+#time=1d8ac641c331d44
+"Author"="The Wine Project"
+"BitLength"=dword:00000010
+"ChannelCount"=dword:00000004
+"FriendlyName"="16bpp BGRA5551"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000001
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{05EC7C2B-F1E6-4961-AD46-E1CC810A87D2}\\ChannelMasks] 1660099897
+#time=1d8ac641c331e98
+"0"=hex:1f,00
+"1"=hex:e0,03
+"2"=hex:00,7c
+"3"=hex:00,80
+
+[Software\\Classes\\CLSID\\{05F6FE1A-ECEF-11D0-AAE7-00C04FC9B304}] 1660099896
+#time=1d8ac641b8a95c0
+@="IntDitherer Class"
+
+[Software\\Classes\\CLSID\\{05F6FE1A-ECEF-11D0-AAE7-00C04FC9B304}\\InprocServer32] 1660099896
+#time=1d8ac641b8a9688
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{060AF76C-68DD-11D0-8FC1-00C04FD9189D}] 1660099896
+#time=1d8ac641bacf980
+@="Seeking"
+
+[Software\\Classes\\CLSID\\{060AF76C-68DD-11D0-8FC1-00C04FD9189D}\\InprocServer32] 1660099896
+#time=1d8ac641bacfa7a
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{06210E88-01F5-11D1-B512-0080C781C384}] 1660099895
+#time=1d8ac641b157efc
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{06210E88-01F5-11D1-B512-0080C781C384}\\InprocServer32] 1660099895
+#time=1d8ac641b157ff6
+@="C:\\Program Files\\Common Files\\System\\OLE DB\\msdaps.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{06290BD5-48AA-11D2-8432-006008C3FBFC}] 1660099896
+#time=1d8ac641bb4cbf6
+@="TypeLib"
+
+[Software\\Classes\\CLSID\\{06290BD5-48AA-11D2-8432-006008C3FBFC}\\InprocServer32] 1660099896
+#time=1d8ac641bb4c804
+@="C:\\windows\\system32\\scrobj.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{06290BD5-48AA-11D2-8432-006008C3FBFC}\\ProgId] 1660099896
+#time=1d8ac641bb4c98a
+@="Scriptlet.TypeLib"
+
+[Software\\Classes\\CLSID\\{06290BD5-48AA-11D2-8432-006008C3FBFC}\\TypeLib] 1660099896
+#time=1d8ac641bb4caf2
+@="{06290C00-48AA-11D2-8432-006008C3FBFC}"
+
+[Software\\Classes\\CLSID\\{06290BD5-48AA-11D2-8432-006008C3FBFC}\\Version] 1660099896
+#time=1d8ac641bb4ccc8
+@="1.0"
+
+[Software\\Classes\\CLSID\\{079AA557-4A18-424A-8EEE-E39F0A8D41B9}] 1660099895
+#time=1d8ac641b06e388
+@="SAX XML Reader"
+
+[Software\\Classes\\CLSID\\{079AA557-4A18-424A-8EEE-E39F0A8D41B9}\\InprocServer32] 1660099895
+#time=1d8ac641b06dfa0
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{079AA557-4A18-424A-8EEE-E39F0A8D41B9}\\ProgId] 1660099895
+#time=1d8ac641b06e0b8
+@="Msxml2.SAXXMLReader"
+
+[Software\\Classes\\CLSID\\{079AA557-4A18-424A-8EEE-E39F0A8D41B9}\\TypeLib] 1660099895
+#time=1d8ac641b06e1c6
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{079AA557-4A18-424A-8EEE-E39F0A8D41B9}\\Version] 1660099895
+#time=1d8ac641b06e2d4
+@="3.0"
+
+[Software\\Classes\\CLSID\\{079AA557-4A18-424A-8EEE-E39F0A8D41B9}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b06e3e2
+@="Msxml2.SAXXMLReader"
+
+[Software\\Classes\\CLSID\\{080D0D78-F421-11D0-A36E-00C04FB950DC}] 1660099896
+#time=1d8ac641b2ec4d4
+@="ADs LDAP Pathname Descriptor Object"
+
+[Software\\Classes\\CLSID\\{080D0D78-F421-11D0-A36E-00C04FB950DC}\\InprocServer32] 1660099896
+#time=1d8ac641b2ec42a
+@="C:\\windows\\system32\\activeds.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{080D0D78-F421-11D0-A36E-00C04FB950DC}\\ProgId] 1660099896
+#time=1d8ac641b2ec52e
+@="Pathname"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}] 1660099897
+#time=1d8ac641bfb571a
+@="ActiveMovie Filter Class Manager"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\InprocServer32] 1660099896
+#time=1d8ac641b5aabb2
+@="C:\\windows\\system32\\devenum.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{1B544C20-FD0B-11CE-8C63-00AA0044B51E}] 1660099897
+#time=1d8ac641c347f54
+"CLSID"="{1B544C20-FD0B-11CE-8C63-00AA0044B51E}"
+"FilterData"=hex:02,00,00,00,00,00,60,00,02,00,00,00,00,00,00,00,30,70,69,33,\
+  00,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,60,00,00,00,70,00,00,00,31,70,69,33,08,00,00,00,00,00,00,00,01,00,\
+  00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,00,00,00,80,00,00,00,90,00,00,\
+  00,83,eb,36,e4,4f,52,ce,11,9f,53,00,20,af,0b,a7,70,88,eb,36,e4,4f,52,ce,11,\
+  9f,53,00,20,af,0b,a7,70,76,69,64,73,00,00,10,00,80,00,00,aa,00,38,9b,71,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FriendlyName"="AVI Splitter"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{336475D0-942A-11CE-A870-00AA002FEAB5}] 1660099897
+#time=1d8ac641c349232
+"CLSID"="{336475D0-942A-11CE-A870-00AA002FEAB5}"
+"FilterData"=hex:02,00,00,00,00,00,60,00,03,00,00,00,00,00,00,00,30,70,69,33,\
+  00,00,00,00,00,00,00,00,04,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,d8,00,00,00,e8,00,00,00,31,74,79,33,00,00,00,00,d8,00,00,00,f8,00,\
+  00,00,32,74,79,33,00,00,00,00,d8,00,00,00,08,01,00,00,33,74,79,33,00,00,00,\
+  00,d8,00,00,00,18,01,00,00,31,70,69,33,09,00,00,00,00,00,00,00,02,00,00,00,\
+  00,00,00,00,00,00,00,00,30,74,79,33,00,00,00,00,28,01,00,00,38,01,00,00,31,\
+  74,79,33,00,00,00,00,28,01,00,00,48,01,00,00,32,70,69,33,09,00,00,00,00,00,\
+  00,00,02,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,00,00,00,58,01,00,\
+  00,38,01,00,00,31,74,79,33,00,00,00,00,58,01,00,00,68,01,00,00,83,eb,36,e4,\
+  4f,52,ce,11,9f,53,00,20,af,0b,a7,70,87,eb,36,e4,4f,52,ce,11,9f,53,00,20,af,\
+  0b,a7,70,86,eb,36,e4,4f,52,ce,11,9f,53,00,20,af,0b,a7,70,84,eb,36,e4,4f,52,\
+  ce,11,9f,53,00,20,af,0b,a7,70,85,eb,36,e4,4f,52,ce,11,9f,53,00,20,af,0b,a7,\
+  70,61,75,64,73,00,00,10,00,80,00,00,aa,00,38,9b,71,80,eb,36,e4,4f,52,ce,11,\
+  9f,53,00,20,af,0b,a7,70,50,00,00,00,00,00,10,00,80,00,00,aa,00,38,9b,71,76,\
+  69,64,73,00,00,10,00,80,00,00,aa,00,38,9b,71,81,eb,36,e4,4f,52,ce,11,9f,53,\
+  00,20,af,0b,a7,70
+"FriendlyName"="MPEG-I Stream Splitter"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{51B4ABF3-748F-4E3B-A276-C828330E926A}] 1660099897
+#time=1d8ac641bfb78b2
+"CLSID"="{51B4ABF3-748F-4E3B-A276-C828330E926A}"
+"FilterData"=hex:02,00,00,00,00,00,20,00,01,00,00,00,00,00,00,00,30,70,69,33,\
+  02,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,38,00,00,00,48,00,00,00,76,69,64,73,00,00,10,00,80,00,00,aa,00,38,\
+  9b,71,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FriendlyName"="Video Mixing Renderer 9"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{6A08CF80-0E18-11CF-A24D-0020AFD79767}] 1660099897
+#time=1d8ac641bfb9fcc
+"CLSID"="{6A08CF80-0E18-11CF-A24D-0020AFD79767}"
+"FilterData"=hex:02,00,00,00,f0,ff,5f,00,02,00,00,00,00,00,00,00,30,70,69,33,\
+  00,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,60,00,00,00,70,00,00,00,31,70,69,33,08,00,00,00,00,00,00,00,01,00,\
+  00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,00,00,00,60,00,00,00,70,00,00,\
+  00,61,75,64,73,00,00,10,00,80,00,00,aa,00,38,9b,71,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00
+"FriendlyName"="ACM Wrapper"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{6BC1CFFA-8FC1-4261-AC22-CFB4CC38DB50}] 1660099897
+#time=1d8ac641bfb6e80
+"CLSID"="{6BC1CFFA-8FC1-4261-AC22-CFB4CC38DB50}"
+"FilterData"=hex:02,00,00,00,01,00,80,00,01,00,00,00,00,00,00,00,30,70,69,33,\
+  02,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,38,00,00,00,48,00,00,00,76,69,64,73,00,00,10,00,80,00,00,aa,00,38,\
+  9b,71,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FriendlyName"="Video Renderer"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{70E102B0-5556-11CE-97C0-00AA0055595A}] 1660099897
+#time=1d8ac641bfb5cce
+"CLSID"="{70E102B0-5556-11CE-97C0-00AA0055595A}"
+"FilterData"=hex:02,00,00,00,00,00,80,00,01,00,00,00,00,00,00,00,30,70,69,33,\
+  02,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,38,00,00,00,48,00,00,00,76,69,64,73,00,00,10,00,80,00,00,aa,00,38,\
+  9b,71,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FriendlyName"="Video Renderer"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{8596E5F0-0DA5-11D0-BD21-00A0C911CE86}] 1660099897
+#time=1d8ac641c27712e
+"CLSID"="{8596E5F0-0DA5-11D0-BD21-00A0C911CE86}"
+"FilterData"=hex:02,00,00,00,00,00,20,00,01,00,00,00,00,00,00,00,30,70,69,33,\
+  00,00,00,00,01,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,38,00,00,00,38,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00
+"FriendlyName"="File writer"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{C1F400A0-3F08-11D3-9F0B-006008039E37}] 1660099897
+#time=1d8ac641c27c6e2
+"CLSID"="{C1F400A0-3F08-11D3-9F0B-006008039E37}"
+"FilterData"=hex:02,00,00,00,00,00,20,00,02,00,00,00,00,00,00,00,30,70,69,33,\
+  00,00,00,00,01,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,60,00,00,00,60,00,00,00,31,70,69,33,08,00,00,00,01,00,00,00,01,00,\
+  00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,00,00,00,60,00,00,00,60,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FriendlyName"="SampleGrabber"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{C1F400A4-3F08-11D3-9F0B-006008039E37}] 1660099897
+#time=1d8ac641c27d042
+"CLSID"="{C1F400A4-3F08-11D3-9F0B-006008039E37}"
+"FilterData"=hex:02,00,00,00,00,00,20,00,01,00,00,00,00,00,00,00,30,70,69,33,\
+  08,00,00,00,01,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,38,00,00,00,38,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00
+"FriendlyName"="Null Renderer"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{CC58E280-8AA1-11D1-B3F1-00AA003761C5}] 1660099897
+#time=1d8ac641c277b10
+"CLSID"="{CC58E280-8AA1-11D1-B3F1-00AA003761C5}"
+"FilterData"=hex:02,00,00,00,00,00,20,00,03,00,00,00,00,00,00,00,30,70,69,33,\
+  00,00,00,00,01,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,88,00,00,00,98,00,00,00,31,70,69,33,08,00,00,00,01,00,00,00,01,00,\
+  00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,00,00,00,88,00,00,00,98,00,00,\
+  00,32,70,69,33,08,00,00,00,01,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,\
+  30,74,79,33,00,00,00,00,88,00,00,00,98,00,00,00,76,69,64,73,00,00,10,00,80,\
+  00,00,aa,00,38,9b,71,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FriendlyName"="Smart Tee"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{CF49D4E0-1115-11CE-B03A-0020AF0BA770}] 1660099897
+#time=1d8ac641bfb829e
+"CLSID"="{CF49D4E0-1115-11CE-B03A-0020AF0BA770}"
+"FilterData"=hex:02,00,00,00,f0,ff,5f,00,02,00,00,00,00,00,00,00,30,70,69,33,\
+  00,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,60,00,00,00,70,00,00,00,31,70,69,33,08,00,00,00,00,00,00,00,01,00,\
+  00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,00,00,00,60,00,00,00,70,00,00,\
+  00,76,69,64,73,00,00,10,00,80,00,00,aa,00,38,9b,71,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00
+"FriendlyName"="AVI Decompressor"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{D51BD5A1-7548-11CF-A520-0080C77EF58A}] 1660099897
+#time=1d8ac641c349b74
+"CLSID"="{D51BD5A1-7548-11CF-A520-0080C77EF58A}"
+"FilterData"=hex:02,00,00,00,00,00,40,00,02,00,00,00,00,00,00,00,30,70,69,33,\
+  00,00,00,00,00,00,00,00,03,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,80,00,00,00,90,00,00,00,31,74,79,33,00,00,00,00,80,00,00,00,a0,00,\
+  00,00,32,74,79,33,00,00,00,00,80,00,00,00,b0,00,00,00,31,70,69,33,08,00,00,\
+  00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,00,00,00,\
+  c0,00,00,00,d0,00,00,00,83,eb,36,e4,4f,52,ce,11,9f,53,00,20,af,0b,a7,70,8b,\
+  eb,36,e4,4f,52,ce,11,9f,53,00,20,af,0b,a7,70,8c,eb,36,e4,4f,52,ce,11,9f,53,\
+  00,20,af,0b,a7,70,8d,eb,36,e4,4f,52,ce,11,9f,53,00,20,af,0b,a7,70,61,75,64,\
+  73,00,00,10,00,80,00,00,aa,00,38,9b,71,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00
+"FriendlyName"="Wave Parser"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{E2510970-F137-11CE-8B67-00AA00A3F1A6}] 1660099897
+#time=1d8ac641c276792
+"CLSID"="{E2510970-F137-11CE-8B67-00AA00A3F1A6}"
+"FilterData"=hex:02,00,00,00,00,00,20,00,01,00,00,00,00,00,00,00,30,70,69,33,\
+  00,00,00,00,01,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,38,00,00,00,48,00,00,00,83,eb,36,e4,4f,52,ce,11,9f,53,00,20,af,0b,\
+  a7,70,88,eb,36,e4,4f,52,ce,11,9f,53,00,20,af,0b,a7,70
+"FriendlyName"="AVI Mux"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{E436EBB5-524F-11CE-9F53-0020AF0BA770}] 1660099897
+#time=1d8ac641bfb8da2
+"CLSID"="{E436EBB5-524F-11CE-9F53-0020AF0BA770}"
+"FilterData"=hex:02,00,00,00,00,00,40,00,01,00,00,00,00,00,00,00,30,70,69,33,\
+  08,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,38,00,00,00,48,00,00,00,83,eb,36,e4,4f,52,ce,11,9f,53,00,20,af,0b,\
+  a7,70,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FriendlyName"="File Source (Async.)"
+
+[Software\\Classes\\CLSID\\{083863F1-70DE-11D0-BD40-00A0C911CE86}\\Instance\\{F9D8D64E-A144-47DC-8EE0-F53498372C29}] 1660099897
+#time=1d8ac641c3488b4
+"CLSID"="{F9D8D64E-A144-47DC-8EE0-F53498372C29}"
+"FilterData"=hex:02,00,00,00,00,00,80,00,03,00,00,00,00,00,00,00,30,70,69,33,\
+  00,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,\
+  00,00,00,88,00,00,00,98,00,00,00,31,70,69,33,08,00,00,00,00,00,00,00,01,00,\
+  00,00,00,00,00,00,00,00,00,00,30,74,79,33,00,00,00,00,a8,00,00,00,98,00,00,\
+  00,32,70,69,33,08,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,\
+  30,74,79,33,00,00,00,00,b8,00,00,00,98,00,00,00,83,eb,36,e4,4f,52,ce,11,9f,\
+  53,00,20,af,0b,a7,70,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,61,75,\
+  64,73,00,00,10,00,80,00,00,aa,00,38,9b,71,76,69,64,73,00,00,10,00,80,00,00,\
+  aa,00,38,9b,71
+"FriendlyName"="GStreamer splitter filter"
+
+[Software\\Classes\\CLSID\\{08FED191-BE19-11D3-A28B-00104BD35090}] 1660099897
+#time=1d8ac641be87d66
+@="WshExec"
+
+[Software\\Classes\\CLSID\\{08FED191-BE19-11D3-A28B-00104BD35090}\\InprocServer32] 1660099897
+#time=1d8ac641be87a6e
+@="C:\\windows\\system32\\wshom.ocx"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{08FED191-BE19-11D3-A28B-00104BD35090}\\TypeLib] 1660099897
+#time=1d8ac641be87cb2
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+
+[Software\\Classes\\CLSID\\{08FED191-BE19-11D3-A28B-00104BD35090}\\Version] 1660099897
+#time=1d8ac641be87dc0
+@="1.0"
+
+[Software\\Classes\\CLSID\\{093FF999-1EA0-4079-9525-9614C3504B74}] 1660099897
+#time=1d8ac641be8a142
+@="Windows Script Host Network Object"
+
+[Software\\Classes\\CLSID\\{093FF999-1EA0-4079-9525-9614C3504B74}\\Implemented Categories\\{40fc6ed5-2438-11cf-a3db-080036f12502}] 1660099897
+#time=1d8ac641be8a1ce
+
+[Software\\Classes\\CLSID\\{093FF999-1EA0-4079-9525-9614C3504B74}\\InprocServer32] 1660099897
+#time=1d8ac641be87118
+@="C:\\windows\\system32\\wshom.ocx"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{093FF999-1EA0-4079-9525-9614C3504B74}\\ProgId] 1660099897
+#time=1d8ac641be8723a
+@="WScript.Network.1"
+
+[Software\\Classes\\CLSID\\{093FF999-1EA0-4079-9525-9614C3504B74}\\TypeLib] 1660099897
+#time=1d8ac641be87348
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+
+[Software\\Classes\\CLSID\\{093FF999-1EA0-4079-9525-9614C3504B74}\\Version] 1660099897
+#time=1d8ac641be874a6
+@="1.0"
+
+[Software\\Classes\\CLSID\\{093FF999-1EA0-4079-9525-9614C3504B74}\\VersionIndependentProgId] 1660099897
+#time=1d8ac641be875c8
+@="WScript.Network"
+
+[Software\\Classes\\CLSID\\{0AFACED1-E828-11D1-9187-B532F1E9575D}] 1660099897
+#time=1d8ac641bf24f8a
+@="FolderShortcut"
+
+[Software\\Classes\\CLSID\\{0AFACED1-E828-11D1-9187-B532F1E9575D}\\InprocServer32] 1660099896
+#time=1d8ac641bbcc1d0
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{0AFACED1-E828-11D1-9187-B532F1E9575D}\\ShellFolder] 1660099897
+#time=1d8ac641bf2505c
+"Attributes"=dword:60010000
+"CallForAttributes"=dword:f0000000
+
+[Software\\Classes\\CLSID\\{0BE35203-8F91-11CE-9DE3-00AA004BB851}] 1660099896
+#time=1d8ac641ba42080
+@="Standard Font"
+
+[Software\\Classes\\CLSID\\{0BE35203-8F91-11CE-9DE3-00AA004BB851}\\InprocServer32] 1660099896
+#time=1d8ac641ba41fcc
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{0BE35203-8F91-11CE-9DE3-00AA004BB851}\\ProgId] 1660099896
+#time=1d8ac641ba420e4
+@="StdFont"
+
+[Software\\Classes\\CLSID\\{0BE35204-8F91-11CE-9DE3-00AA004BB851}] 1660099896
+#time=1d8ac641ba4280a
+@="Standard Picture"
+
+[Software\\Classes\\CLSID\\{0BE35204-8F91-11CE-9DE3-00AA004BB851}\\InprocServer32] 1660099896
+#time=1d8ac641ba42756
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{0BE35204-8F91-11CE-9DE3-00AA004BB851}\\ProgId] 1660099896
+#time=1d8ac641ba4286e
+@="StdPicture"
+
+[Software\\Classes\\CLSID\\{0CA545C6-37AD-4A6C-BF92-9F7610067EF5}] 1660099896
+#time=1d8ac641b760cb8
+@="HNetCfg.FwOpenPort"
+
+[Software\\Classes\\CLSID\\{0CA545C6-37AD-4A6C-BF92-9F7610067EF5}\\InprocServer32] 1660099896
+#time=1d8ac641b760bf0
+@="C:\\windows\\system32\\hnetcfg.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{0CA545C6-37AD-4A6C-BF92-9F7610067EF5}\\ProgId] 1660099896
+#time=1d8ac641b760d26
+@="HNetCfg.FwOpenPort"
+
+[Software\\Classes\\CLSID\\{0D43FE01-F093-11CF-8940-00A0C9054228}] 1660099896
+#time=1d8ac641bb57e8e
+@="FileSystem Object"
+
+[Software\\Classes\\CLSID\\{0D43FE01-F093-11CF-8940-00A0C9054228}\\InprocServer32] 1660099896
+#time=1d8ac641bb57b78
+@="C:\\windows\\system32\\scrrun.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{0D43FE01-F093-11CF-8940-00A0C9054228}\\ProgId] 1660099896
+#time=1d8ac641bb57ca4
+@="Scripting.FileSystemObject"
+
+[Software\\Classes\\CLSID\\{0D43FE01-F093-11CF-8940-00A0C9054228}\\TypeLib] 1660099896
+#time=1d8ac641bb57dd0
+@="{420B2830-E718-11CF-893D-00A0C9054228}"
+
+[Software\\Classes\\CLSID\\{0D43FE01-F093-11CF-8940-00A0C9054228}\\Version] 1660099896
+#time=1d8ac641bb57efc
+@="1.0"
+
+[Software\\Classes\\CLSID\\{0DF2C7EC-3435-11D0-81D0-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79edec
+@="CLSID_ISMTPTransport2"
+
+[Software\\Classes\\CLSID\\{0DF2C7EC-3435-11D0-81D0-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79eedc
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}] 1660099896
+#time=1d8ac641b959966
+@="ScriptControl Object"
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\Control] 1660099896
+#time=1d8ac641b9598bc
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\Implemented Categories\\{0de86a52-2baa-11cf-a229-00aa003d7352}] 1660099896
+#time=1d8ac641b959510
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\Implemented Categories\\{0de86a53-2baa-11cf-a229-00aa003d7352}] 1660099896
+#time=1d8ac641b9595ba
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\Implemented Categories\\{0de86a57-2baa-11cf-a229-00aa003d7352}] 1660099896
+#time=1d8ac641b959678
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\Implemented Categories\\{40fc6ed4-2438-11cf-a3db-080036f12502}] 1660099896
+#time=1d8ac641b959722
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\Implemented Categories\\{40fc6ed5-2438-11cf-a3db-080036f12502}] 1660099896
+#time=1d8ac641b9597c2
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\InprocServer32] 1660099896
+#time=1d8ac641b9587d2
+@="C:\\windows\\system32\\msscript.ocx"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\MiscStatus] 1660099896
+#time=1d8ac641b959a1a
+@="0"
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\MiscStatus\\1] 1660099896
+#time=1d8ac641b959a74
+@="132499"
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\ProgId] 1660099896
+#time=1d8ac641b9588d6
+@="MSScriptControl.ScriptControl.1"
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\TypeLib] 1660099896
+#time=1d8ac641b958aac
+@="{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}"
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\Version] 1660099896
+#time=1d8ac641b958ba6
+@="1.0"
+
+[Software\\Classes\\CLSID\\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b958cdc
+@="MSScriptControl.ScriptControl"
+
+[Software\\Classes\\CLSID\\{0F0F094B-B01C-4091-A14D-DD0CD807711A}] 1660099896
+#time=1d8ac641b65503a
+@="DirectPlayVoice Test Object"
+
+[Software\\Classes\\CLSID\\{0F0F094B-B01C-4091-A14D-DD0CD807711A}\\InprocServer32] 1660099896
+#time=1d8ac641b654dd8
+@="C:\\windows\\system32\\dpvoice.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{0F0F094B-B01C-4091-A14D-DD0CD807711A}\\ProgId] 1660099896
+#time=1d8ac641b654f04
+@="DirectPlayVoice.Test.1"
+
+[Software\\Classes\\CLSID\\{0F0F094B-B01C-4091-A14D-DD0CD807711A}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b6550a8
+@="DirectPlayVoice.Test"
+
+[Software\\Classes\\CLSID\\{0F7434B6-59B6-4250-999E-D168D6AE4293}] 1660099897
+#time=1d8ac641bc9f2b0
+@="UIRibbonImageFromBitmapFactory"
+
+[Software\\Classes\\CLSID\\{0F7434B6-59B6-4250-999E-D168D6AE4293}\\InprocServer32] 1660099897
+#time=1d8ac641bc9f3fa
+@="C:\\windows\\system32\\uiribbon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{0F87369F-A4E5-4CFC-BD3E-73E6154572DD}] 1660099897
+#time=1d8ac641bc72a12
+@="TaskScheduler"
+
+[Software\\Classes\\CLSID\\{0F87369F-A4E5-4CFC-BD3E-73E6154572DD}\\InprocServer32] 1660099897
+#time=1d8ac641bc7215c
+@="C:\\windows\\system32\\taskschd.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{0F87369F-A4E5-4CFC-BD3E-73E6154572DD}\\ProgId] 1660099897
+#time=1d8ac641bc72314
+@="Schedule.Service.1"
+
+[Software\\Classes\\CLSID\\{0F87369F-A4E5-4CFC-BD3E-73E6154572DD}\\TypeLib] 1660099897
+#time=1d8ac641bc726ac
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+
+[Software\\Classes\\CLSID\\{0F87369F-A4E5-4CFC-BD3E-73E6154572DD}\\Version] 1660099897
+#time=1d8ac641bc7294a
+@="1.0"
+
+[Software\\Classes\\CLSID\\{0F87369F-A4E5-4CFC-BD3E-73E6154572DD}\\VersionIndependentProgId] 1660099897
+#time=1d8ac641bc72a76
+@="Schedule.Service"
+
+[Software\\Classes\\CLSID\\{10E2414A-EC59-49D2-BC51-5ADD2C36FEBC}] 1660099896
+#time=1d8ac641b5df9a2
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{10E2414A-EC59-49D2-BC51-5ADD2C36FEBC}\\InprocServer32] 1660099896
+#time=1d8ac641b5dfb64
+@="C:\\windows\\system32\\dispex.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{114F5598-0B22-40A0-86A1-C83EA495ADBD}] 1660099897
+#time=1d8ac641c31a7de
+@="WIC GIF Encoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{1F8A5601-7D4D-4CBD-9C82-1BC8D4EEB9A5}"
+"FileExtensions"=".gif"
+"FriendlyName"="GIF Encoder"
+"MimeTypes"="image/gif"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{114F5598-0B22-40A0-86A1-C83EA495ADBD}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c31a84c
+
+[Software\\Classes\\CLSID\\{114F5598-0B22-40A0-86A1-C83EA495ADBD}\\InprocServer32] 1660099897
+#time=1d8ac641bd856e8
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{120CED89-3BF4-4173-A132-3CB406CF3231}] 1660099896
+#time=1d8ac641b663ffe
+@="DirectSoundParamEqDMO"
+
+[Software\\Classes\\CLSID\\{120CED89-3BF4-4173-A132-3CB406CF3231}\\InprocServer32] 1660099896
+#time=1d8ac641b663c66
+@="C:\\windows\\system32\\dsdmo.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{120CED89-3BF4-4173-A132-3CB406CF3231}\\ProgId] 1660099896
+#time=1d8ac641b663f40
+@="Microsoft.DirectSoundParamEqDMO.1"
+
+[Software\\Classes\\CLSID\\{120CED89-3BF4-4173-A132-3CB406CF3231}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b664062
+@="Microsoft.DirectSoundParamEqDMO"
+
+[Software\\Classes\\CLSID\\{13709620-C279-11CE-A49E-444553540000}] 1660099896
+#time=1d8ac641bbc9368
+@="Shell Automation Service"
+
+[Software\\Classes\\CLSID\\{13709620-C279-11CE-A49E-444553540000}\\InprocServer32] 1660099896
+#time=1d8ac641bbc8e7c
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{13709620-C279-11CE-A49E-444553540000}\\ProgId] 1660099896
+#time=1d8ac641bbc92a0
+@="Shell.Application.1"
+
+[Software\\Classes\\CLSID\\{13709620-C279-11CE-A49E-444553540000}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641bbc9462
+@="Shell.Application"
+
+[Software\\Classes\\CLSID\\{148BD520-A2AB-11CE-B11F-00AA00530503}] 1660099896
+#time=1d8ac641b9625ca
+@="CTask"
+
+[Software\\Classes\\CLSID\\{148BD520-A2AB-11CE-B11F-00AA00530503}\\InprocServer32] 1660099896
+#time=1d8ac641b96269c
+@="C:\\windows\\system32\\mstask.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{148BD52A-A2AB-11CE-B11F-00AA00530503}] 1660099896
+#time=1d8ac641b962318
+@="CTaskScheduler"
+
+[Software\\Classes\\CLSID\\{148BD52A-A2AB-11CE-B11F-00AA00530503}\\InprocServer32] 1660099896
+#time=1d8ac641b9623e0
+@="C:\\windows\\system32\\mstask.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{172BDDF8-CEEA-11D1-8B05-00600806D9B6}] 1660099895
+#time=1d8ac641b105800
+@="WinMGMTS"
+
+[Software\\Classes\\CLSID\\{172BDDF8-CEEA-11D1-8B05-00600806D9B6}\\InprocServer32] 1660099895
+#time=1d8ac641b105666
+@="C:\\windows\\system32\\wbem\\wbemdisp.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{172BDDF8-CEEA-11D1-8B05-00600806D9B6}\\ProgId] 1660099895
+#time=1d8ac641b105756
+@="WINMGMTS.1"
+
+[Software\\Classes\\CLSID\\{172BDDF8-CEEA-11D1-8B05-00600806D9B6}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b10585a
+@="WINMGMTS"
+
+[Software\\Classes\\CLSID\\{1767B93A-B021-44EA-920F-863C11F4F768}] 1660099897
+#time=1d8ac641c32c362
+@="WIC Application Extension Reader"
+"Author"="The Wine Project"
+"FriendlyName"="Application Extension Reader"
+"MetadataFormat"="{2E043DC2-C967-4E05-875E-618BF67E85C3}"
+"RequiresFullStream"=dword:00000000
+"SpecVersion"="1.0.0.0"
+"SupportsPadding"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{1767B93A-B021-44EA-920F-863C11F4F768}\\Containers\\{1F8A5601-7D4D-4CBD-9C82-1BC8D4EEB9A5}\\0] 1660099897
+#time=1d8ac641c32c524
+"Mask"=hex:ff,ff,ff
+"Pattern"=hex:21,ff,0b
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{1767B93A-B021-44EA-920F-863C11F4F768}\\InprocServer32] 1660099897
+#time=1d8ac641bd8d406
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{17D6CCD8-3B7B-11D2-B9E0-00C04FD8DBF7}] 1660099896
+#time=1d8ac641b9ec324
+@="DsObjectPicker"
+
+[Software\\Classes\\CLSID\\{17D6CCD8-3B7B-11D2-B9E0-00C04FD8DBF7}\\InprocServer32] 1660099896
+#time=1d8ac641b9ec3f6
+@="C:\\windows\\system32\\objsel.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{187463A0-5BB7-11D3-ACBE-0080C75E246E}] 1660099896
+#time=1d8ac641baa6f62
+@="WM ASF Reader"
+
+[Software\\Classes\\CLSID\\{187463A0-5BB7-11D3-ACBE-0080C75E246E}\\InprocServer32] 1660099896
+#time=1d8ac641baa705c
+@="C:\\windows\\system32\\qasf.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{18845040-0FA5-11D1-BA19-00C04FD912D0}] 1660099896
+#time=1d8ac641b8a92f0
+@="Microsoft HTML Load Options"
+
+[Software\\Classes\\CLSID\\{18845040-0FA5-11D1-BA19-00C04FD912D0}\\InprocServer32] 1660099896
+#time=1d8ac641b8a93c2
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{1A34F5C1-4A5A-46DC-B644-1F4567E7A676}] 1660099897
+#time=1d8ac641c31adc4
+@="WIC JPEG Encoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{19E4A5AA-5662-4FC5-A0C0-1758028E1057}"
+"FileExtensions"=".jpg;.jpeg;.jfif"
+"FriendlyName"="JPEG Encoder"
+"MimeTypes"="image/jpeg"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{1A34F5C1-4A5A-46DC-B644-1F4567E7A676}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}] 1660099897
+#time=1d8ac641c31afae
+
+[Software\\Classes\\CLSID\\{1A34F5C1-4A5A-46DC-B644-1F4567E7A676}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c31ae3c
+
+[Software\\Classes\\CLSID\\{1A34F5C1-4A5A-46DC-B644-1F4567E7A676}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC91C}] 1660099897
+#time=1d8ac641c31aef0
+
+[Software\\Classes\\CLSID\\{1A34F5C1-4A5A-46DC-B644-1F4567E7A676}\\InprocServer32] 1660099897
+#time=1d8ac641bd861f6
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}] 1660099897
+#time=1d8ac641c31e28a
+@="WIC Default Format Converter"
+"Author"="The Wine Project"
+"FriendlyName"="Default Pixel Format Converter"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\InprocServer32] 1660099897
+#time=1d8ac641bd88564
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{05EC7C2B-F1E6-4961-AD46-E1CC810A87D2}] 1660099897
+#time=1d8ac641c31eee2
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{3CC4A650-A527-4D37-A916-3142C7EBEDBA}] 1660099897
+#time=1d8ac641c31f66c
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC901}] 1660099897
+#time=1d8ac641c31e320
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC902}] 1660099897
+#time=1d8ac641c31e44c
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC903}] 1660099897
+#time=1d8ac641c31e578
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c31e730
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC905}] 1660099897
+#time=1d8ac641c31e848
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC906}] 1660099897
+#time=1d8ac641c31e938
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC907}] 1660099897
+#time=1d8ac641c31ea14
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}] 1660099897
+#time=1d8ac641c31eafa
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC909}] 1660099897
+#time=1d8ac641c31ecf8
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90A}] 1660099897
+#time=1d8ac641c31edfc
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90B}] 1660099897
+#time=1d8ac641c31ebfe
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c31efd2
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90D}] 1660099897
+#time=1d8ac641c31f0b8
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90E}] 1660099897
+#time=1d8ac641c31f19e
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c31f374
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC910}] 1660099897
+#time=1d8ac641c31f554
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC911}] 1660099897
+#time=1d8ac641c31f752
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC915}] 1660099897
+#time=1d8ac641c31f856
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC916}] 1660099897
+#time=1d8ac641c31f93c
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{6FDDC324-4E03-4BFE-B185-3D77768DC91C}] 1660099897
+#time=1d8ac641c31fa2c
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{D98C6B95-3EFE-47D6-BB25-EB1748AB0CF1}] 1660099897
+#time=1d8ac641c31f27a
+
+[Software\\Classes\\CLSID\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}\\PixelFormats\\{F5C7AD2D-6A8D-43DD-A7A8-A29935261AE9}] 1660099897
+#time=1d8ac641c31f464
+
+[Software\\Classes\\CLSID\\{1AB4A8C0-6A0B-11D2-AD49-00C04FA31A86}] 1660099896
+#time=1d8ac641b67359e
+@="DisplaySpecifier"
+
+[Software\\Classes\\CLSID\\{1AB4A8C0-6A0B-11D2-AD49-00C04FA31A86}\\InprocServer32] 1660099896
+#time=1d8ac641b67374c
+@="C:\\windows\\system32\\dsuiext.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{1B544C20-FD0B-11CE-8C63-00AA0044B51E}] 1660099897
+#time=1d8ac641bdb8d18
+@="AVI Splitter"
+
+[Software\\Classes\\CLSID\\{1B544C20-FD0B-11CE-8C63-00AA0044B51E}\\InprocServer32] 1660099897
+#time=1d8ac641bdb8dea
+@="C:\\windows\\system32\\winegstreamer.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{1B544C22-FD0B-11CE-8C63-00AA0044B51E}] 1660099896
+#time=1d8ac641baac8c2
+@="VFW Capture Filter"
+
+[Software\\Classes\\CLSID\\{1B544C22-FD0B-11CE-8C63-00AA0044B51E}\\InprocServer32] 1660099896
+#time=1d8ac641baac9bc
+@="C:\\windows\\system32\\qcap.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{1CEBDE3E-6B91-484A-AF48-5E4F4ED6B1E1}] 1660099896
+#time=1d8ac641b61133a
+@="DirectMusic Script AutoImp AudioPathConfig"
+
+[Software\\Classes\\CLSID\\{1CEBDE3E-6B91-484A-AF48-5E4F4ED6B1E1}\\InprocServer32] 1660099896
+#time=1d8ac641b611150
+@="C:\\windows\\system32\\dmscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{1CEBDE3E-6B91-484A-AF48-5E4F4ED6B1E1}\\ProgId] 1660099896
+#time=1d8ac641b61127c
+@="Microsoft.DirectMusicScriptAutoImpAudioPathConfig.1"
+
+[Software\\Classes\\CLSID\\{1CEBDE3E-6B91-484A-AF48-5E4F4ED6B1E1}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b61139e
+@="Microsoft.DirectMusicScriptAutoImpAudioPathConfig"
+
+[Software\\Classes\\CLSID\\{1D6322AD-AA85-4EF5-A828-86D71067D145}] 1660099897
+#time=1d8ac641bc983fc
+@="UIAnimationTransitionLibrary"
+
+[Software\\Classes\\CLSID\\{1D6322AD-AA85-4EF5-A828-86D71067D145}\\InprocServer32] 1660099897
+#time=1d8ac641bc984c4
+@="C:\\windows\\system32\\uianimation.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{1E651CC0-B199-11D0-8212-00C04FC32C45}] 1660099896
+#time=1d8ac641bacf5a2
+@="Memory Allocator"
+
+[Software\\Classes\\CLSID\\{1E651CC0-B199-11D0-8212-00C04FC32C45}\\InprocServer32] 1660099896
+#time=1d8ac641bacf6a6
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{1EC2DE53-75CC-11D2-9775-00A0C9B4D50C}] 1660099896
+#time=1d8ac641b879f1e
+@="Microsoft Common Language Runtime Meta Data"
+
+[Software\\Classes\\CLSID\\{1EC2DE53-75CC-11D2-9775-00A0C9B4D50C}\\InprocServer32] 1660099896
+#time=1d8ac641b879d84
+@="C:\\windows\\system32\\mscoree.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{1EC2DE53-75CC-11D2-9775-00A0C9B4D50C}\\ProgId] 1660099896
+#time=1d8ac641b879e7e
+@="CLRMetaData.CorMetaDataDispenserRuntime.2"
+
+[Software\\Classes\\CLSID\\{1EC2DE53-75CC-11D2-9775-00A0C9B4D50C}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b879f78
+@="CLRMetaData.CorMetaDataDispenserRuntime"
+
+[Software\\Classes\\CLSID\\{2048EEE6-7FA2-11D0-9E6A-00A0C9138C29}] 1660099895
+#time=1d8ac641b14bfd0
+@="OLE DB Row Position Library"
+
+[Software\\Classes\\CLSID\\{2048EEE6-7FA2-11D0-9E6A-00A0C9138C29}\\InprocServer32] 1660099895
+#time=1d8ac641b14bddc
+@="C:\\Program Files\\Common Files\\System\\OLE DB\\oledb32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{2048EEE6-7FA2-11D0-9E6A-00A0C9138C29}\\ProgId] 1660099895
+#time=1d8ac641b14bf08
+@="RowPosition.RowPosition.1"
+
+[Software\\Classes\\CLSID\\{2048EEE6-7FA2-11D0-9E6A-00A0C9138C29}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b14c034
+@="RowPosition.RowPosition"
+
+[Software\\Classes\\CLSID\\{2087C2F4-2CEF-4953-A8AB-66779B670495}] 1660099897
+#time=1d8ac641bdf13fc
+@="WinHttpRequest Component version 5.1"
+
+[Software\\Classes\\CLSID\\{2087C2F4-2CEF-4953-A8AB-66779B670495}\\InprocServer32] 1660099897
+#time=1d8ac641bdf1118
+@="C:\\windows\\system32\\winhttp.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{2087C2F4-2CEF-4953-A8AB-66779B670495}\\ProgId] 1660099897
+#time=1d8ac641bdf1230
+@="WinHttp.WinHttpRequest.5.1"
+
+[Software\\Classes\\CLSID\\{2087C2F4-2CEF-4953-A8AB-66779B670495}\\TypeLib] 1660099897
+#time=1d8ac641bdf133e
+@="{662901FC-6951-4854-9EB2-D9A2570F2B2E}"
+
+[Software\\Classes\\CLSID\\{2087C2F4-2CEF-4953-A8AB-66779B670495}\\Version] 1660099897
+#time=1d8ac641bdf1460
+@="5.1"
+
+[Software\\Classes\\CLSID\\{208D2C60-3AEA-1069-A2D7-08002B30309D}] 1660099896
+#time=1d8ac641bbcb622
+@="My Network Places"
+
+[Software\\Classes\\CLSID\\{208D2C60-3AEA-1069-A2D7-08002B30309D}\\InprocServer32] 1660099896
+#time=1d8ac641bbcb6ea
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}] 1660099896
+#time=1d8ac641bbce12e
+@="My Computer"
+"LocalizedString"="@C:\\windows\\system32\\shell32.dll,-21"
+
+[Software\\Classes\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\InprocServer32] 1660099896
+#time=1d8ac641bbcbf28
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{21EC2020-3AEA-1069-A2DD-08002B30309D}] 1660099897
+#time=1d8ac641bf2546c
+@="Control Panel"
+"LocalizedString"="@C:\\windows\\system32\\shell32.dll,-22"
+
+[Software\\Classes\\CLSID\\{21EC2020-3AEA-1069-A2DD-08002B30309D}\\InprocServer32] 1660099896
+#time=1d8ac641bbccf54
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{21EC2020-3AEA-1069-A2DD-08002B30309D}\\ShellFolder] 1660099897
+#time=1d8ac641bf25598
+"Attributes"=dword:a0000000
+"HideAsDeletePerUser"=""
+"WantsFORDISPLAY"=""
+
+[Software\\Classes\\CLSID\\{2206CDB0-19C1-11D1-89E0-00C04FD7A829}] 1660099895
+#time=1d8ac641b147a3e
+@="MSDAINITIALIZE"
+
+[Software\\Classes\\CLSID\\{2206CDB0-19C1-11D1-89E0-00C04FD7A829}\\InprocServer32] 1660099895
+#time=1d8ac641b147408
+@="C:\\Program Files\\Common Files\\System\\OLE DB\\oledb32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{2206CDB0-19C1-11D1-89E0-00C04FD7A829}\\ProgId] 1660099895
+#time=1d8ac641b1475a2
+@="MSDASC.MSDAINITIALIZE.1"
+
+[Software\\Classes\\CLSID\\{2206CDB0-19C1-11D1-89E0-00C04FD7A829}\\TypeLib] 1660099895
+#time=1d8ac641b1476e2
+@="{2206CEB0-19C1-11D1-89E0-00C04FD7A829}"
+
+[Software\\Classes\\CLSID\\{2206CDB0-19C1-11D1-89E0-00C04FD7A829}\\Version] 1660099895
+#time=1d8ac641b14782c
+@="1.0"
+
+[Software\\Classes\\CLSID\\{2206CDB0-19C1-11D1-89E0-00C04FD7A829}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b147aac
+@="MSDASC.MSDAINITIALIZE"
+
+[Software\\Classes\\CLSID\\{2206CDB2-19C1-11D1-89E0-00C04FD7A829}] 1660099895
+#time=1d8ac641b149fc8
+@="DataLinks"
+
+[Software\\Classes\\CLSID\\{2206CDB2-19C1-11D1-89E0-00C04FD7A829}\\InprocServer32] 1660099895
+#time=1d8ac641b147dea
+@="C:\\Program Files\\Common Files\\System\\OLE DB\\oledb32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{2206CDB2-19C1-11D1-89E0-00C04FD7A829}\\ProgId] 1660099895
+#time=1d8ac641b14917c
+@="DataLinks"
+
+[Software\\Classes\\CLSID\\{2206CDB2-19C1-11D1-89E0-00C04FD7A829}\\TypeLib] 1660099895
+#time=1d8ac641b149ea6
+@="{2206CEB0-19C1-11D1-89E0-00C04FD7A829}"
+
+[Software\\Classes\\CLSID\\{2206CDB2-19C1-11D1-89E0-00C04FD7A829}\\Version] 1660099895
+#time=1d8ac641b14a040
+@="1.0"
+
+[Software\\Classes\\CLSID\\{2227A280-3AEA-1069-A2DE-08002B30309D}] 1660099896
+#time=1d8ac641bbc993a
+@="Printers and Faxes"
+
+[Software\\Classes\\CLSID\\{2227A280-3AEA-1069-A2DE-08002B30309D}\\InprocServer32] 1660099896
+#time=1d8ac641bbc9ac0
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{228D9A81-C302-11CF-9AA4-00AA004A5691}] 1660099896
+#time=1d8ac641b313d04
+@="LDAP Provider Object"
+
+[Software\\Classes\\CLSID\\{228D9A81-C302-11CF-9AA4-00AA004A5691}\\InprocServer32] 1660099896
+#time=1d8ac641b313c5a
+@="C:\\windows\\system32\\adsldp.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{228D9A81-C302-11CF-9AA4-00AA004A5691}\\ProgId] 1660099896
+#time=1d8ac641b313d54
+@="LDAP"
+
+[Software\\Classes\\CLSID\\{228D9A82-C302-11CF-9AA4-00AA004A5691}] 1660099896
+#time=1d8ac641b314056
+@="LDAP Namespace Object"
+
+[Software\\Classes\\CLSID\\{228D9A82-C302-11CF-9AA4-00AA004A5691}\\InprocServer32] 1660099896
+#time=1d8ac641b313fac
+@="C:\\windows\\system32\\adsldp.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{228D9A82-C302-11CF-9AA4-00AA004A5691}\\ProgId] 1660099896
+#time=1d8ac641b3140a6
+@="LDAPNamespace"
+
+[Software\\Classes\\CLSID\\{25336920-03F9-11CF-8FD0-00AA00686F13}] 1660099896
+#time=1d8ac641b8a6726
+@="HTML Document"
+
+[Software\\Classes\\CLSID\\{25336920-03F9-11CF-8FD0-00AA00686F13}\\InprocServer32] 1660099896
+#time=1d8ac641b8a6582
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{25336920-03F9-11CF-8FD0-00AA00686F13}\\ProgId] 1660099896
+#time=1d8ac641b8a667c
+@="htmlfile"
+
+[Software\\Classes\\CLSID\\{25336920-03F9-11CF-8FD0-00AA00686F13}\\Version] 1660099896
+#time=1d8ac641b8a6780
+@="6.0"
+
+[Software\\Classes\\CLSID\\{25336921-03F9-11CF-8FD0-00AA00686F13}] 1660099896
+#time=1d8ac641b8a6aa0
+@="Microsoft HTML Document 6.0"
+
+[Software\\Classes\\CLSID\\{25336921-03F9-11CF-8FD0-00AA00686F13}\\InprocServer32] 1660099896
+#time=1d8ac641b8a69f6
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{25336921-03F9-11CF-8FD0-00AA00686F13}\\ProgId] 1660099896
+#time=1d8ac641b8a6afa
+@="htmlfile_FullWindowEmbed"
+
+[Software\\Classes\\CLSID\\{25E609E0-B259-11CF-BFC7-444553540000}] 1660099896
+#time=1d8ac641b5c98a0
+@="DirectInput Object"
+
+[Software\\Classes\\CLSID\\{25E609E0-B259-11CF-BFC7-444553540000}\\InprocServer32] 1660099896
+#time=1d8ac641b5c999a
+@="C:\\windows\\system32\\dinput.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{25E609E1-B259-11CF-BFC7-444553540000}] 1660099896
+#time=1d8ac641b5c9c10
+@="DirectInputDevice Object"
+
+[Software\\Classes\\CLSID\\{25E609E1-B259-11CF-BFC7-444553540000}\\InprocServer32] 1660099896
+#time=1d8ac641b5c9d3c
+@="C:\\windows\\system32\\dinput.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{25E609E4-B259-11CF-BFC7-444553540000}] 1660099896
+#time=1d8ac641b5d0844
+@="DirectInput8 Object"
+
+[Software\\Classes\\CLSID\\{25E609E4-B259-11CF-BFC7-444553540000}\\InprocServer32] 1660099896
+#time=1d8ac641b5d0920
+@="C:\\windows\\system32\\dinput8.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{25E609E5-B259-11CF-BFC7-444553540000}] 1660099896
+#time=1d8ac641b5d0b5a
+@="DirectInputDevice8 Object"
+
+[Software\\Classes\\CLSID\\{25E609E5-B259-11CF-BFC7-444553540000}\\InprocServer32] 1660099896
+#time=1d8ac641b5d0c4a
+@="C:\\windows\\system32\\dinput8.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{275C23E2-3747-11D0-9FEA-00AA003F8646}] 1660099896
+#time=1d8ac641b84a606
+@="Multi Language Support"
+
+[Software\\Classes\\CLSID\\{275C23E2-3747-11D0-9FEA-00AA003F8646}\\InprocServer32] 1660099896
+#time=1d8ac641b84a9bc
+@="C:\\windows\\system32\\mlang.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}] 1660099897
+#time=1d8ac641c31b54e
+@="WIC PNG Encoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{1B7CFAF4-713F-473C-BBCD-6137425FAEAF}"
+"FileExtensions"=".png"
+"FriendlyName"="PNG Encoder"
+"MimeTypes"="image/png"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC901}] 1660099897
+#time=1d8ac641c31bec2
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC902}] 1660099897
+#time=1d8ac641c31bf94
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC903}] 1660099897
+#time=1d8ac641c31c05c
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c31c138
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC905}] 1660099897
+#time=1d8ac641c31b774
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC906}] 1660099897
+#time=1d8ac641c31b846
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC907}] 1660099897
+#time=1d8ac641c31b90e
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}] 1660099897
+#time=1d8ac641c31b9e0
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90B}] 1660099897
+#time=1d8ac641c31bab2
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c31b5bc
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90E}] 1660099897
+#time=1d8ac641c31bb7a
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c31bc42
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC915}] 1660099897
+#time=1d8ac641c31bd0a
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC916}] 1660099897
+#time=1d8ac641c31bdf0
+
+[Software\\Classes\\CLSID\\{27949969-876A-41D7-9447-568F6A35A4DC}\\InprocServer32] 1660099897
+#time=1d8ac641bd84bd0
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{286F484D-375E-4458-A272-B138E2F80A6A}] 1660099896
+#time=1d8ac641b644168
+@="DirectPlay8Peer Object"
+
+[Software\\Classes\\CLSID\\{286F484D-375E-4458-A272-B138E2F80A6A}\\InprocServer32] 1660099896
+#time=1d8ac641b64423a
+@="C:\\windows\\system32\\dpnet.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{2933BF90-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b02d52c
+@="XML DOM Document"
+
+[Software\\Classes\\CLSID\\{2933BF90-7B36-11D2-B20E-00C04F983E60}\\InprocServer32] 1660099895
+#time=1d8ac641b02d130
+@="C:\\windows\\system32\\msxml.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{2933BF90-7B36-11D2-B20E-00C04F983E60}\\ProgId] 1660099895
+#time=1d8ac641b02d25c
+@="Microsoft.XMLDOM.1.0"
+
+[Software\\Classes\\CLSID\\{2933BF90-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b02d36a
+@="{D63E0CE2-A0A2-11D0-9C02-00C04FC99C8E}"
+
+[Software\\Classes\\CLSID\\{2933BF90-7B36-11D2-B20E-00C04F983E60}\\Version] 1660099895
+#time=1d8ac641b02d478
+@="1.0"
+
+[Software\\Classes\\CLSID\\{2933BF90-7B36-11D2-B20E-00C04F983E60}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b02d586
+@="Microsoft.XMLDOM"
+
+[Software\\Classes\\CLSID\\{2933BF91-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b02dc0c
+@="Free Threaded XML DOM Document"
+
+[Software\\Classes\\CLSID\\{2933BF91-7B36-11D2-B20E-00C04F983E60}\\InprocServer32] 1660099895
+#time=1d8ac641b02d81a
+@="C:\\windows\\system32\\msxml.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{2933BF91-7B36-11D2-B20E-00C04F983E60}\\ProgId] 1660099895
+#time=1d8ac641b02d932
+@="Microsoft.FreeThreadedXMLDOM.1.0"
+
+[Software\\Classes\\CLSID\\{2933BF91-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b02da4a
+@="{D63E0CE2-A0A2-11D0-9C02-00C04FC99C8E}"
+
+[Software\\Classes\\CLSID\\{2933BF91-7B36-11D2-B20E-00C04F983E60}\\Version] 1660099895
+#time=1d8ac641b02db58
+@="1.0"
+
+[Software\\Classes\\CLSID\\{2933BF91-7B36-11D2-B20E-00C04F983E60}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b02dc70
+@="Microsoft.FreeThreadedXMLDOM"
+
+[Software\\Classes\\CLSID\\{2933BF94-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b06d398
+@="XSL Template"
+
+[Software\\Classes\\CLSID\\{2933BF94-7B36-11D2-B20E-00C04F983E60}\\InprocServer32] 1660099895
+#time=1d8ac641b06cfb0
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{2933BF94-7B36-11D2-B20E-00C04F983E60}\\ProgId] 1660099895
+#time=1d8ac641b06d0be
+@="Msxml2.XSLTemplate"
+
+[Software\\Classes\\CLSID\\{2933BF94-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b06d1d6
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{2933BF94-7B36-11D2-B20E-00C04F983E60}\\Version] 1660099895
+#time=1d8ac641b06d2e4
+@="3.0"
+
+[Software\\Classes\\CLSID\\{2933BF94-7B36-11D2-B20E-00C04F983E60}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b06d42e
+@="Msxml2.XSLTemplate"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{05EC7C2B-F1E6-4961-AD46-E1CC810A87D2}] 1660099897
+#time=1d8ac641c331a38
+"CLSID"="{05EC7C2B-F1E6-4961-AD46-E1CC810A87D2}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{3CC4A650-A527-4D37-A916-3142C7EBEDBA}] 1660099897
+#time=1d8ac641c334c60
+"CLSID"="{3CC4A650-A527-4D37-A916-3142C7EBEDBA}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC901}] 1660099897
+#time=1d8ac641c32d14a
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC901}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC902}] 1660099897
+#time=1d8ac641c32d67c
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC902}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC903}] 1660099897
+#time=1d8ac641c32db9a
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC903}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c32e126
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC904}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC905}] 1660099897
+#time=1d8ac641c32e644
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC905}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC906}] 1660099897
+#time=1d8ac641c32eb6c
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC906}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC907}] 1660099897
+#time=1d8ac641c32fe36
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC907}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}] 1660099897
+#time=1d8ac641c3303b8
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC908}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC909}] 1660099897
+#time=1d8ac641c330e8a
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC909}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC90A}] 1660099897
+#time=1d8ac641c331466
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC90A}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC90B}] 1660099897
+#time=1d8ac641c33096c
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC90B}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c33205a
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC90C}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC90D}] 1660099897
+#time=1d8ac641c332618
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC90D}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC90E}] 1660099897
+#time=1d8ac641c332bea
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC90E}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c3337d4
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC90F}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC910}] 1660099897
+#time=1d8ac641c334594
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC910}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC911}] 1660099897
+#time=1d8ac641c3352f0
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC911}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC915}] 1660099897
+#time=1d8ac641c33589a
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC915}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC916}] 1660099897
+#time=1d8ac641c335f3e
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC916}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC917}] 1660099897
+#time=1d8ac641c3365d8
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC917}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC919}] 1660099897
+#time=1d8ac641c3380d6
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC919}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC91A}] 1660099897
+#time=1d8ac641c33878e
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC91A}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC91C}] 1660099897
+#time=1d8ac641c336cd6
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC91C}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{6FDDC324-4E03-4BFE-B185-3D77768DC91F}] 1660099897
+#time=1d8ac641c33738e
+"CLSID"="{6FDDC324-4E03-4BFE-B185-3D77768DC91F}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{D98C6B95-3EFE-47D6-BB25-EB1748AB0CF1}] 1660099897
+#time=1d8ac641c3331da
+"CLSID"="{D98C6B95-3EFE-47D6-BB25-EB1748AB0CF1}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{E3FED78F-E8DB-4ACF-84C1-E97F6136B327}] 1660099897
+#time=1d8ac641c337a1e
+"CLSID"="{E3FED78F-E8DB-4ACF-84C1-E97F6136B327}"
+
+[Software\\Classes\\CLSID\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}\\Instance\\{F5C7AD2D-6A8D-43DD-A7A8-A29935261AE9}] 1660099897
+#time=1d8ac641c333ec8
+"CLSID"="{F5C7AD2D-6A8D-43DD-A7A8-A29935261AE9}"
+
+[Software\\Classes\\CLSID\\{2C5BC43E-3369-4C33-AB0C-BE9469677AF4}] 1660099896
+#time=1d8ac641b7614f6
+@="HNetCfg.FwRule"
+
+[Software\\Classes\\CLSID\\{2C5BC43E-3369-4C33-AB0C-BE9469677AF4}\\InprocServer32] 1660099896
+#time=1d8ac641b761424
+@="C:\\windows\\system32\\hnetcfg.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{2C5BC43E-3369-4C33-AB0C-BE9469677AF4}\\ProgId] 1660099896
+#time=1d8ac641b761564
+@="HNetCfg.FwRule"
+
+[Software\\Classes\\CLSID\\{2C5F9B72-7148-4D97-BFC9-68A0E076BEBD}] 1660099896
+#time=1d8ac641b61188a
+@="DirectMusic Script AutoImp AudioPath"
+
+[Software\\Classes\\CLSID\\{2C5F9B72-7148-4D97-BFC9-68A0E076BEBD}\\InprocServer32] 1660099896
+#time=1d8ac641b611682
+@="C:\\windows\\system32\\dmscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{2C5F9B72-7148-4D97-BFC9-68A0E076BEBD}\\ProgId] 1660099896
+#time=1d8ac641b6117b8
+@="Microsoft.DirectMusicScriptAutoImpAudioPath.1"
+
+[Software\\Classes\\CLSID\\{2C5F9B72-7148-4D97-BFC9-68A0E076BEBD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b6118ee
+@="Microsoft.DirectMusicScriptAutoImpAudioPath"
+
+[Software\\Classes\\CLSID\\{2D360200-FFF5-11D1-8D03-00A0C959BC0A}] 1660099896
+#time=1d8ac641b5c3f04
+@="DHTMLEdit"
+
+[Software\\Classes\\CLSID\\{2D360200-FFF5-11D1-8D03-00A0C959BC0A}\\InprocServer32] 1660099896
+#time=1d8ac641b5c3b12
+@="C:\\windows\\system32\\dhtmled.ocx"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{2D360200-FFF5-11D1-8D03-00A0C959BC0A}\\ProgId] 1660099896
+#time=1d8ac641b5c3c2a
+@="DHTMLEdit.DHTMLEdit.1"
+
+[Software\\Classes\\CLSID\\{2D360200-FFF5-11D1-8D03-00A0C959BC0A}\\TypeLib] 1660099896
+#time=1d8ac641b5c3d38
+@="{683364A1-B37D-11D1-ADC5-006008A5848C}"
+
+[Software\\Classes\\CLSID\\{2D360200-FFF5-11D1-8D03-00A0C959BC0A}\\Version] 1660099896
+#time=1d8ac641b5c3e46
+@="1.0"
+
+[Software\\Classes\\CLSID\\{2D360200-FFF5-11D1-8D03-00A0C959BC0A}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5c3f5e
+@="DHTMLEdit.DHTMLEdit"
+
+[Software\\Classes\\CLSID\\{2D360201-FFF5-11D1-8D03-00A0C959BC0A}] 1660099896
+#time=1d8ac641b5c3810
+@="DHTMLSafe"
+
+[Software\\Classes\\CLSID\\{2D360201-FFF5-11D1-8D03-00A0C959BC0A}\\InprocServer32] 1660099896
+#time=1d8ac641b5c32b6
+@="C:\\windows\\system32\\dhtmled.ocx"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{2D360201-FFF5-11D1-8D03-00A0C959BC0A}\\ProgId] 1660099896
+#time=1d8ac641b5c3518
+@="DHTMLSafe.DHTMLSafe.1"
+
+[Software\\Classes\\CLSID\\{2D360201-FFF5-11D1-8D03-00A0C959BC0A}\\TypeLib] 1660099896
+#time=1d8ac641b5c3630
+@="{683364A1-B37D-11D1-ADC5-006008A5848C}"
+
+[Software\\Classes\\CLSID\\{2D360201-FFF5-11D1-8D03-00A0C959BC0A}\\Version] 1660099896
+#time=1d8ac641b5c373e
+@="1.0"
+
+[Software\\Classes\\CLSID\\{2D360201-FFF5-11D1-8D03-00A0C959BC0A}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5c3874
+@="DHTMLSafe.DHTMLSafe"
+
+[Software\\Classes\\CLSID\\{2E71FD0F-AAB1-42C0-9146-6D2C4EDCF07D}] 1660099895
+#time=1d8ac641b0dac18
+@="SearchAssistantOC"
+
+[Software\\Classes\\CLSID\\{2E71FD0F-AAB1-42C0-9146-6D2C4EDCF07D}\\InprocServer32] 1660099896
+#time=1d8ac641b782d18
+@="C:\\windows\\system32\\ieframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{2E71FD0F-AAB1-42C0-9146-6D2C4EDCF07D}\\ProgId] 1660099895
+#time=1d8ac641b0da948
+@="SearchAssistantOC.SearchAssistantOC.1"
+
+[Software\\Classes\\CLSID\\{2E71FD0F-AAB1-42C0-9146-6D2C4EDCF07D}\\TypeLib] 1660099895
+#time=1d8ac641b0daa56
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+
+[Software\\Classes\\CLSID\\{2E71FD0F-AAB1-42C0-9146-6D2C4EDCF07D}\\Version] 1660099895
+#time=1d8ac641b0dab64
+@="1.1"
+
+[Software\\Classes\\CLSID\\{2E71FD0F-AAB1-42C0-9146-6D2C4EDCF07D}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0dac72
+@="SearchAssistantOC.SearchAssistantOC"
+
+[Software\\Classes\\CLSID\\{2F2F1F96-2BC1-4B1C-BE28-EA3774F4676A}] 1660099895
+#time=1d8ac641b0d9e4e
+@="Shell Name Space"
+
+[Software\\Classes\\CLSID\\{2F2F1F96-2BC1-4B1C-BE28-EA3774F4676A}\\InprocServer32] 1660099896
+#time=1d8ac641b781ecc
+@="C:\\windows\\system32\\ieframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{2F2F1F96-2BC1-4B1C-BE28-EA3774F4676A}\\ProgId] 1660099895
+#time=1d8ac641b0d9b7e
+@="ShellNameSpace.ShellNameSpace.1"
+
+[Software\\Classes\\CLSID\\{2F2F1F96-2BC1-4B1C-BE28-EA3774F4676A}\\TypeLib] 1660099895
+#time=1d8ac641b0d9c8c
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+
+[Software\\Classes\\CLSID\\{2F2F1F96-2BC1-4B1C-BE28-EA3774F4676A}\\Version] 1660099895
+#time=1d8ac641b0d9d9a
+@="1.1"
+
+[Software\\Classes\\CLSID\\{2F2F1F96-2BC1-4B1C-BE28-EA3774F4676A}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0d9ea8
+@="ShellNameSpace.ShellNameSpace"
+
+[Software\\Classes\\CLSID\\{2FE8F810-B2A5-11D0-A787-0000F803ABFC}] 1660099896
+#time=1d8ac641b63c40e
+@="DirectPlayLobby Object"
+
+[Software\\Classes\\CLSID\\{2FE8F810-B2A5-11D0-A787-0000F803ABFC}\\InprocServer32] 1660099896
+#time=1d8ac641b63c4d6
+@="C:\\windows\\system32\\dplayx.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{304CE942-6E39-40D8-943A-B913C40C9CD4}] 1660099896
+#time=1d8ac641b760470
+@="HNetCfg.FwMgr"
+
+[Software\\Classes\\CLSID\\{304CE942-6E39-40D8-943A-B913C40C9CD4}\\InprocServer32] 1660099896
+#time=1d8ac641b7603a8
+@="C:\\windows\\system32\\hnetcfg.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{304CE942-6E39-40D8-943A-B913C40C9CD4}\\ProgId] 1660099896
+#time=1d8ac641b7604d4
+@="HNetCfg.FwMgr"
+
+[Software\\Classes\\CLSID\\{3050F163-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a3dd2
+@="Microsoft HTML External Document"
+
+[Software\\Classes\\CLSID\\{3050F163-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a3e90
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F17F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a3648
+@="Microsoft HTML Generic Page"
+
+[Software\\Classes\\CLSID\\{3050F17F-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a36fc
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F1FC-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a3396
+@="Microsoft HTML Anchor Page"
+
+[Software\\Classes\\CLSID\\{3050F1FC-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a3454
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F232-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a312a
+@="Microsoft HTML Background Page"
+
+[Software\\Classes\\CLSID\\{3050F232-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a31de
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F296-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a496c
+@="Microsoft HTML Inline Style Page"
+
+[Software\\Classes\\CLSID\\{3050F296-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a4aca
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F391-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a73ec
+@="Microsoft HTML Window Security Proxy"
+
+[Software\\Classes\\CLSID\\{3050F391-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a74a0
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F3B2-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a9868
+@="Microsoft HTML Javascript Pluggable Protocol"
+
+[Software\\Classes\\CLSID\\{3050F3B2-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a9930
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F3B3-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a462e
+@="Microsoft Image Element Browse Property Page"
+
+[Software\\Classes\\CLSID\\{3050F3B3-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a473c
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F3B4-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a38aa
+@="Microsoft Document Browse Property Page"
+
+[Software\\Classes\\CLSID\\{3050F3B4-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a395e
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F3BB-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a2eaa
+@="Microsoft Anchor Element Browse Property Page"
+
+[Software\\Classes\\CLSID\\{3050F3BB-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a2f68
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F3BC-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8aa2a4
+@="Microsoft HTML Resource Pluggable Protocol"
+
+[Software\\Classes\\CLSID\\{3050F3BC-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8aa358
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F3C2-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a3b0c
+@="Microsoft HTML DwnBindInfo"
+
+[Software\\Classes\\CLSID\\{3050F3C2-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a3bca
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F3D6-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a908e
+@="IImgCtx"
+
+[Software\\Classes\\CLSID\\{3050F3D6-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a8fd0
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F3D6-98B5-11CF-BB82-00AA00BDCE0B}\\ProgId] 1660099896
+#time=1d8ac641b8a90fc
+@="IImgCtx"
+
+[Software\\Classes\\CLSID\\{3050F3D9-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8aa09c
+@="MHTML Document"
+
+[Software\\Classes\\CLSID\\{3050F3D9-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a9ef8
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F3D9-98B5-11CF-BB82-00AA00BDCE0B}\\ProgId] 1660099896
+#time=1d8ac641b8a9ff2
+@="mhtmlfile"
+
+[Software\\Classes\\CLSID\\{3050F3D9-98B5-11CF-BB82-00AA00BDCE0B}\\Version] 1660099896
+#time=1d8ac641b8aa0ec
+@="6.0"
+
+[Software\\Classes\\CLSID\\{3050F3DA-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a9b1a
+@="Microsoft HTML Mailto Pluggable Protocol"
+
+[Software\\Classes\\CLSID\\{3050F3DA-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a9be2
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F406-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a2c20
+@="Microsoft HTML About Pluggable Protocol"
+
+[Software\\Classes\\CLSID\\{3050F406-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a2cde
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F499-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a53bc
+@="Microsoft HTML Recalc"
+
+[Software\\Classes\\CLSID\\{3050F499-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a560a
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F4E7-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a7194
+@="Microsoft HTML Server Document 6.0"
+
+[Software\\Classes\\CLSID\\{3050F4E7-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a7248
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F4F0-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a5f4c
+@="Microsoft Scriptlet svr om Uses"
+
+[Software\\Classes\\CLSID\\{3050F4F0-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a5ea2
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F4F0-98B5-11CF-BB82-00AA00BDCE0B}\\ProgId] 1660099896
+#time=1d8ac641b8a5f9c
+@="Scriptlet.SvrOm"
+
+[Software\\Classes\\CLSID\\{3050F4F8-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a43b8
+@="Microsoft Html Component"
+
+[Software\\Classes\\CLSID\\{3050F4F8-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a4462
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F5C8-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a62b2
+@="Microsoft HTA Document 6.0"
+
+[Software\\Classes\\CLSID\\{3050F5C8-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a6208
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F5C8-98B5-11CF-BB82-00AA00BDCE0B}\\Version] 1660099896
+#time=1d8ac641b8a6302
+@="6.0"
+
+[Software\\Classes\\CLSID\\{3050F667-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a6cb2
+@="Microsoft Html Popup Window"
+
+[Software\\Classes\\CLSID\\{3050F667-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a6d66
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3050F67D-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8a6f1e
+@="Microsoft Html Document for Popup Window"
+
+[Software\\Classes\\CLSID\\{3050F67D-98B5-11CF-BB82-00AA00BDCE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b8a6fd2
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3124C396-FB13-4836-A6AD-1317F1713688}] 1660099895
+#time=1d8ac641b06dc94
+@="SAX XML Reader 3.0"
+
+[Software\\Classes\\CLSID\\{3124C396-FB13-4836-A6AD-1317F1713688}\\InprocServer32] 1660099895
+#time=1d8ac641b06d8ac
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{3124C396-FB13-4836-A6AD-1317F1713688}\\ProgId] 1660099895
+#time=1d8ac641b06d9c4
+@="Msxml2.SAXXMLReader.3.0"
+
+[Software\\Classes\\CLSID\\{3124C396-FB13-4836-A6AD-1317F1713688}\\TypeLib] 1660099895
+#time=1d8ac641b06dad2
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{3124C396-FB13-4836-A6AD-1317F1713688}\\Version] 1660099895
+#time=1d8ac641b06dbe0
+@="3.0"
+
+[Software\\Classes\\CLSID\\{3124C396-FB13-4836-A6AD-1317F1713688}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b06dcee
+@="Msxml2.SAXXMLReader"
+
+[Software\\Classes\\CLSID\\{312FB6F1-B767-409D-8A6D-0FC154D4F05C}] 1660099897
+#time=1d8ac641c31d79a
+@="WIC ICNS Encoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{E4CD3E69-4436-4363-981D-CCF05A874C73}"
+"FileExtensions"=".icns"
+"FriendlyName"="ICNS Encoder"
+"MimeTypes"="image/icns"
+"Vendor"="{DDF46DA1-7DC1-404E-98F2-EFA48DFC950A}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{312FB6F1-B767-409D-8A6D-0FC154D4F05C}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c31d826
+
+[Software\\Classes\\CLSID\\{312FB6F1-B767-409D-8A6D-0FC154D4F05C}\\InprocServer32] 1660099897
+#time=1d8ac641bd86c00
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{317D06E8-5F24-433D-BDF7-79CE68D8ABC2}] 1660099897
+#time=1d8ac641bd82e52
+@="WIC Imaging Factory 2"
+
+[Software\\Classes\\CLSID\\{317D06E8-5F24-433D-BDF7-79CE68D8ABC2}\\InprocServer32] 1660099897
+#time=1d8ac641bd83ea6
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{317DF618-5E5A-468A-9F15-D827A9A08162}] 1660099897
+#time=1d8ac641bdb9a7e
+@="Generic Decodebin Byte Stream Handler"
+
+[Software\\Classes\\CLSID\\{317DF618-5E5A-468A-9F15-D827A9A08162}\\InprocServer32] 1660099897
+#time=1d8ac641bdb9b46
+@="C:\\windows\\system32\\winegstreamer.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{32557D3B-69DC-4F95-836E-F5972B2F6159}] 1660099897
+#time=1d8ac641c32caf6
+@="WIC Comment Extension Reader"
+"Author"="The Wine Project"
+"FriendlyName"="Comment Extension Reader"
+"MetadataFormat"="{C4B6E0E0-CFB4-4AD3-AB33-9AAD2355A34A}"
+"RequiresFullStream"=dword:00000000
+"SpecVersion"="1.0.0.0"
+"SupportsPadding"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{32557D3B-69DC-4F95-836E-F5972B2F6159}\\Containers\\{1F8A5601-7D4D-4CBD-9C82-1BC8D4EEB9A5}\\0] 1660099897
+#time=1d8ac641c32cccc
+"Mask"=hex:ff,ff
+"Pattern"=hex:21,fe
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{32557D3B-69DC-4F95-836E-F5972B2F6159}\\InprocServer32] 1660099897
+#time=1d8ac641bd8d96a
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{32DA2B15-CFED-11D1-B747-00C04FC2B085}] 1660099896
+#time=1d8ac641bb58500
+@="Script Encoder Object"
+
+[Software\\Classes\\CLSID\\{32DA2B15-CFED-11D1-B747-00C04FC2B085}\\InprocServer32] 1660099896
+#time=1d8ac641bb581e0
+@="C:\\windows\\system32\\scrrun.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{32DA2B15-CFED-11D1-B747-00C04FC2B085}\\ProgId] 1660099896
+#time=1d8ac641bb5832a
+@="Scripting.Encoder"
+
+[Software\\Classes\\CLSID\\{32DA2B15-CFED-11D1-B747-00C04FC2B085}\\TypeLib] 1660099896
+#time=1d8ac641bb58442
+@="{420B2830-E718-11CF-893D-00A0C9054228}"
+
+[Software\\Classes\\CLSID\\{32DA2B15-CFED-11D1-B747-00C04FC2B085}\\Version] 1660099896
+#time=1d8ac641bb5856e
+@="1.0"
+
+[Software\\Classes\\CLSID\\{336475D0-942A-11CE-A870-00AA002FEAB5}] 1660099897
+#time=1d8ac641bdb8fe8
+@="MPEG-I Stream Splitter"
+
+[Software\\Classes\\CLSID\\{336475D0-942A-11CE-A870-00AA002FEAB5}\\InprocServer32] 1660099897
+#time=1d8ac641bdb90b0
+@="C:\\windows\\system32\\winegstreamer.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{33C53A50-F456-4884-B049-85FD643ECFED}] 1660099896
+#time=1d8ac641b87f25c
+@="TF_InputProcessorProfiles"
+
+[Software\\Classes\\CLSID\\{33C53A50-F456-4884-B049-85FD643ECFED}\\InprocServer32] 1660099896
+#time=1d8ac641b87f310
+@="C:\\windows\\system32\\msctf.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{33D9A760-90C8-11D0-BD43-00A0C911CE86}] 1660099896
+#time=1d8ac641b5aa81a
+@="ICM Class Manager"
+
+[Software\\Classes\\CLSID\\{33D9A760-90C8-11D0-BD43-00A0C911CE86}\\InprocServer32] 1660099896
+#time=1d8ac641b5aa8ec
+@="C:\\windows\\system32\\devenum.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{33D9A761-90C8-11D0-BD43-00A0C911CE86}] 1660099896
+#time=1d8ac641b5aa540
+@="ACM Class Manager"
+
+[Software\\Classes\\CLSID\\{33D9A761-90C8-11D0-BD43-00A0C911CE86}\\InprocServer32] 1660099896
+#time=1d8ac641b5aa61c
+@="C:\\windows\\system32\\devenum.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{33D9A762-90C8-11D0-BD43-00A0C911CE86}] 1660099896
+#time=1d8ac641b5ab526
+@="WaveIn Class Manager"
+
+[Software\\Classes\\CLSID\\{33D9A762-90C8-11D0-BD43-00A0C911CE86}\\InprocServer32] 1660099896
+#time=1d8ac641b5ab6ac
+@="C:\\windows\\system32\\devenum.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{3692CA39-E082-4350-9E1F-3704CB083CD5}] 1660099897
+#time=1d8ac641c322024
+@="WIC Png gAMA Metadata Reader"
+"Author"="The Wine Project"
+"FriendlyName"="Chunk gAMA Reader"
+"MetadataFormat"="{F00935A5-1D5D-4CD1-81B2-9324D7ECA781}"
+"RequiresFullStream"=dword:00000000
+"SpecVersion"="1.0.0.0"
+"SupportsPadding"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{3692CA39-E082-4350-9E1F-3704CB083CD5}\\Containers\\{1B7CFAF4-713F-473C-BBCD-6137425FAEAF}\\0] 1660099897
+#time=1d8ac641c32229a
+"DataOffset"=dword:00000004
+"Mask"=hex:ff,ff,ff,ff
+"Pattern"=hex:67,41,4d,41
+"Position"=dword:00000004
+
+[Software\\Classes\\CLSID\\{3692CA39-E082-4350-9E1F-3704CB083CD5}\\InprocServer32] 1660099897
+#time=1d8ac641bd8a6e8
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{369647E0-17B0-11CE-9950-00AA004BBB1F}] 1660099896
+#time=1d8ac641b7a999a
+@="Neutral Word Breaker"
+
+[Software\\Classes\\CLSID\\{369647E0-17B0-11CE-9950-00AA004BBB1F}\\InprocServer32] 1660099896
+#time=1d8ac641b7a9a58
+@="C:\\windows\\system32\\infosoft.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{373984C9-B845-449B-91E7-45AC83036ADE}] 1660099895
+#time=1d8ac641b06b78c
+@="XML Schema Cache"
+
+[Software\\Classes\\CLSID\\{373984C9-B845-449B-91E7-45AC83036ADE}\\InprocServer32] 1660099895
+#time=1d8ac641b06b2aa
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{373984C9-B845-449B-91E7-45AC83036ADE}\\ProgId] 1660099895
+#time=1d8ac641b06b3b8
+@="Msxml2.XMLSchemaCache"
+
+[Software\\Classes\\CLSID\\{373984C9-B845-449B-91E7-45AC83036ADE}\\TypeLib] 1660099895
+#time=1d8ac641b06b4da
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{373984C9-B845-449B-91E7-45AC83036ADE}\\Version] 1660099895
+#time=1d8ac641b06b6d8
+@="3.0"
+
+[Software\\Classes\\CLSID\\{373984C9-B845-449B-91E7-45AC83036ADE}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b06b7f0
+@="Msxml2.XMLSchemaCache"
+
+[Software\\Classes\\CLSID\\{381DDA3C-9CE9-4834-A23E-1F98F8FC52BE}] 1660099897
+#time=1d8ac641c3117ba
+@="WIC GIF Decoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{1F8A5601-7D4D-4CBD-9C82-1BC8D4EEB9A5}"
+"FileExtensions"=".gif"
+"FriendlyName"="GIF Decoder"
+"MimeTypes"="image/gif"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{381DDA3C-9CE9-4834-A23E-1F98F8FC52BE}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c3116b6
+
+[Software\\Classes\\CLSID\\{381DDA3C-9CE9-4834-A23E-1F98F8FC52BE}\\InprocServer32] 1660099897
+#time=1d8ac641bd8531e
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{381DDA3C-9CE9-4834-A23E-1F98F8FC52BE}\\Patterns\\0] 1660099897
+#time=1d8ac641c311a3a
+"EndOfStream"=dword:00000000
+"Length"=dword:00000006
+"Mask"=hex:ff,ff,ff,ff,ff,ff
+"Pattern"=hex:47,49,46,38,37,61
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{381DDA3C-9CE9-4834-A23E-1F98F8FC52BE}\\Patterns\\1] 1660099897
+#time=1d8ac641c311cba
+"EndOfStream"=dword:00000000
+"Length"=dword:00000006
+"Mask"=hex:ff,ff,ff,ff,ff,ff
+"Pattern"=hex:47,49,46,38,39,61
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{38248178-CF6D-11DE-ABE5-000C2916D865}] 1660099895
+#time=1d8ac641b158e10
+@="Wine OLE DB Row Server"
+
+[Software\\Classes\\CLSID\\{38248178-CF6D-11DE-ABE5-000C2916D865}\\InprocServer32] 1660099895
+#time=1d8ac641b158bf4
+@="C:\\Program Files\\Common Files\\System\\OLE DB\\msdaps.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{38248178-CF6D-11DE-ABE5-000C2916D865}\\ProgId] 1660099895
+#time=1d8ac641b158d20
+@="WINEDBROWPRX.AsServer.1"
+
+[Software\\Classes\\CLSID\\{38248178-CF6D-11DE-ABE5-000C2916D865}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b158e88
+@="WINEDBROWPRX.AsServer"
+
+[Software\\Classes\\CLSID\\{38248179-CF6D-11DE-ABE5-000C2916D865}] 1660099895
+#time=1d8ac641b15934c
+@="Wine OLE DB Row Proxy"
+
+[Software\\Classes\\CLSID\\{38248179-CF6D-11DE-ABE5-000C2916D865}\\InprocServer32] 1660099895
+#time=1d8ac641b159162
+@="C:\\Program Files\\Common Files\\System\\OLE DB\\msdaps.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{38248179-CF6D-11DE-ABE5-000C2916D865}\\ProgId] 1660099895
+#time=1d8ac641b15928e
+@="WINEDBROWPRX.AsProxy.1"
+
+[Software\\Classes\\CLSID\\{38248179-CF6D-11DE-ABE5-000C2916D865}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b1593b0
+@="WINEDBROWPRX.AsProxy"
+
+[Software\\Classes\\CLSID\\{3824817A-CF6D-11DE-ABE5-000C2916D865}] 1660099895
+#time=1d8ac641b159888
+@="Wine OLE DB Rowset Server"
+
+[Software\\Classes\\CLSID\\{3824817A-CF6D-11DE-ABE5-000C2916D865}\\InprocServer32] 1660099895
+#time=1d8ac641b159694
+@="C:\\Program Files\\Common Files\\System\\OLE DB\\msdaps.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{3824817A-CF6D-11DE-ABE5-000C2916D865}\\ProgId] 1660099895
+#time=1d8ac641b1597c0
+@="WINEDBRSTPRX.AsServer.1"
+
+[Software\\Classes\\CLSID\\{3824817A-CF6D-11DE-ABE5-000C2916D865}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b1598f6
+@="WINEDBRSTPRX.AsServer"
+
+[Software\\Classes\\CLSID\\{3824817B-CF6D-11DE-ABE5-000C2916D865}] 1660099895
+#time=1d8ac641b159dba
+@="Wine OLE DB Rowset Proxy"
+
+[Software\\Classes\\CLSID\\{3824817B-CF6D-11DE-ABE5-000C2916D865}\\InprocServer32] 1660099895
+#time=1d8ac641b159bb2
+@="C:\\Program Files\\Common Files\\System\\OLE DB\\msdaps.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{3824817B-CF6D-11DE-ABE5-000C2916D865}\\ProgId] 1660099895
+#time=1d8ac641b159cfc
+@="WINEDBRSTPRX.AsProxy.1"
+
+[Software\\Classes\\CLSID\\{3824817B-CF6D-11DE-ABE5-000C2916D865}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b159e28
+@="WINEDBRSTPRX.AsProxy"
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}] 1660099897
+#time=1d8ac641c31617a
+@="WIC PNG Decoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{1B7CFAF4-713F-473C-BBCD-6137425FAEAF}"
+"FileExtensions"=".png"
+"FriendlyName"="PNG Decoder"
+"MimeTypes"="image/png"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC901}] 1660099897
+#time=1d8ac641c315cb6
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC902}] 1660099897
+#time=1d8ac641c315d74
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC903}] 1660099897
+#time=1d8ac641c315e3c
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c315efa
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC905}] 1660099897
+#time=1d8ac641c315770
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC906}] 1660099897
+#time=1d8ac641c31582e
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC907}] 1660099897
+#time=1d8ac641c3158ec
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}] 1660099897
+#time=1d8ac641c3159aa
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90B}] 1660099897
+#time=1d8ac641c315a68
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c315fb8
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c315b26
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC915}] 1660099897
+#time=1d8ac641c316076
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC916}] 1660099897
+#time=1d8ac641c315bf8
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\InprocServer32] 1660099897
+#time=1d8ac641bd8491e
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{389EA17B-5078-4CDE-B6EF-25C15175C751}\\Patterns\\0] 1660099897
+#time=1d8ac641c3163aa
+"EndOfStream"=dword:00000000
+"Length"=dword:00000008
+"Mask"=hex:ff,ff,ff,ff,ff,ff,ff,ff
+"Pattern"=hex:89,50,4e,47,0d,0a,1a,0a
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{3901CC3F-84B5-4FA4-BA35-AA8172B8A09B}] 1660099896
+#time=1d8ac641b66863a
+@="DirectSound 8.0 Object"
+
+[Software\\Classes\\CLSID\\{3901CC3F-84B5-4FA4-BA35-AA8172B8A09B}\\InprocServer32] 1660099896
+#time=1d8ac641b668720
+@="C:\\windows\\system32\\dsound.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{3918D75F-0ACB-41F2-B733-92AA15BCECF6}] 1660099895
+#time=1d8ac641b0f5e96
+@="Object Token Enumerator"
+
+[Software\\Classes\\CLSID\\{3918D75F-0ACB-41F2-B733-92AA15BCECF6}\\InprocServer32] 1660099895
+#time=1d8ac641b0f5c8e
+@="C:\\windows\\system32\\Speech\\Common\\sapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{3918D75F-0ACB-41F2-B733-92AA15BCECF6}\\ProgId] 1660099895
+#time=1d8ac641b0f5db0
+@="SAPI.SpObjectTokenEnum.1"
+
+[Software\\Classes\\CLSID\\{3918D75F-0ACB-41F2-B733-92AA15BCECF6}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0f5f04
+@="SAPI.SpObjectTokenEnum"
+
+[Software\\Classes\\CLSID\\{3B2B6775-70B6-45AF-8DEA-A209C69559F3}] 1660099896
+#time=1d8ac641b644d98
+@="DirectPlay8LobbyClient Object"
+
+[Software\\Classes\\CLSID\\{3B2B6775-70B6-45AF-8DEA-A209C69559F3}\\InprocServer32] 1660099896
+#time=1d8ac641b644ba4
+@="C:\\windows\\system32\\dpnet.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{3B2B6775-70B6-45AF-8DEA-A209C69559F3}\\ProgId] 1660099896
+#time=1d8ac641b644cda
+@="DirectPlay8Lobby.LobbyClient.1"
+
+[Software\\Classes\\CLSID\\{3B2B6775-70B6-45AF-8DEA-A209C69559F3}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b644e06
+@="DirectPlay8Lobby.LobbyClient"
+
+[Software\\Classes\\CLSID\\{3C305196-50DB-11D3-9CFE-00C04FD930C5}] 1660099896
+#time=1d8ac641b5a0b08
+@="DirectDraw 7 Object"
+
+[Software\\Classes\\CLSID\\{3C305196-50DB-11D3-9CFE-00C04FD930C5}\\InprocServer32] 1660099896
+#time=1d8ac641b5a0bee
+@="C:\\windows\\system32\\ddraw.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{3C374A40-BAE4-11CF-BF7D-00AA006946EE}] 1660099896
+#time=1d8ac641b786a4e
+@="Microsoft Url History Service"
+
+[Software\\Classes\\CLSID\\{3C374A40-BAE4-11CF-BF7D-00AA006946EE}\\InprocServer32] 1660099896
+#time=1d8ac641b786b16
+@="C:\\windows\\system32\\ieframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3CC4A650-A527-4D37-A916-3142C7EBEDBA}] 1660099897
+#time=1d8ac641c334fa8
+"Author"="The Wine Project"
+"BitLength"=dword:00000020
+"ChannelCount"=dword:00000004
+"FriendlyName"="32bpp PRGBA"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000001
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{3CC4A650-A527-4D37-A916-3142C7EBEDBA}\\ChannelMasks] 1660099897
+#time=1d8ac641c335110
+"0"=hex:ff,00,00,00
+"1"=hex:00,ff,00,00
+"2"=hex:00,00,ff,00
+"3"=hex:00,00,00,ff
+
+[Software\\Classes\\CLSID\\{3CE74DE4-53D3-4D74-8B83-431B3828BA53}] 1660099896
+#time=1d8ac641b87fa72
+@="TF_DisplayAttributeMgr"
+
+[Software\\Classes\\CLSID\\{3CE74DE4-53D3-4D74-8B83-431B3828BA53}\\InprocServer32] 1660099896
+#time=1d8ac641b87fb26
+@="C:\\windows\\system32\\msctf.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3D813DFE-6C91-4A4E-8F41-04346A841D9C}] 1660099895
+#time=1d8ac641b06ea68
+@="MXXMLWriter 3.0"
+
+[Software\\Classes\\CLSID\\{3D813DFE-6C91-4A4E-8F41-04346A841D9C}\\InprocServer32] 1660099895
+#time=1d8ac641b06e68a
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{3D813DFE-6C91-4A4E-8F41-04346A841D9C}\\ProgId] 1660099895
+#time=1d8ac641b06e798
+@="Msxml2.MXXMLWriter.3.0"
+
+[Software\\Classes\\CLSID\\{3D813DFE-6C91-4A4E-8F41-04346A841D9C}\\TypeLib] 1660099895
+#time=1d8ac641b06e8a6
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{3D813DFE-6C91-4A4E-8F41-04346A841D9C}\\Version] 1660099895
+#time=1d8ac641b06e9b4
+@="3.0"
+
+[Software\\Classes\\CLSID\\{3D813DFE-6C91-4A4E-8F41-04346A841D9C}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b06eacc
+@="Msxml2.MXXMLWriter"
+
+[Software\\Classes\\CLSID\\{3DD53D40-7B8B-11D0-B013-00AA0059CE02}] 1660099897
+#time=1d8ac641bcb99f8
+@="CDL: Asynchronous Pluggable Protocol Handler"
+
+[Software\\Classes\\CLSID\\{3DD53D40-7B8B-11D0-B013-00AA0059CE02}\\InprocServer32] 1660099897
+#time=1d8ac641bcb9ac0
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3E784A01-F3AE-4DC0-9354-9526B9370EBA}] 1660099895
+#time=1d8ac641b06f83c
+@="SAXAttributes 3.0"
+
+[Software\\Classes\\CLSID\\{3E784A01-F3AE-4DC0-9354-9526B9370EBA}\\InprocServer32] 1660099895
+#time=1d8ac641b06f440
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{3E784A01-F3AE-4DC0-9354-9526B9370EBA}\\ProgId] 1660099895
+#time=1d8ac641b06f54e
+@="Msxml2.SAXAttributes.3.0"
+
+[Software\\Classes\\CLSID\\{3E784A01-F3AE-4DC0-9354-9526B9370EBA}\\TypeLib] 1660099895
+#time=1d8ac641b06f67a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{3E784A01-F3AE-4DC0-9354-9526B9370EBA}\\Version] 1660099895
+#time=1d8ac641b06f788
+@="3.0"
+
+[Software\\Classes\\CLSID\\{3E784A01-F3AE-4DC0-9354-9526B9370EBA}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b06f896
+@="Msxml2.SAXAttributes"
+
+[Software\\Classes\\CLSID\\{3F037241-414E-11D1-A7CE-00A0C913F73C}] 1660099896
+#time=1d8ac641b61b51a
+@="DirectMusicSection"
+
+[Software\\Classes\\CLSID\\{3F037241-414E-11D1-A7CE-00A0C913F73C}\\InprocServer32] 1660099896
+#time=1d8ac641b61b31c
+@="C:\\windows\\system32\\dmstyle.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{3F037241-414E-11D1-A7CE-00A0C913F73C}\\ProgId] 1660099896
+#time=1d8ac641b61b452
+@="Microsoft.DirectMusicSection.1"
+
+[Software\\Classes\\CLSID\\{3F037241-414E-11D1-A7CE-00A0C913F73C}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b61b57e
+@="Microsoft.DirectMusicSection"
+
+[Software\\Classes\\CLSID\\{3F4DACA4-160D-11D2-A8E9-00104B365C9F}] 1660099897
+#time=1d8ac641bcdd1f0
+@="VBScript Regular Expression"
+
+[Software\\Classes\\CLSID\\{3F4DACA4-160D-11D2-A8E9-00104B365C9F}\\InprocServer32] 1660099897
+#time=1d8ac641bcdd024
+@="C:\\windows\\system32\\vbscript.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{3F4DACA4-160D-11D2-A8E9-00104B365C9F}\\ProgId] 1660099897
+#time=1d8ac641bcdd13c
+@="VBScript.RegExp"
+
+[Software\\Classes\\CLSID\\{3F4DACA4-160D-11D2-A8E9-00104B365C9F}\\Version] 1660099897
+#time=1d8ac641bcdd24a
+@="5.5"
+
+[Software\\Classes\\CLSID\\{4062C116-0270-11D3-8BCB-00600893B1B6}] 1660099896
+#time=1d8ac641b60ea54
+@="DirectMusic Script AutoImp Segment"
+
+[Software\\Classes\\CLSID\\{4062C116-0270-11D3-8BCB-00600893B1B6}\\InprocServer32] 1660099896
+#time=1d8ac641b60e6ee
+@="C:\\windows\\system32\\dmscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4062C116-0270-11D3-8BCB-00600893B1B6}\\ProgId] 1660099896
+#time=1d8ac641b60e82e
+@="Microsoft.DirectMusicScriptAutoImpSegment.1"
+
+[Software\\Classes\\CLSID\\{4062C116-0270-11D3-8BCB-00600893B1B6}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b60eacc
+@="Microsoft.DirectMusicScriptAutoImpSegment"
+
+[Software\\Classes\\CLSID\\{41070793-59E4-479A-A1F7-954ADC2EF5FC}] 1660099897
+#time=1d8ac641c323406
+@="WIC LSD Metadata Reader"
+"Author"="The Wine Project"
+"FriendlyName"="Logical Screen Descriptor Reader"
+"MetadataFormat"="{E256031E-6299-4929-B98D-5AC884AFBA92}"
+"RequiresFullStream"=dword:00000000
+"SpecVersion"="1.0.0.0"
+"SupportsPadding"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{41070793-59E4-479A-A1F7-954ADC2EF5FC}\\Containers\\{1F8A5601-7D4D-4CBD-9C82-1BC8D4EEB9A5}\\0] 1660099897
+#time=1d8ac641c3236d6
+"Mask"=hex:ff,ff,ff,ff,ff,ff
+"Pattern"=hex:47,49,46,38,37,61
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{41070793-59E4-479A-A1F7-954ADC2EF5FC}\\Containers\\{1F8A5601-7D4D-4CBD-9C82-1BC8D4EEB9A5}\\1] 1660099897
+#time=1d8ac641c3238de
+"Mask"=hex:ff,ff,ff,ff,ff,ff
+"Pattern"=hex:47,49,46,38,39,61
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{41070793-59E4-479A-A1F7-954ADC2EF5FC}\\InprocServer32] 1660099897
+#time=1d8ac641bd8baf2
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4108FA85-3586-11D3-8BD7-00600893B1B6}] 1660099896
+#time=1d8ac641b60f256
+@="DirectMusicScriptTrack"
+
+[Software\\Classes\\CLSID\\{4108FA85-3586-11D3-8BD7-00600893B1B6}\\InprocServer32] 1660099896
+#time=1d8ac641b60f080
+@="C:\\windows\\system32\\dmscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4108FA85-3586-11D3-8BD7-00600893B1B6}\\ProgId] 1660099896
+#time=1d8ac641b60f198
+@="Microsoft.DirectMusicScriptTrack.1"
+
+[Software\\Classes\\CLSID\\{4108FA85-3586-11D3-8BD7-00600893B1B6}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b60f2b0
+@="Microsoft.DirectMusicScriptTrack"
+
+[Software\\Classes\\CLSID\\{41B23C28-488E-4E5C-ACE2-BB0BBABE99E8}] 1660099896
+#time=1d8ac641b744d9c
+@="HHCtrl Object"
+
+[Software\\Classes\\CLSID\\{41B23C28-488E-4E5C-ACE2-BB0BBABE99E8}\\InprocServer32] 1660099896
+#time=1d8ac641b74493c
+@="C:\\windows\\system32\\hhctrl.ocx"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{41B23C28-488E-4E5C-ACE2-BB0BBABE99E8}\\ProgId] 1660099896
+#time=1d8ac641b744a5e
+@="Internet.HHCtrl.1"
+
+[Software\\Classes\\CLSID\\{41B23C28-488E-4E5C-ACE2-BB0BBABE99E8}\\TypeLib] 1660099896
+#time=1d8ac641b744b94
+@="{ADB880A2-D8FF-11CF-9377-00AA003B7A11}"
+
+[Software\\Classes\\CLSID\\{41B23C28-488E-4E5C-ACE2-BB0BBABE99E8}\\Version] 1660099896
+#time=1d8ac641b744cd4
+@="1.0"
+
+[Software\\Classes\\CLSID\\{41B23C28-488E-4E5C-ACE2-BB0BBABE99E8}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b744e28
+@="Internet.HHCtrl"
+
+[Software\\Classes\\CLSID\\{429AF92C-A51F-11D2-861E-00C04FA35C89}] 1660099896
+#time=1d8ac641b8ab014
+@="Trident API"
+
+[Software\\Classes\\CLSID\\{429AF92C-A51F-11D2-861E-00C04FA35C89}\\InprocServer32] 1660099896
+#time=1d8ac641b8ab3d4
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{4315D437-5B8C-11D0-BD3B-00A0C911CE86}] 1660099896
+#time=1d8ac641b5aa2b6
+@="DeviceMoniker"
+
+[Software\\Classes\\CLSID\\{4315D437-5B8C-11D0-BD3B-00A0C911CE86}\\InprocServer32] 1660099896
+#time=1d8ac641b5aa0b8
+@="C:\\windows\\system32\\devenum.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4315D437-5B8C-11D0-BD3B-00A0C911CE86}\\ProgId] 1660099896
+#time=1d8ac641b5aa1ee
+@="device.1"
+
+[Software\\Classes\\CLSID\\{4315D437-5B8C-11D0-BD3B-00A0C911CE86}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5aa324
+@="device"
+
+[Software\\Classes\\CLSID\\{44EC053A-400F-11D0-9DCD-00A0C90391D3}] 1660099896
+#time=1d8ac641b448b16
+@="Registrar Class"
+
+[Software\\Classes\\CLSID\\{44EC053A-400F-11D0-9DCD-00A0C90391D3}\\InprocServer32] 1660099896
+#time=1d8ac641b448a62
+@="C:\\windows\\system32\\atl.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{44EC053A-400F-11D0-9DCD-00A0C90391D3}\\ProgId] 1660099896
+#time=1d8ac641b448b7a
+@="ATL.Registrar"
+
+[Software\\Classes\\CLSID\\{450D8FBA-AD25-11D0-98A8-0800361B1103}] 1660099897
+#time=1d8ac641bf2512e
+@="My Documents"
+"LocalizedString"="@C:\\windows\\system32\\shell32.dll,-46"
+
+[Software\\Classes\\CLSID\\{450D8FBA-AD25-11D0-98A8-0800361B1103}\\InprocServer32] 1660099896
+#time=1d8ac641bbcc9e6
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{450D8FBA-AD25-11D0-98A8-0800361B1103}\\ShellFolder] 1660099897
+#time=1d8ac641bf25264
+"Attributes"=dword:b0000000
+"CallForAttributes"=dword:40000000
+"WantsFORPARSING"=""
+
+[Software\\Classes\\CLSID\\{4516EC43-8F20-11D0-9B6D-0000C0781BC3}] 1660099896
+#time=1d8ac641b588850
+@="DirectX File"
+
+[Software\\Classes\\CLSID\\{4516EC43-8F20-11D0-9B6D-0000C0781BC3}\\InprocServer32] 1660099896
+#time=1d8ac641b588936
+@="C:\\windows\\system32\\d3dxof.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4590F811-1D3A-11D0-891F-00AA004B2E24}] 1660099895
+#time=1d8ac641b108618
+@="WBEM Locator"
+
+[Software\\Classes\\CLSID\\{4590F811-1D3A-11D0-891F-00AA004B2E24}\\InprocServer32] 1660099895
+#time=1d8ac641b1086cc
+@="C:\\windows\\system32\\wbem\\wbemprox.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4657278A-411B-11D2-839A-00C04FD918D0}] 1660099896
+#time=1d8ac641bbcadd0
+@="Shell Drag and Drop Helper"
+
+[Software\\Classes\\CLSID\\{4657278A-411B-11D2-839A-00C04FD918D0}\\InprocServer32] 1660099896
+#time=1d8ac641bbcae98
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{46763EE0-CAB2-11CE-8C20-00AA0051E5D4}] 1660099896
+#time=1d8ac641ba42440
+@="Obsolete Font"
+
+[Software\\Classes\\CLSID\\{46763EE0-CAB2-11CE-8C20-00AA0051E5D4}\\InprocServer32] 1660099896
+#time=1d8ac641ba4238c
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{46763EE0-CAB2-11CE-8C20-00AA0051E5D4}\\ProgId] 1660099896
+#time=1d8ac641ba424a4
+@="OldFont"
+
+[Software\\Classes\\CLSID\\{477EC299-1421-4BDD-971F-7CCB933F21AD}] 1660099896
+#time=1d8ac641b82ba6c
+@="File scheme handler"
+
+[Software\\Classes\\CLSID\\{477EC299-1421-4BDD-971F-7CCB933F21AD}\\InprocServer32] 1660099896
+#time=1d8ac641b82bb48
+@="C:\\windows\\system32\\mf.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{47D4D946-62E8-11CF-93BC-444553540000}] 1660099896
+#time=1d8ac641b668360
+@="DirectSound Object"
+
+[Software\\Classes\\CLSID\\{47D4D946-62E8-11CF-93BC-444553540000}\\InprocServer32] 1660099896
+#time=1d8ac641b668432
+@="C:\\windows\\system32\\dsound.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{480FF4B0-28B2-11D1-BEF7-00C04FBF8FEF}] 1660099896
+#time=1d8ac641b62d6e8
+@="DirectMusicCollection"
+
+[Software\\Classes\\CLSID\\{480FF4B0-28B2-11D1-BEF7-00C04FBF8FEF}\\InprocServer32] 1660099896
+#time=1d8ac641b62d4e0
+@="C:\\windows\\system32\\dmusic.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{480FF4B0-28B2-11D1-BEF7-00C04FBF8FEF}\\ProgId] 1660099896
+#time=1d8ac641b62d634
+@="Microsoft.DirectMusicCollection.1"
+
+[Software\\Classes\\CLSID\\{480FF4B0-28B2-11D1-BEF7-00C04FBF8FEF}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b62d74c
+@="Microsoft.DirectMusicCollection"
+
+[Software\\Classes\\CLSID\\{48123BC4-99D9-11D1-A6B3-00C04FD91555}] 1660099895
+#time=1d8ac641b0779ba
+@="XML Document"
+
+[Software\\Classes\\CLSID\\{48123BC4-99D9-11D1-A6B3-00C04FD91555}\\InprocServer32] 1660099895
+#time=1d8ac641b0777f8
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{48123BC4-99D9-11D1-A6B3-00C04FD91555}\\ProgId] 1660099895
+#time=1d8ac641b077910
+@="xmlfile"
+
+[Software\\Classes\\CLSID\\{48123BC4-99D9-11D1-A6B3-00C04FD91555}\\Version] 1660099895
+#time=1d8ac641b077a1e
+@="1.0"
+
+[Software\\Classes\\CLSID\\{48E2ED0F-98C2-4A37-BED5-166312DDD83F}] 1660099896
+#time=1d8ac641b83ea2c
+@="MFReadWriteClassFactory"
+
+[Software\\Classes\\CLSID\\{48E2ED0F-98C2-4A37-BED5-166312DDD83F}\\InprocServer32] 1660099896
+#time=1d8ac641b83eb12
+@="C:\\windows\\system32\\mfreadwrite.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4955DD33-B159-11D0-8FCF-00AA006BCC59}] 1660099896
+#time=1d8ac641b93d310
+@="CActiveIMMApp"
+
+[Software\\Classes\\CLSID\\{4955DD33-B159-11D0-8FCF-00AA006BCC59}\\InprocServer32] 1660099896
+#time=1d8ac641b93d3d8
+@="C:\\windows\\system32\\msimtf.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{4991D34B-80A1-4291-83B6-3328366B9097}] 1660099896
+#time=1d8ac641bab77d6
+"AppID"="{69AD4AEE-51BE-439B-A92C-86AE490E8B30}"
+
+[Software\\Classes\\CLSID\\{49C47CE0-9BA4-11D0-8212-00C04FC32C45}] 1660099896
+#time=1d8ac641b31906a
+@="SFilter Class"
+
+[Software\\Classes\\CLSID\\{49C47CE0-9BA4-11D0-8212-00C04FC32C45}\\InprocServer32] 1660099896
+#time=1d8ac641b3191aa
+@="C:\\windows\\system32\\amstream.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{49C47CE4-9BA4-11D0-8212-00C04FC32C45}] 1660099896
+#time=1d8ac641b319376
+@="Stream Class"
+
+[Software\\Classes\\CLSID\\{49C47CE4-9BA4-11D0-8212-00C04FC32C45}\\InprocServer32] 1660099896
+#time=1d8ac641b31942a
+@="C:\\windows\\system32\\amstream.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{49C47CE5-9BA4-11D0-8212-00C04FC32C45}] 1660099896
+#time=1d8ac641b31983a
+@="MMStream Class"
+
+[Software\\Classes\\CLSID\\{49C47CE5-9BA4-11D0-8212-00C04FC32C45}\\InprocServer32] 1660099896
+#time=1d8ac641b3198e4
+@="C:\\windows\\system32\\amstream.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4B59AFCC-B8C3-408A-B670-89E5FAB6FDA7}] 1660099897
+#time=1d8ac641c3229b6
+@="WIC Png tEXt Metadata Reader"
+"Author"="The Wine Project"
+"FriendlyName"="Chunk tEXt Reader"
+"MetadataFormat"="{568D8936-C0A9-4923-905D-DF2B38238FBC}"
+"RequiresFullStream"=dword:00000000
+"SpecVersion"="1.0.0.0"
+"SupportsPadding"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{4B59AFCC-B8C3-408A-B670-89E5FAB6FDA7}\\Containers\\{1B7CFAF4-713F-473C-BBCD-6137425FAEAF}\\0] 1660099897
+#time=1d8ac641c322c5e
+"DataOffset"=dword:00000004
+"Mask"=hex:ff,ff,ff,ff
+"Pattern"=hex:74,45,58,74
+"Position"=dword:00000004
+
+[Software\\Classes\\CLSID\\{4B59AFCC-B8C3-408A-B670-89E5FAB6FDA7}\\InprocServer32] 1660099897
+#time=1d8ac641bd8a99a
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4BE0537B-5C19-11D3-8BDC-00600893B1B6}] 1660099896
+#time=1d8ac641b5fbf30
+@="DirectMusicParamControlTrack"
+
+[Software\\Classes\\CLSID\\{4BE0537B-5C19-11D3-8BDC-00600893B1B6}\\InprocServer32] 1660099896
+#time=1d8ac641b5fbc74
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4BE0537B-5C19-11D3-8BDC-00600893B1B6}\\ProgId] 1660099896
+#time=1d8ac641b5fbe5e
+@="Microsoft.DirectMusicParamControlTrack.1"
+
+[Software\\Classes\\CLSID\\{4BE0537B-5C19-11D3-8BDC-00600893B1B6}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5fbf9e
+@="Microsoft.DirectMusicParamControlTrack"
+
+[Software\\Classes\\CLSID\\{4C1FC63A-695C-47E8-A339-1A194BE3D0B8}] 1660099897
+#time=1d8ac641bc97e0c
+@="UIAnimationManager"
+
+[Software\\Classes\\CLSID\\{4C1FC63A-695C-47E8-A339-1A194BE3D0B8}\\InprocServer32] 1660099897
+#time=1d8ac641bc97f56
+@="C:\\windows\\system32\\uianimation.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4CB43D7F-7EEE-4906-8698-60DA1C38F2FE}] 1660099897
+#time=1d8ac641bea6590
+@="UpdateSession Class"
+
+[Software\\Classes\\CLSID\\{4CB43D7F-7EEE-4906-8698-60DA1C38F2FE}\\InprocServer32] 1660099897
+#time=1d8ac641bea6194
+@="C:\\windows\\system32\\wuapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4CB43D7F-7EEE-4906-8698-60DA1C38F2FE}\\ProgId] 1660099897
+#time=1d8ac641bea62b6
+@="Microsoft.Update.Session.1"
+
+[Software\\Classes\\CLSID\\{4CB43D7F-7EEE-4906-8698-60DA1C38F2FE}\\TypeLib] 1660099897
+#time=1d8ac641bea63c4
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+
+[Software\\Classes\\CLSID\\{4CB43D7F-7EEE-4906-8698-60DA1C38F2FE}\\Version] 1660099897
+#time=1d8ac641bea64d2
+@="2.0"
+
+[Software\\Classes\\CLSID\\{4CB43D7F-7EEE-4906-8698-60DA1C38F2FE}\\VersionIndependentProgId] 1660099897
+#time=1d8ac641bea65ea
+@="Microsoft.Update.Session"
+
+[Software\\Classes\\CLSID\\{4DB1AD10-3391-11D2-9A33-00C04FA36145}] 1660099896
+#time=1d8ac641bc0e878
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{4DB1AD10-3391-11D2-9A33-00C04FA36145}\\InprocServer32] 1660099896
+#time=1d8ac641bc0ea1c
+@="C:\\windows\\system32\\sti.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4DD441AD-526D-4A77-9F1B-9841ED802FB0}] 1660099895
+#time=1d8ac641b06ff80
+@="SAXAttributes"
+
+[Software\\Classes\\CLSID\\{4DD441AD-526D-4A77-9F1B-9841ED802FB0}\\InprocServer32] 1660099895
+#time=1d8ac641b06fb2a
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4DD441AD-526D-4A77-9F1B-9841ED802FB0}\\ProgId] 1660099895
+#time=1d8ac641b06fc38
+@="Msxml2.SAXAttributes"
+
+[Software\\Classes\\CLSID\\{4DD441AD-526D-4A77-9F1B-9841ED802FB0}\\TypeLib] 1660099895
+#time=1d8ac641b06fd50
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{4DD441AD-526D-4A77-9F1B-9841ED802FB0}\\Version] 1660099895
+#time=1d8ac641b06feb8
+@="3.0"
+
+[Software\\Classes\\CLSID\\{4DD441AD-526D-4A77-9F1B-9841ED802FB0}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b06ffe4
+@="Msxml2.SAXAttributes"
+
+[Software\\Classes\\CLSID\\{4DF0C730-DF9D-4AE3-9153-AA6B82E9795A}] 1660099896
+#time=1d8ac641bbc9fd4
+@="Known Folder Manager"
+
+[Software\\Classes\\CLSID\\{4DF0C730-DF9D-4AE3-9153-AA6B82E9795A}\\InprocServer32] 1660099896
+#time=1d8ac641bbca0a6
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4EE17959-931E-49E4-A2C6-977ECF3628F3}] 1660099896
+#time=1d8ac641b61269a
+@="DirectMusic Audio VB Script Language"
+
+[Software\\Classes\\CLSID\\{4EE17959-931E-49E4-A2C6-977ECF3628F3}\\InprocServer32] 1660099896
+#time=1d8ac641b612492
+@="C:\\windows\\system32\\dmscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4EE17959-931E-49E4-A2C6-977ECF3628F3}\\ProgId] 1660099896
+#time=1d8ac641b6125c8
+@="AudioVBScript.1"
+
+[Software\\Classes\\CLSID\\{4EE17959-931E-49E4-A2C6-977ECF3628F3}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b6126fe
+@="AudioVBScript"
+
+[Software\\Classes\\CLSID\\{4EFE2452-168A-11D1-BC76-00C04FB9453B}] 1660099896
+#time=1d8ac641b5abc24
+@="MidiOut Class Manager"
+
+[Software\\Classes\\CLSID\\{4EFE2452-168A-11D1-BC76-00C04FB9453B}\\InprocServer32] 1660099896
+#time=1d8ac641b5abd1e
+@="C:\\windows\\system32\\devenum.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{4FD2A832-86C8-11D0-8FCA-00C04FD9189D}] 1660099896
+#time=1d8ac641b5a4e6a
+@="DirectDrawFactory"
+
+[Software\\Classes\\CLSID\\{4FD2A832-86C8-11D0-8FCA-00C04FD9189D}\\InprocServer32] 1660099896
+#time=1d8ac641b5a4f78
+@="C:\\windows\\system32\\ddrawex.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{50B6327F-AFD1-11D2-9CB9-0000F87A369E}] 1660099896
+#time=1d8ac641b314254
+@="AD System Info Object"
+
+[Software\\Classes\\CLSID\\{50B6327F-AFD1-11D2-9CB9-0000F87A369E}\\InprocServer32] 1660099896
+#time=1d8ac641b314312
+@="C:\\windows\\system32\\adsldp.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{50B6327F-AFD1-11D2-9CB9-0000F87A369E}\\ProgId] 1660099896
+#time=1d8ac641b2f0228
+@="ADSystemInfo"
+
+[Software\\Classes\\CLSID\\{50B6327F-AFD1-11D2-9CB9-0000F87A369E}\\TypeLib] 1660099896
+#time=1d8ac641b2f0340
+@="{97D25DB0-0363-11CF-ABC4-02608C9E7553}"
+
+[Software\\Classes\\CLSID\\{50B6327F-AFD1-11D2-9CB9-0000F87A369E}\\Version] 1660099896
+#time=1d8ac641b2f044e
+@="1.0"
+
+[Software\\Classes\\CLSID\\{50D5107A-D278-4871-8989-F4CEAAF59CFC}] 1660099896
+#time=1d8ac641b93d87e
+@="CActiveIMMAppEx_Trident"
+
+[Software\\Classes\\CLSID\\{50D5107A-D278-4871-8989-F4CEAAF59CFC}\\InprocServer32] 1660099896
+#time=1d8ac641b93d946
+@="C:\\windows\\system32\\msimtf.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{51B4ABF3-748F-4E3B-A276-C828330E926A}] 1660099896
+#time=1d8ac641bad10be
+@="Video Mixing Renderer 9"
+
+[Software\\Classes\\CLSID\\{51B4ABF3-748F-4E3B-A276-C828330E926A}\\InprocServer32] 1660099896
+#time=1d8ac641bad117c
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{529A9E6B-6587-4F23-AB9E-9C7D683E3C50}] 1660099896
+#time=1d8ac641b87eff0
+@="TF_ThreadMgr"
+
+[Software\\Classes\\CLSID\\{529A9E6B-6587-4F23-AB9E-9C7D683E3C50}\\InprocServer32] 1660099896
+#time=1d8ac641b87f0a4
+@="C:\\windows\\system32\\msctf.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{52A2AAAE-085D-4187-97EA-8C30DB990436}] 1660099896
+#time=1d8ac641b7455d0
+@="HHCtrl Object"
+
+[Software\\Classes\\CLSID\\{52A2AAAE-085D-4187-97EA-8C30DB990436}\\InprocServer32] 1660099896
+#time=1d8ac641b74510c
+@="C:\\windows\\system32\\hhctrl.ocx"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{52A2AAAE-085D-4187-97EA-8C30DB990436}\\ProgId] 1660099896
+#time=1d8ac641b745242
+@="Internet.HHCtrl.1"
+
+[Software\\Classes\\CLSID\\{52A2AAAE-085D-4187-97EA-8C30DB990436}\\TypeLib] 1660099896
+#time=1d8ac641b74535a
+@="{ADB880A2-D8FF-11CF-9377-00AA003B7A11}"
+
+[Software\\Classes\\CLSID\\{52A2AAAE-085D-4187-97EA-8C30DB990436}\\Version] 1660099896
+#time=1d8ac641b7454a4
+@="1.0"
+
+[Software\\Classes\\CLSID\\{52A2AAAE-085D-4187-97EA-8C30DB990436}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b745648
+@="Internet.HHCtrl"
+
+[Software\\Classes\\CLSID\\{53BD6B4E-3780-4693-AFC3-7161C2F3EE9C}] 1660099896
+#time=1d8ac641bbcd134
+@="MruLongList"
+
+[Software\\Classes\\CLSID\\{53BD6B4E-3780-4693-AFC3-7161C2F3EE9C}\\InprocServer32] 1660099896
+#time=1d8ac641bbcd1fc
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{54E211B6-3650-4F75-8334-FA359598E1C5}] 1660099896
+#time=1d8ac641b5d344a
+@="DirectManipulationManager"
+
+[Software\\Classes\\CLSID\\{54E211B6-3650-4F75-8334-FA359598E1C5}\\InprocServer32] 1660099896
+#time=1d8ac641b5d353a
+@="C:\\windows\\system32\\directmanipulation.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{550DDA30-0541-11D2-9CA9-0060B0EC3D39}] 1660099895
+#time=1d8ac641b02e9ea
+@="XML Data Source Object"
+
+[Software\\Classes\\CLSID\\{550DDA30-0541-11D2-9CA9-0060B0EC3D39}\\InprocServer32] 1660099895
+#time=1d8ac641b02e5e4
+@="C:\\windows\\system32\\msxml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{550DDA30-0541-11D2-9CA9-0060B0EC3D39}\\ProgId] 1660099895
+#time=1d8ac641b02e6f2
+@="Microsoft.XMLDSO.1.0"
+
+[Software\\Classes\\CLSID\\{550DDA30-0541-11D2-9CA9-0060B0EC3D39}\\TypeLib] 1660099895
+#time=1d8ac641b02e800
+@="{D63E0CE2-A0A2-11D0-9C02-00C04FC99C8E}"
+
+[Software\\Classes\\CLSID\\{550DDA30-0541-11D2-9CA9-0060B0EC3D39}\\Version] 1660099895
+#time=1d8ac641b02e90e
+@="1.0"
+
+[Software\\Classes\\CLSID\\{550DDA30-0541-11D2-9CA9-0060B0EC3D39}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b02ea4e
+@="Microsoft.XMLDSO"
+
+[Software\\Classes\\CLSID\\{55136805-B2DE-11D1-B9F2-00A0C98BC547}] 1660099895
+#time=1d8ac641b0da52e
+@="Shell Name Space"
+
+[Software\\Classes\\CLSID\\{55136805-B2DE-11D1-B9F2-00A0C98BC547}\\InprocServer32] 1660099896
+#time=1d8ac641b782584
+@="C:\\windows\\system32\\ieframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{55136805-B2DE-11D1-B9F2-00A0C98BC547}\\ProgId] 1660099895
+#time=1d8ac641b0da268
+@="ShellNameSpace.ShellNameSpace.1"
+
+[Software\\Classes\\CLSID\\{55136805-B2DE-11D1-B9F2-00A0C98BC547}\\TypeLib] 1660099895
+#time=1d8ac641b0da36c
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+
+[Software\\Classes\\CLSID\\{55136805-B2DE-11D1-B9F2-00A0C98BC547}\\Version] 1660099895
+#time=1d8ac641b0da47a
+@="1.1"
+
+[Software\\Classes\\CLSID\\{55136805-B2DE-11D1-B9F2-00A0C98BC547}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0da592
+@="ShellNameSpace.ShellNameSpace"
+
+[Software\\Classes\\CLSID\\{55A8FD00-4288-11D3-9BD1-8A0D61C88835}] 1660099896
+#time=1d8ac641b5fc5ac
+@="DirectMusicMarkerTrack"
+
+[Software\\Classes\\CLSID\\{55A8FD00-4288-11D3-9BD1-8A0D61C88835}\\InprocServer32] 1660099896
+#time=1d8ac641b5fc390
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{55A8FD00-4288-11D3-9BD1-8A0D61C88835}\\ProgId] 1660099896
+#time=1d8ac641b5fc4da
+@="Microsoft.DirectMusicMarkerTrack.1"
+
+[Software\\Classes\\CLSID\\{55A8FD00-4288-11D3-9BD1-8A0D61C88835}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5fc610
+@="Microsoft.DirectMusicMarkerTrack"
+
+[Software\\Classes\\CLSID\\{56FDF344-FD6D-11D0-958A-006097C9A090}] 1660099896
+#time=1d8ac641b69c660
+@="Task Bar Communication"
+
+[Software\\Classes\\CLSID\\{56FDF344-FD6D-11D0-958A-006097C9A090}\\InprocServer32] 1660099896
+#time=1d8ac641b69c7d2
+@="C:\\windows\\system32\\explorerframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{58356C5D-0BFD-48ED-93C5-F4520B6233DE}] 1660099896
+#time=1d8ac641b681130
+@="D3DX8"
+
+[Software\\Classes\\CLSID\\{58356C5D-0BFD-48ED-93C5-F4520B6233DE}\\InprocServer32] 1660099896
+#time=1d8ac641b680f3c
+@="C:\\windows\\system32\\dx8vb.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{58356C5D-0BFD-48ED-93C5-F4520B6233DE}\\ProgId] 1660099896
+#time=1d8ac641b681068
+@="DIRECT.D3DX8.0"
+
+[Software\\Classes\\CLSID\\{58356C5D-0BFD-48ED-93C5-F4520B6233DE}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b68119e
+@="DIRECT.D3DX8.0"
+
+[Software\\Classes\\CLSID\\{58C2B4D0-46E7-11D1-89AC-00A0C9054129}] 1660099896
+#time=1d8ac641b6266ea
+@="DirectMusicSynth"
+
+[Software\\Classes\\CLSID\\{58C2B4D0-46E7-11D1-89AC-00A0C9054129}\\InprocServer32] 1660099896
+#time=1d8ac641b62650a
+@="C:\\windows\\system32\\dmsynth.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{58C2B4D0-46E7-11D1-89AC-00A0C9054129}\\ProgId] 1660099896
+#time=1d8ac641b62662c
+@="Microsoft.DirectMusicSynth.1"
+
+[Software\\Classes\\CLSID\\{58C2B4D0-46E7-11D1-89AC-00A0C9054129}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b62676c
+@="Microsoft.DirectMusicSynth"
+
+[Software\\Classes\\CLSID\\{591209C7-767B-42B2-9FBA-44EE4615F2C7}] 1660099896
+#time=1d8ac641bbca83a
+@="Manage Application associations"
+
+[Software\\Classes\\CLSID\\{591209C7-767B-42B2-9FBA-44EE4615F2C7}\\InprocServer32] 1660099896
+#time=1d8ac641bbca902
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{593817A0-7DB3-11CF-A2DE-00AA00B93356}] 1660099896
+#time=1d8ac641b5a0e14
+@="DirectDraw Clipper Object"
+
+[Software\\Classes\\CLSID\\{593817A0-7DB3-11CF-A2DE-00AA00B93356}\\InprocServer32] 1660099896
+#time=1d8ac641b5a0efa
+@="C:\\windows\\system32\\ddraw.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{5A580C11-E5EB-11D1-A86E-0000F8084F96}] 1660099896
+#time=1d8ac641b79eaae
+@="CLSID_IHTTPMailTransport"
+
+[Software\\Classes\\CLSID\\{5A580C11-E5EB-11D1-A86E-0000F8084F96}\\InprocServer32] 1660099896
+#time=1d8ac641b79eba8
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{5AAF51B2-B1F0-11D1-B6AB-00A0C90833E9}] 1660099896
+#time=1d8ac641b8a506a
+@="Microsoft Scriptlet Element Behavior Handler"
+
+[Software\\Classes\\CLSID\\{5AAF51B2-B1F0-11D1-B6AB-00A0C90833E9}\\InprocServer32] 1660099896
+#time=1d8ac641b8a4f20
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{5AAF51B2-B1F0-11D1-B6AB-00A0C90833E9}\\ProgId] 1660099896
+#time=1d8ac641b8a5178
+@="Scriptlet.Behavior"
+
+[Software\\Classes\\CLSID\\{5AAF51B3-B1F0-11D1-B6AB-00A0C90833E9}] 1660099896
+#time=1d8ac641b8a41b0
+@="Microsoft Scriptlet HiFiTimer Uses"
+
+[Software\\Classes\\CLSID\\{5AAF51B3-B1F0-11D1-B6AB-00A0C90833E9}\\InprocServer32] 1660099896
+#time=1d8ac641b8a4106
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{5AAF51B3-B1F0-11D1-B6AB-00A0C90833E9}\\ProgId] 1660099896
+#time=1d8ac641b8a420a
+@="Scriptlet.HiFiTimer"
+
+[Software\\Classes\\CLSID\\{5B035261-40F9-11D1-AAEC-00805FC1270E}] 1660099896
+#time=1d8ac641b9c452c
+@="Network Configuration Component Object"
+
+[Software\\Classes\\CLSID\\{5B035261-40F9-11D1-AAEC-00805FC1270E}\\InprocServer32] 1660099896
+#time=1d8ac641b9c45fe
+@="C:\\windows\\system32\\netcfgx.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}] 1660099896
+#time=1d8ac641babdbb8
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}\\InprocServer32] 1660099896
+#time=1d8ac641babddde
+@="C:\\windows\\system32\\qmgrprxy.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{5D02926A-212E-11D0-9DF9-00A0C922E6EC}] 1660099896
+#time=1d8ac641b7c35de
+@="Microsoft InfoTech IStorage System"
+
+[Software\\Classes\\CLSID\\{5D02926A-212E-11D0-9DF9-00A0C922E6EC}\\InprocServer32] 1660099896
+#time=1d8ac641b7c038e
+@="C:\\windows\\system32\\itss.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{5D02926A-212E-11D0-9DF9-00A0C922E6EC}\\NotInsertable] 1660099896
+#time=1d8ac641b7c35de
+
+[Software\\Classes\\CLSID\\{5D02926A-212E-11D0-9DF9-00A0C922E6EC}\\ProgId] 1660099896
+#time=1d8ac641b7c04a6
+@="MSITFS1.0"
+
+[Software\\Classes\\CLSID\\{5D02926A-212E-11D0-9DF9-00A0C922E6EC}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b7c05be
+@="MSITFS"
+
+[Software\\Classes\\CLSID\\{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}] 1660099896
+#time=1d8ac641b8a89e0
+@="CoICOFilter Class"
+
+[Software\\Classes\\CLSID\\{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}\\InprocServer32] 1660099896
+#time=1d8ac641b8a7716
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}\\ProgId] 1660099896
+#time=1d8ac641b8a8c10
+@="ICOFilter.CoICOFilter.1"
+
+[Software\\Classes\\CLSID\\{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b8a8d28
+@="ICOFilter.CoICOFilter"
+
+[Software\\Classes\\CLSID\\{62BE5D10-60EB-11D0-BD3B-00A0C911CE86}] 1660099896
+#time=1d8ac641b5a9d0c
+@="System Device Enum"
+
+[Software\\Classes\\CLSID\\{62BE5D10-60EB-11D0-BD3B-00A0C911CE86}\\InprocServer32] 1660099896
+#time=1d8ac641b5a9de8
+@="C:\\windows\\system32\\devenum.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{636B9F10-0C7D-11D1-95B2-0020AFDC7421}] 1660099896
+#time=1d8ac641b62d184
+@="DirectMusic"
+
+[Software\\Classes\\CLSID\\{636B9F10-0C7D-11D1-95B2-0020AFDC7421}\\InprocServer32] 1660099896
+#time=1d8ac641b62cf54
+@="C:\\windows\\system32\\dmusic.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{636B9F10-0C7D-11D1-95B2-0020AFDC7421}\\ProgId] 1660099896
+#time=1d8ac641b62d0bc
+@="Microsoft.DirectMusic.1"
+
+[Software\\Classes\\CLSID\\{636B9F10-0C7D-11D1-95B2-0020AFDC7421}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b62d1e8
+@="Microsoft.DirectMusic"
+
+[Software\\Classes\\CLSID\\{645FF040-5081-101B-9F08-00AA002F954E}] 1660099897
+#time=1d8ac641bf2532c
+@="Trash"
+"LocalizedString"="@C:\\windows\\system32\\shell32.dll,-8964"
+
+[Software\\Classes\\CLSID\\{645FF040-5081-101B-9F08-00AA002F954E}\\DefaultIcon] 1660099896
+#time=1d8ac641bbce570
+@="C:\\windows\\system32\\shell32.dll,-33"
+
+[Software\\Classes\\CLSID\\{645FF040-5081-101B-9F08-00AA002F954E}\\InprocServer32] 1660099896
+#time=1d8ac641bbccca2
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{645FF040-5081-101B-9F08-00AA002F954E}\\ShellFolder] 1660099897
+#time=1d8ac641bf253a4
+"Attributes"=dword:20000140
+
+[Software\\Classes\\CLSID\\{64AB4BB7-111E-11D1-8F79-00C04FC2FBE1}] 1660099895
+#time=1d8ac641b0d9764
+@="Microsoft Shell UI Helper"
+
+[Software\\Classes\\CLSID\\{64AB4BB7-111E-11D1-8F79-00C04FC2FBE1}\\InprocServer32] 1660099896
+#time=1d8ac641b781814
+@="C:\\windows\\system32\\ieframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{64AB4BB7-111E-11D1-8F79-00C04FC2FBE1}\\ProgId] 1660099895
+#time=1d8ac641b0d949e
+@="Shell.UIHelper.1"
+
+[Software\\Classes\\CLSID\\{64AB4BB7-111E-11D1-8F79-00C04FC2FBE1}\\TypeLib] 1660099895
+#time=1d8ac641b0d95ac
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+
+[Software\\Classes\\CLSID\\{64AB4BB7-111E-11D1-8F79-00C04FC2FBE1}\\Version] 1660099895
+#time=1d8ac641b0d96ba
+@="1.1"
+
+[Software\\Classes\\CLSID\\{64AB4BB7-111E-11D1-8F79-00C04FC2FBE1}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0d97c8
+@="Shell.UIHelper"
+
+[Software\\Classes\\CLSID\\{65014010-9F62-11D1-A651-00600811D5CE}] 1660099896
+#time=1d8ac641b8a5b96
+@="Microsoft CrSource 4.0"
+
+[Software\\Classes\\CLSID\\{65014010-9F62-11D1-A651-00600811D5CE}\\InprocServer32] 1660099896
+#time=1d8ac641b8a59d4
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{65014010-9F62-11D1-A651-00600811D5CE}\\ProgId] 1660099896
+#time=1d8ac641b8a5ae2
+@="CrSource"
+
+[Software\\Classes\\CLSID\\{65014010-9F62-11D1-A651-00600811D5CE}\\Version] 1660099896
+#time=1d8ac641b8a5be6
+@="4.0"
+
+[Software\\Classes\\CLSID\\{65BD0711-24D2-4FF7-9324-ED2E5D3ABAFA}] 1660099896
+#time=1d8ac641bab3ffa
+@="MediaDet"
+
+[Software\\Classes\\CLSID\\{65BD0711-24D2-4FF7-9324-ED2E5D3ABAFA}\\InprocServer32] 1660099896
+#time=1d8ac641bab40cc
+@="C:\\windows\\system32\\qedit.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{667955AD-6B3B-43CA-B949-BC69B5BAFF7F}] 1660099896
+#time=1d8ac641b6447da
+@="DirectPlay8LobbiedApplication Object"
+
+[Software\\Classes\\CLSID\\{667955AD-6B3B-43CA-B949-BC69B5BAFF7F}\\InprocServer32] 1660099896
+#time=1d8ac641b6448ac
+@="C:\\windows\\system32\\dpnet.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{66E4E4FB-F385-4DD0-8D74-A2EFD1BC6178}] 1660099896
+#time=1d8ac641bbcd6a2
+@="Shell Image Data Factory"
+
+[Software\\Classes\\CLSID\\{66E4E4FB-F385-4DD0-8D74-A2EFD1BC6178}\\InprocServer32] 1660099896
+#time=1d8ac641bbcd76a
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{670D1D20-A068-11D0-B3F0-00AA003761C5}] 1660099896
+#time=1d8ac641bace332
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{670D1D20-A068-11D0-B3F0-00AA003761C5}\\InprocServer32] 1660099896
+#time=1d8ac641bace40e
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{699745C2-5066-4B82-A8E3-D40478DBEC8C}] 1660099897
+#time=1d8ac641c3203e6
+@="WIC Unknown Metadata Reader"
+"Author"="The Wine Project"
+"FriendlyName"="Unknown Metadata Reader"
+"MetadataFormat"="{A45E592F-9078-4A7C-ADB5-4EDC4FD61B1F}"
+"RequiresFullStream"=dword:00000000
+"SpecVersion"="1.0.0.0"
+"SupportsPadding"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{699745C2-5066-4B82-A8E3-D40478DBEC8C}\\InprocServer32] 1660099897
+#time=1d8ac641bd88b72
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{69BE8BB4-D66D-47C8-865A-ED1589433782}] 1660099897
+#time=1d8ac641c319c9e
+@="WIC BMP Encoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{0AF1D87E-FCFE-4188-BDEB-A7906471CBE3}"
+"FileExtensions"=".bmp,.dib,.rle"
+"FriendlyName"="BMP Encoder"
+"MimeTypes"="image/bmp"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{69BE8BB4-D66D-47C8-865A-ED1589433782}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC901}] 1660099897
+#time=1d8ac641c31a0c2
+
+[Software\\Classes\\CLSID\\{69BE8BB4-D66D-47C8-865A-ED1589433782}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC903}] 1660099897
+#time=1d8ac641c31a180
+
+[Software\\Classes\\CLSID\\{69BE8BB4-D66D-47C8-865A-ED1589433782}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c31a23e
+
+[Software\\Classes\\CLSID\\{69BE8BB4-D66D-47C8-865A-ED1589433782}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC905}] 1660099897
+#time=1d8ac641c31a004
+
+[Software\\Classes\\CLSID\\{69BE8BB4-D66D-47C8-865A-ED1589433782}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC909}] 1660099897
+#time=1d8ac641c319d0c
+
+[Software\\Classes\\CLSID\\{69BE8BB4-D66D-47C8-865A-ED1589433782}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90A}] 1660099897
+#time=1d8ac641c319dca
+
+[Software\\Classes\\CLSID\\{69BE8BB4-D66D-47C8-865A-ED1589433782}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c319e88
+
+[Software\\Classes\\CLSID\\{69BE8BB4-D66D-47C8-865A-ED1589433782}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90E}] 1660099897
+#time=1d8ac641c319f46
+
+[Software\\Classes\\CLSID\\{69BE8BB4-D66D-47C8-865A-ED1589433782}\\InprocServer32] 1660099897
+#time=1d8ac641bd84f5e
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{6A08CF80-0E18-11CF-A24D-0020AFD79767}] 1660099896
+#time=1d8ac641bad0bbe
+@="ACM wrapper"
+
+[Software\\Classes\\CLSID\\{6A08CF80-0E18-11CF-A24D-0020AFD79767}\\InprocServer32] 1660099896
+#time=1d8ac641bad0c72
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{6A170414-AAD9-4693-B806-3A0C47C570D6}] 1660099897
+#time=1d8ac641bdb9d30
+@="WINEAudioConverter"
+
+[Software\\Classes\\CLSID\\{6A170414-AAD9-4693-B806-3A0C47C570D6}\\InprocServer32] 1660099897
+#time=1d8ac641bdb9df8
+@="C:\\windows\\system32\\winegstreamer.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{6B2D6BA0-9F3E-4F27-920B-313CC426A39E}] 1660099896
+#time=1d8ac641ba674b6
+@="OpcFactory"
+
+[Software\\Classes\\CLSID\\{6B2D6BA0-9F3E-4F27-920B-313CC426A39E}\\InprocServer32] 1660099896
+#time=1d8ac641ba6759c
+@="C:\\windows\\system32\\opcservices.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}] 1660099897
+#time=1d8ac641c310324
+@="WIC BMP Decoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{0AF1D87E-FCFE-4188-BDEB-A7906471CBE3}"
+"FileExtensions"=".bmp,.dib,.rle"
+"FriendlyName"="BMP Decoder"
+"MimeTypes"="image/bmp"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC901}] 1660099897
+#time=1d8ac641c30fc1c
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC902}] 1660099897
+#time=1d8ac641c30fcda
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC903}] 1660099897
+#time=1d8ac641c30fda2
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c30fe60
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC909}] 1660099897
+#time=1d8ac641c30ff1e
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90A}] 1660099897
+#time=1d8ac641c30ffdc
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c31009a
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90E}] 1660099897
+#time=1d8ac641c310158
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c310216
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}\\InprocServer32] 1660099897
+#time=1d8ac641bd84298
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{6B462062-7CBF-400D-9FDB-813DD10F2778}\\Patterns\\0] 1660099897
+#time=1d8ac641c310752
+"EndOfStream"=dword:00000000
+"Length"=dword:00000002
+"Mask"=hex:ff,ff
+"Pattern"=hex:42,4d
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{6BC1CFFA-8FC1-4261-AC22-CFB4CC38DB50}] 1660099896
+#time=1d8ac641bad0952
+@="Default Video Renderer"
+
+[Software\\Classes\\CLSID\\{6BC1CFFA-8FC1-4261-AC22-CFB4CC38DB50}\\InprocServer32] 1660099896
+#time=1d8ac641bad0a10
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{6BF52A52-394A-11D3-B153-00C04F79FAA6}] 1660099897
+#time=1d8ac641be4989a
+@="Windows Media Player"
+
+[Software\\Classes\\CLSID\\{6BF52A52-394A-11D3-B153-00C04F79FAA6}\\Control] 1660099897
+#time=1d8ac641be49458
+
+[Software\\Classes\\CLSID\\{6BF52A52-394A-11D3-B153-00C04F79FAA6}\\InprocServer32] 1660099897
+#time=1d8ac641be484cc
+@="C:\\windows\\system32\\wmp.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{6BF52A52-394A-11D3-B153-00C04F79FAA6}\\Insertable] 1660099897
+#time=1d8ac641be49548
+
+[Software\\Classes\\CLSID\\{6BF52A52-394A-11D3-B153-00C04F79FAA6}\\MiscStatus] 1660099897
+#time=1d8ac641be49714
+@="0"
+
+[Software\\Classes\\CLSID\\{6BF52A52-394A-11D3-B153-00C04F79FAA6}\\MiscStatus\\1] 1660099897
+#time=1d8ac641be49782
+@="131473"
+
+[Software\\Classes\\CLSID\\{6BF52A52-394A-11D3-B153-00C04F79FAA6}\\ProgId] 1660099897
+#time=1d8ac641be485e4
+@="WMPlayer.OCX.7"
+
+[Software\\Classes\\CLSID\\{6BF52A52-394A-11D3-B153-00C04F79FAA6}\\Programmable] 1660099897
+#time=1d8ac641be4989a
+
+[Software\\Classes\\CLSID\\{6BF52A52-394A-11D3-B153-00C04F79FAA6}\\TypeLib] 1660099897
+#time=1d8ac641be48788
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+
+[Software\\Classes\\CLSID\\{6BF52A52-394A-11D3-B153-00C04F79FAA6}\\Version] 1660099897
+#time=1d8ac641be488be
+@="1.0"
+
+[Software\\Classes\\CLSID\\{6BF52A52-394A-11D3-B153-00C04F79FAA6}\\VersionIndependentProgId] 1660099897
+#time=1d8ac641be48a1c
+@="WMPlayer.OCX"
+
+[Software\\Classes\\CLSID\\{6E449686-C509-11CF-AAFA-00AA00B6015C}] 1660099896
+#time=1d8ac641b7b0826
+@="Microsoft Active Setup Engine"
+
+[Software\\Classes\\CLSID\\{6E449686-C509-11CF-AAFA-00AA00B6015C}\\InprocServer32] 1660099896
+#time=1d8ac641b7b08e4
+@="C:\\windows\\system32\\inseng.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC901}] 1660099897
+#time=1d8ac641c32d44c
+"Author"="The Wine Project"
+"BitLength"=dword:00000001
+"ChannelCount"=dword:00000001
+"FriendlyName"="1bpp Indexed"
+"NumericRepresentation"=dword:00000001
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC901}\\ChannelMasks] 1660099897
+#time=1d8ac641c32d4a6
+"0"=hex:01
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC902}] 1660099897
+#time=1d8ac641c32d97e
+"Author"="The Wine Project"
+"BitLength"=dword:00000002
+"ChannelCount"=dword:00000001
+"FriendlyName"="2bpp Indexed"
+"NumericRepresentation"=dword:00000001
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC902}\\ChannelMasks] 1660099897
+#time=1d8ac641c32d9d8
+"0"=hex:03
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC903}] 1660099897
+#time=1d8ac641c32deec
+"Author"="The Wine Project"
+"BitLength"=dword:00000004
+"ChannelCount"=dword:00000001
+"FriendlyName"="4bpp Indexed"
+"NumericRepresentation"=dword:00000001
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC903}\\ChannelMasks] 1660099897
+#time=1d8ac641c32df64
+"0"=hex:0f
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c32e428
+"Author"="The Wine Project"
+"BitLength"=dword:00000008
+"ChannelCount"=dword:00000001
+"FriendlyName"="8bpp Indexed"
+"NumericRepresentation"=dword:00000001
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}\\ChannelMasks] 1660099897
+#time=1d8ac641c32e48c
+"0"=hex:ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC905}] 1660099897
+#time=1d8ac641c32e95a
+"Author"="The Wine Project"
+"BitLength"=dword:00000001
+"ChannelCount"=dword:00000001
+"FriendlyName"="Black and White"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC905}\\ChannelMasks] 1660099897
+#time=1d8ac641c32e9b4
+"0"=hex:01
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC906}] 1660099897
+#time=1d8ac641c32f5a8
+"Author"="The Wine Project"
+"BitLength"=dword:00000002
+"ChannelCount"=dword:00000001
+"FriendlyName"="2bpp Grayscale"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC906}\\ChannelMasks] 1660099897
+#time=1d8ac641c32f6a2
+"0"=hex:03
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC907}] 1660099897
+#time=1d8ac641c330192
+"Author"="The Wine Project"
+"BitLength"=dword:00000004
+"ChannelCount"=dword:00000001
+"FriendlyName"="4bpp Grayscale"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC907}\\ChannelMasks] 1660099897
+#time=1d8ac641c3301ec
+"0"=hex:0f
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}] 1660099897
+#time=1d8ac641c3306e2
+"Author"="The Wine Project"
+"BitLength"=dword:00000008
+"ChannelCount"=dword:00000001
+"FriendlyName"="8bpp Grayscale"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}\\ChannelMasks] 1660099897
+#time=1d8ac641c330778
+"0"=hex:ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC909}] 1660099897
+#time=1d8ac641c3311a0
+"Author"="The Wine Project"
+"BitLength"=dword:00000010
+"ChannelCount"=dword:00000003
+"FriendlyName"="16bpp BGR555"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC909}\\ChannelMasks] 1660099897
+#time=1d8ac641c3312a4
+"0"=hex:1f,00
+"1"=hex:e0,03
+"2"=hex:00,7c
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90A}] 1660099897
+#time=1d8ac641c331768
+"Author"="The Wine Project"
+"BitLength"=dword:00000010
+"ChannelCount"=dword:00000003
+"FriendlyName"="16bpp BGR565"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90A}\\ChannelMasks] 1660099897
+#time=1d8ac641c331862
+"0"=hex:1f,00
+"1"=hex:e0,07
+"2"=hex:00,f8
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90B}] 1660099897
+#time=1d8ac641c330c78
+"Author"="The Wine Project"
+"BitLength"=dword:00000010
+"ChannelCount"=dword:00000001
+"FriendlyName"="16bpp Grayscale"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90B}\\ChannelMasks] 1660099897
+#time=1d8ac641c330cc8
+"0"=hex:ff,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c332366
+"Author"="The Wine Project"
+"BitLength"=dword:00000018
+"ChannelCount"=dword:00000003
+"FriendlyName"="24bpp BGR"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}\\ChannelMasks] 1660099897
+#time=1d8ac641c332460
+"0"=hex:ff,00,00
+"1"=hex:00,ff,00
+"2"=hex:00,00,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90D}] 1660099897
+#time=1d8ac641c33291a
+"Author"="The Wine Project"
+"BitLength"=dword:00000018
+"ChannelCount"=dword:00000003
+"FriendlyName"="24bpp RGB"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90D}\\ChannelMasks] 1660099897
+#time=1d8ac641c332a14
+"0"=hex:ff,00,00
+"1"=hex:00,ff,00
+"2"=hex:00,00,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90E}] 1660099897
+#time=1d8ac641c332ef6
+"Author"="The Wine Project"
+"BitLength"=dword:00000020
+"ChannelCount"=dword:00000003
+"FriendlyName"="32bpp BGR"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90E}\\ChannelMasks] 1660099897
+#time=1d8ac641c332ff0
+"0"=hex:ff,00,00,00
+"1"=hex:00,ff,00,00
+"2"=hex:00,00,ff,00
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c333b58
+"Author"="The Wine Project"
+"BitLength"=dword:00000020
+"ChannelCount"=dword:00000004
+"FriendlyName"="32bpp BGRA"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000001
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}\\ChannelMasks] 1660099897
+#time=1d8ac641c333cd4
+"0"=hex:ff,00,00,00
+"1"=hex:00,ff,00,00
+"2"=hex:00,00,ff,00
+"3"=hex:00,00,00,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC910}] 1660099897
+#time=1d8ac641c3348dc
+"Author"="The Wine Project"
+"BitLength"=dword:00000020
+"ChannelCount"=dword:00000004
+"FriendlyName"="32bpp PBGRA"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000001
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC910}\\ChannelMasks] 1660099897
+#time=1d8ac641c334a80
+"0"=hex:ff,00,00,00
+"1"=hex:00,ff,00,00
+"2"=hex:00,00,ff,00
+"3"=hex:00,00,00,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC911}] 1660099897
+#time=1d8ac641c335656
+"Author"="The Wine Project"
+"BitLength"=dword:00000020
+"ChannelCount"=dword:00000001
+"FriendlyName"="32bpp GrayFloat"
+"NumericRepresentation"=dword:00000005
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC911}\\ChannelMasks] 1660099897
+#time=1d8ac641c3356ba
+"0"=hex:ff,ff,ff,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC915}] 1660099897
+#time=1d8ac641c335c14
+"Author"="The Wine Project"
+"BitLength"=dword:00000030
+"ChannelCount"=dword:00000003
+"FriendlyName"="48bpp RGB"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC915}\\ChannelMasks] 1660099897
+#time=1d8ac641c335d36
+"0"=hex:ff,ff,00,00,00,00
+"1"=hex:00,00,ff,ff,00,00
+"2"=hex:00,00,00,00,ff,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC916}] 1660099897
+#time=1d8ac641c33627c
+"Author"="The Wine Project"
+"BitLength"=dword:00000040
+"ChannelCount"=dword:00000004
+"FriendlyName"="64bpp RGBA"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000001
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC916}\\ChannelMasks] 1660099897
+#time=1d8ac641c3363ee
+"0"=hex:ff,ff,00,00,00,00,00,00
+"1"=hex:00,00,ff,ff,00,00,00,00
+"2"=hex:00,00,00,00,ff,ff,00,00
+"3"=hex:00,00,00,00,00,00,ff,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC917}] 1660099897
+#time=1d8ac641c33695c
+"Author"="The Wine Project"
+"BitLength"=dword:00000040
+"ChannelCount"=dword:00000004
+"FriendlyName"="64bpp PRGBA"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000001
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC917}\\ChannelMasks] 1660099897
+#time=1d8ac641c336ac4
+"0"=hex:ff,ff,00,00,00,00,00,00
+"1"=hex:00,00,ff,ff,00,00,00,00
+"2"=hex:00,00,00,00,ff,ff,00,00
+"3"=hex:00,00,00,00,00,00,ff,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC919}] 1660099897
+#time=1d8ac641c33841e
+"Author"="The Wine Project"
+"BitLength"=dword:00000080
+"ChannelCount"=dword:00000004
+"FriendlyName"="128bpp RGBAFloat"
+"NumericRepresentation"=dword:00000005
+"SupportsTransparency"=dword:00000001
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC919}\\ChannelMasks] 1660099897
+#time=1d8ac641c3385a4
+"0"=hex:ff,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00
+"1"=hex:00,00,00,00,ff,ff,ff,ff,00,00,00,00,00,00,00,00
+"2"=hex:00,00,00,00,00,00,00,00,ff,ff,ff,ff,00,00,00,00
+"3"=hex:00,00,00,00,00,00,00,00,00,00,00,00,ff,ff,ff,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC91A}] 1660099897
+#time=1d8ac641c338b80
+"Author"="The Wine Project"
+"BitLength"=dword:00000080
+"ChannelCount"=dword:00000004
+"FriendlyName"="128bpp PRGBAFloat"
+"NumericRepresentation"=dword:00000005
+"SupportsTransparency"=dword:00000001
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC91A}\\ChannelMasks] 1660099897
+#time=1d8ac641c338cfc
+"0"=hex:ff,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00
+"1"=hex:00,00,00,00,ff,ff,ff,ff,00,00,00,00,00,00,00,00
+"2"=hex:00,00,00,00,00,00,00,00,ff,ff,ff,ff,00,00,00,00
+"3"=hex:00,00,00,00,00,00,00,00,00,00,00,00,ff,ff,ff,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC91C}] 1660099897
+#time=1d8ac641c33701e
+"Author"="The Wine Project"
+"BitLength"=dword:00000020
+"ChannelCount"=dword:00000004
+"FriendlyName"="32bpp CMYK"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC91C}\\ChannelMasks] 1660099897
+#time=1d8ac641c337186
+"0"=hex:ff,00,00,00
+"1"=hex:00,ff,00,00
+"2"=hex:00,00,ff,00
+"3"=hex:00,00,00,ff
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC91F}] 1660099897
+#time=1d8ac641c3376d6
+"Author"="The Wine Project"
+"BitLength"=dword:00000040
+"ChannelCount"=dword:00000004
+"FriendlyName"="64bpp CMYK"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{6FDDC324-4E03-4BFE-B185-3D77768DC91F}\\ChannelMasks] 1660099897
+#time=1d8ac641c33783e
+"0"=hex:ff,ff,00,00,00,00,00,00
+"1"=hex:00,00,ff,ff,00,00,00,00
+"2"=hex:00,00,00,00,ff,ff,00,00
+"3"=hex:00,00,00,00,00,00,ff,ff
+
+[Software\\Classes\\CLSID\\{70E102B0-5556-11CE-97C0-00AA0055595A}] 1660099896
+#time=1d8ac641bad06be
+@="Video Renderer"
+
+[Software\\Classes\\CLSID\\{70E102B0-5556-11CE-97C0-00AA0055595A}\\InprocServer32] 1660099896
+#time=1d8ac641bad077c
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{715D9C59-4442-11D2-9605-00C04F8EE628}] 1660099895
+#time=1d8ac641b0f3a10
+@="Speech Stream"
+
+[Software\\Classes\\CLSID\\{715D9C59-4442-11D2-9605-00C04F8EE628}\\InprocServer32] 1660099895
+#time=1d8ac641b0f35f6
+@="C:\\windows\\system32\\Speech\\Common\\sapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{715D9C59-4442-11D2-9605-00C04F8EE628}\\ProgId] 1660099895
+#time=1d8ac641b0f3718
+@="SAPI.SpStream.1"
+
+[Software\\Classes\\CLSID\\{715D9C59-4442-11D2-9605-00C04F8EE628}\\TypeLib] 1660099895
+#time=1d8ac641b0f383a
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+
+[Software\\Classes\\CLSID\\{715D9C59-4442-11D2-9605-00C04F8EE628}\\Version] 1660099895
+#time=1d8ac641b0f3952
+@="5.4"
+
+[Software\\Classes\\CLSID\\{715D9C59-4442-11D2-9605-00C04F8EE628}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0f3a92
+@="SAPI.SpStream"
+
+[Software\\Classes\\CLSID\\{71F96385-DDD6-48D3-A0C1-AE06E8B055FB}] 1660099896
+#time=1d8ac641bbc9d04
+@="Explorer Browser"
+
+[Software\\Classes\\CLSID\\{71F96385-DDD6-48D3-A0C1-AE06E8B055FB}\\InprocServer32] 1660099896
+#time=1d8ac641bbc9dd6
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{72C24DD5-D70A-438B-8A42-98424B88AFB8}] 1660099897
+#time=1d8ac641be89a12
+@="Windows Script Host Shell Object"
+
+[Software\\Classes\\CLSID\\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\\Implemented Categories\\{40fc6ed5-2438-11cf-a3db-080036f12502}] 1660099897
+#time=1d8ac641be89a80
+
+[Software\\Classes\\CLSID\\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\\InprocServer32] 1660099897
+#time=1d8ac641be85066
+@="C:\\windows\\system32\\wshom.ocx"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\\ProgId] 1660099897
+#time=1d8ac641be8517e
+@="WScript.Shell.1"
+
+[Software\\Classes\\CLSID\\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\\TypeLib] 1660099897
+#time=1d8ac641be85296
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+
+[Software\\Classes\\CLSID\\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\\Version] 1660099897
+#time=1d8ac641be853a4
+@="1.0"
+
+[Software\\Classes\\CLSID\\{72C24DD5-D70A-438B-8A42-98424B88AFB8}\\VersionIndependentProgId] 1660099897
+#time=1d8ac641be854bc
+@="WScript.Shell"
+
+[Software\\Classes\\CLSID\\{743F1DC6-5ABA-429F-8BDF-C54D03253DC2}] 1660099896
+#time=1d8ac641b643b5a
+@="DirectPlay8Client Object"
+
+[Software\\Classes\\CLSID\\{743F1DC6-5ABA-429F-8BDF-C54D03253DC2}\\InprocServer32] 1660099896
+#time=1d8ac641b643c40
+@="C:\\windows\\system32\\dpnet.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{7447A267-0015-42C8-A8F1-FB3B94C68361}] 1660099897
+#time=1d8ac641c323fbe
+@="WIC IMD Metadata Reader"
+"Author"="The Wine Project"
+"FriendlyName"="Image Descriptor Reader"
+"MetadataFormat"="{BD2BB086-4D52-48DD-9677-DB483E85AE8F}"
+"RequiresFullStream"=dword:00000000
+"SpecVersion"="1.0.0.0"
+"SupportsPadding"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{7447A267-0015-42C8-A8F1-FB3B94C68361}\\Containers\\{1F8A5601-7D4D-4CBD-9C82-1BC8D4EEB9A5}\\0] 1660099897
+#time=1d8ac641c324270
+"DataOffset"=dword:00000001
+"Mask"=hex:ff
+"Pattern"=hex:2c
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{7447A267-0015-42C8-A8F1-FB3B94C68361}\\InprocServer32] 1660099897
+#time=1d8ac641bd8c10a
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{76A64158-CB41-11D1-8B02-00600806D9B6}] 1660099895
+#time=1d8ac641b104cf2
+@="SWbemLocator"
+
+[Software\\Classes\\CLSID\\{76A64158-CB41-11D1-8B02-00600806D9B6}\\InprocServer32] 1660099895
+#time=1d8ac641b104964
+@="C:\\windows\\system32\\wbem\\wbemdisp.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{76A64158-CB41-11D1-8B02-00600806D9B6}\\ProgId] 1660099895
+#time=1d8ac641b104a68
+@="WbemScripting.SWbemLocator.1"
+
+[Software\\Classes\\CLSID\\{76A64158-CB41-11D1-8B02-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b104b58
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+
+[Software\\Classes\\CLSID\\{76A64158-CB41-11D1-8B02-00600806D9B6}\\Version] 1660099895
+#time=1d8ac641b104c52
+@="1.2"
+
+[Software\\Classes\\CLSID\\{76A64158-CB41-11D1-8B02-00600806D9B6}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b104d4c
+@="WbemScripting.SWbemLocator"
+
+[Software\\Classes\\CLSID\\{76E67A63-06E9-11D2-A840-006008059382}] 1660099896
+#time=1d8ac641b8aaa74
+@="Microsoft HTML Resource Pluggable Protocol"
+
+[Software\\Classes\\CLSID\\{76E67A63-06E9-11D2-A840-006008059382}\\InprocServer32] 1660099896
+#time=1d8ac641b8aab3c
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{77F10CF0-3DB5-4966-B520-B7C54FD35ED6}] 1660099896
+#time=1d8ac641bbcd3dc
+@="Custom Destination List"
+
+[Software\\Classes\\CLSID\\{77F10CF0-3DB5-4966-B520-B7C54FD35ED6}\\InprocServer32] 1660099896
+#time=1d8ac641bbcd4c2
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{7835EAE8-BF14-49D1-93CE-533A407B2248}\\Instance\\{1A3F11DC-B514-4B17-8C5F-2154513852F1}] 1660099897
+#time=1d8ac641c31de66
+"CLSID"="{1A3F11DC-B514-4B17-8C5F-2154513852F1}"
+
+[Software\\Classes\\CLSID\\{78530B75-61F9-11D2-8CAD-00A024580902}] 1660099896
+#time=1d8ac641bab3d34
+@="AMTimeline"
+
+[Software\\Classes\\CLSID\\{78530B75-61F9-11D2-8CAD-00A024580902}\\InprocServer32] 1660099896
+#time=1d8ac641bab3dfc
+@="C:\\windows\\system32\\qedit.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{79376820-07D0-11CF-A24D-0020AFD79767}] 1660099896
+#time=1d8ac641bad01d2
+@="DirectSound Audio Renderer"
+
+[Software\\Classes\\CLSID\\{79376820-07D0-11CF-A24D-0020AFD79767}\\InprocServer32] 1660099896
+#time=1d8ac641bad0286
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{79BA9E00-B6EE-11D1-86BE-00C04FBF8FEF}] 1660099896
+#time=1d8ac641b5e864c
+@="DirectMusicBand"
+
+[Software\\Classes\\CLSID\\{79BA9E00-B6EE-11D1-86BE-00C04FBF8FEF}\\InprocServer32] 1660099896
+#time=1d8ac641b5e8458
+@="C:\\windows\\system32\\dmband.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{79BA9E00-B6EE-11D1-86BE-00C04FBF8FEF}\\ProgId] 1660099896
+#time=1d8ac641b5e858e
+@="Microsoft.DirectMusicBand.1"
+
+[Software\\Classes\\CLSID\\{79BA9E00-B6EE-11D1-86BE-00C04FBF8FEF}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5e86b0
+@="Microsoft.DirectMusicBand"
+
+[Software\\Classes\\CLSID\\{79DEA627-A08A-43AC-8EF5-6900B9299126}] 1660099896
+#time=1d8ac641b5d3c88
+@="DCompManipulationCompositor"
+
+[Software\\Classes\\CLSID\\{79DEA627-A08A-43AC-8EF5-6900B9299126}\\InprocServer32] 1660099896
+#time=1d8ac641b5d3d64
+@="C:\\windows\\system32\\directmanipulation.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{79EAC9D0-BAF9-11CE-8C82-00AA004BA90B}] 1660099896
+#time=1d8ac641b74db22
+@="StdHlink"
+
+[Software\\Classes\\CLSID\\{79EAC9D0-BAF9-11CE-8C82-00AA004BA90B}\\InprocServer32] 1660099896
+#time=1d8ac641b74dc62
+@="C:\\windows\\system32\\hlink.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{79EAC9D1-BAF9-11CE-8C82-00AA004BA90B}] 1660099896
+#time=1d8ac641b74de4c
+@="StdHlinkBrowseContext"
+
+[Software\\Classes\\CLSID\\{79EAC9D1-BAF9-11CE-8C82-00AA004BA90B}\\InprocServer32] 1660099896
+#time=1d8ac641b74e4c8
+@="C:\\windows\\system32\\hlink.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{79EAC9E0-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb86ac
+@="URL Moniker"
+
+[Software\\Classes\\CLSID\\{79EAC9E0-BAF9-11CE-8C82-00AA004BA90B}\\InprocServer32] 1660099897
+#time=1d8ac641bcb879c
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{79EAC9E2-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb89ae
+@="http: Asynchronous Pluggable Protocol Handler"
+
+[Software\\Classes\\CLSID\\{79EAC9E2-BAF9-11CE-8C82-00AA004BA90B}\\InprocServer32] 1660099897
+#time=1d8ac641bcb8a76
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{79EAC9E3-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb8c56
+@="ftp: Asynchronous Pluggable Protocol Handler"
+
+[Software\\Classes\\CLSID\\{79EAC9E3-BAF9-11CE-8C82-00AA004BA90B}\\InprocServer32] 1660099897
+#time=1d8ac641bcb8d1e
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{79EAC9E4-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb8f1c
+@="gopher: Asynchronous Pluggable Protocol Handler"
+
+[Software\\Classes\\CLSID\\{79EAC9E4-BAF9-11CE-8C82-00AA004BA90B}\\InprocServer32] 1660099897
+#time=1d8ac641bcb8fe4
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{79EAC9E5-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb91ce
+@="https: Asynchronous Pluggable Protocol Handler"
+
+[Software\\Classes\\CLSID\\{79EAC9E5-BAF9-11CE-8C82-00AA004BA90B}\\InprocServer32] 1660099897
+#time=1d8ac641bcb9296
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{79EAC9E6-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb9476
+@="mk: Asynchronous Pluggable Protocol Handler"
+
+[Software\\Classes\\CLSID\\{79EAC9E6-BAF9-11CE-8C82-00AA004BA90B}\\InprocServer32] 1660099897
+#time=1d8ac641bcb953e
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{79EAC9E7-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb973c
+@="file:, local: Asynchronous Pluggable Protocol Handler"
+
+[Software\\Classes\\CLSID\\{79EAC9E7-BAF9-11CE-8C82-00AA004BA90B}\\InprocServer32] 1660099897
+#time=1d8ac641bcb9804
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcba25e
+@="URLMoniker ProxyStub Factory"
+
+[Software\\Classes\\CLSID\\{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}\\InprocServer32] 1660099897
+#time=1d8ac641bcba330
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}] 1660099897
+#time=1d8ac641bcb9caa
+@="Security Manager"
+
+[Software\\Classes\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\InprocServer32] 1660099897
+#time=1d8ac641bcb9d72
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{7B8A2D95-0AC9-11D1-896C-00C04FB6BFC4}] 1660099897
+#time=1d8ac641bcb9f98
+@="URL Zone Manager"
+
+[Software\\Classes\\CLSID\\{7B8A2D95-0AC9-11D1-896C-00C04FB6BFC4}\\InprocServer32] 1660099897
+#time=1d8ac641bcba060
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{7C6E29BC-8B8B-4C3D-859E-AF6CD158BE0F}] 1660099895
+#time=1d8ac641b0a306a
+@="SAX XML Reader 4.0"
+
+[Software\\Classes\\CLSID\\{7C6E29BC-8B8B-4C3D-859E-AF6CD158BE0F}\\InprocServer32] 1660099895
+#time=1d8ac641b0a2a34
+@="C:\\windows\\system32\\msxml4.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{7C6E29BC-8B8B-4C3D-859E-AF6CD158BE0F}\\ProgId] 1660099895
+#time=1d8ac641b0a2b9c
+@="Msxml2.SAXXMLReader.4.0"
+
+[Software\\Classes\\CLSID\\{7C6E29BC-8B8B-4C3D-859E-AF6CD158BE0F}\\TypeLib] 1660099895
+#time=1d8ac641b0a2f66
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{7C6E29BC-8B8B-4C3D-859E-AF6CD158BE0F}\\Version] 1660099895
+#time=1d8ac641b0a30e2
+@="4.0"
+
+[Software\\Classes\\CLSID\\{7ED96837-96F0-4812-B211-F13C24117ED3}\\Instance\\{381DDA3C-9CE9-4834-A23E-1F98F8FC52BE}] 1660099897
+#time=1d8ac641c3112ce
+"CLSID"="{381DDA3C-9CE9-4834-A23E-1F98F8FC52BE}"
+
+[Software\\Classes\\CLSID\\{7ED96837-96F0-4812-B211-F13C24117ED3}\\Instance\\{389EA17B-5078-4CDE-B6EF-25C15175C751}] 1660099897
+#time=1d8ac641c3153ba
+"CLSID"="{389EA17B-5078-4CDE-B6EF-25C15175C751}"
+
+[Software\\Classes\\CLSID\\{7ED96837-96F0-4812-B211-F13C24117ED3}\\Instance\\{6B462062-7CBF-400D-9FDB-813DD10F2778}] 1660099897
+#time=1d8ac641c30f816
+"CLSID"="{6B462062-7CBF-400D-9FDB-813DD10F2778}"
+
+[Software\\Classes\\CLSID\\{7ED96837-96F0-4812-B211-F13C24117ED3}\\Instance\\{9053699F-A341-429D-9E90-EE437CF80C73}] 1660099897
+#time=1d8ac641c3109a0
+"CLSID"="{9053699F-A341-429D-9E90-EE437CF80C73}"
+
+[Software\\Classes\\CLSID\\{7ED96837-96F0-4812-B211-F13C24117ED3}\\Instance\\{9456A480-E88B-43EA-9E73-0B2D9B71B1CA}] 1660099897
+#time=1d8ac641c31280e
+"CLSID"="{9456A480-E88B-43EA-9E73-0B2D9B71B1CA}"
+
+[Software\\Classes\\CLSID\\{7ED96837-96F0-4812-B211-F13C24117ED3}\\Instance\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}] 1660099897
+#time=1d8ac641c3132cc
+"CLSID"="{A26CEC36-234C-4950-AE16-E34AACE71D0D}"
+
+[Software\\Classes\\CLSID\\{7ED96837-96F0-4812-B211-F13C24117ED3}\\Instance\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}] 1660099897
+#time=1d8ac641c3181c8
+"CLSID"="{B11FC79A-67CC-43E6-A9CE-E3D54945D304}"
+
+[Software\\Classes\\CLSID\\{7ED96837-96F0-4812-B211-F13C24117ED3}\\Instance\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}] 1660099897
+#time=1d8ac641c3165da
+"CLSID"="{B54E85D9-FE23-499F-8B88-6ACEA713752B}"
+
+[Software\\Classes\\CLSID\\{7ED96837-96F0-4812-B211-F13C24117ED3}\\Instance\\{C61BFCDF-2E0F-4AAD-A8D7-E06BAFEBCDFE}] 1660099897
+#time=1d8ac641c311ee0
+"CLSID"="{C61BFCDF-2E0F-4AAD-A8D7-E06BAFEBCDFE}"
+
+[Software\\Classes\\CLSID\\{810B5013-E88D-11D2-8BC1-00600893B1B6}] 1660099896
+#time=1d8ac641b60f774
+@="DirectMusic Script Object"
+
+[Software\\Classes\\CLSID\\{810B5013-E88D-11D2-8BC1-00600893B1B6}\\InprocServer32] 1660099896
+#time=1d8ac641b60f562
+@="C:\\windows\\system32\\dmscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{810B5013-E88D-11D2-8BC1-00600893B1B6}\\ProgId] 1660099896
+#time=1d8ac641b60f67a
+@="Microsoft.DirectMusicScript.1"
+
+[Software\\Classes\\CLSID\\{810B5013-E88D-11D2-8BC1-00600893B1B6}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b60f7d8
+@="Microsoft.DirectMusicScript"
+
+[Software\\Classes\\CLSID\\{83BC5EC0-6F2A-11D0-A1C4-00AA00C16E65}] 1660099896
+#time=1d8ac641b66c06e
+@="CommonQuery"
+
+[Software\\Classes\\CLSID\\{83BC5EC0-6F2A-11D0-A1C4-00AA00C16E65}\\InprocServer32] 1660099896
+#time=1d8ac641b66c140
+@="C:\\windows\\system32\\dsquery.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{8496E040-AF4C-11D0-8212-00C04FC32C45}] 1660099896
+#time=1d8ac641b3195d8
+@="AuStream Class"
+
+[Software\\Classes\\CLSID\\{8496E040-AF4C-11D0-8212-00C04FC32C45}\\InprocServer32] 1660099896
+#time=1d8ac641b31968c
+@="C:\\windows\\system32\\amstream.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{8596E5F0-0DA5-11D0-BD21-00A0C911CE86}] 1660099896
+#time=1d8ac641baabecc
+@="FileWriter"
+
+[Software\\Classes\\CLSID\\{8596E5F0-0DA5-11D0-BD21-00A0C911CE86}\\InprocServer32] 1660099896
+#time=1d8ac641baac0c0
+@="C:\\windows\\system32\\qcap.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{860BB310-5D01-11D0-BD3B-00A0C911CE86}] 1660099896
+#time=1d8ac641b5ab21a
+@="VFW Capture Class Manager"
+
+[Software\\Classes\\CLSID\\{860BB310-5D01-11D0-BD3B-00A0C911CE86}\\InprocServer32] 1660099896
+#time=1d8ac641b5ab2ec
+@="C:\\windows\\system32\\devenum.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{86C14003-4D6B-4EF3-A7B4-0506663B2E68}] 1660099896
+#time=1d8ac641bbcab0a
+@="Application Destination List"
+
+[Software\\Classes\\CLSID\\{86C14003-4D6B-4EF3-A7B4-0506663B2E68}\\InprocServer32] 1660099896
+#time=1d8ac641bbcabd2
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{871C5380-42A0-1069-A2EA-08002B30309D}] 1660099897
+#time=1d8ac641c4a34fc
+@="Internet"
+
+[Software\\Classes\\CLSID\\{871C5380-42A0-1069-A2EA-08002B30309D}\\DefaultIcon] 1660099897
+#time=1d8ac641c4a304c
+@="shdoclc.dll,-190"
+
+[Software\\Classes\\CLSID\\{871C5380-42A0-1069-A2EA-08002B30309D}\\InprocServer32] 1660099896
+#time=1d8ac641b78686e
+@="C:\\windows\\system32\\ieframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{871C5380-42A0-1069-A2EA-08002B30309D}\\Shell] 1660099897
+#time=1d8ac641c4a3254
+@="OpenHomePage"
+
+[Software\\Classes\\CLSID\\{871C5380-42A0-1069-A2EA-08002B30309D}\\Shell\\OpenHomePage] 1660099897
+#time=1d8ac641c4a3380
+@="Open &Home Page"
+
+[Software\\Classes\\CLSID\\{871C5380-42A0-1069-A2EA-08002B30309D}\\Shell\\OpenHomePage\\Command] 1660099897
+#time=1d8ac641c4a3420
+@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\""
+
+[Software\\Classes\\CLSID\\{871C5380-42A0-1069-A2EA-08002B30309D}\\ShellFolder] 1660099897
+#time=1d8ac641c4a35b0
+@="0x24"
+
+[Software\\Classes\\CLSID\\{87FC0268-9A55-4360-95AA-004A1D9DE26C}] 1660099896
+#time=1d8ac641b66459e
+@="DirectSoundWavesReverbDMO"
+
+[Software\\Classes\\CLSID\\{87FC0268-9A55-4360-95AA-004A1D9DE26C}\\InprocServer32] 1660099896
+#time=1d8ac641b66436e
+@="C:\\windows\\system32\\dsdmo.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{87FC0268-9A55-4360-95AA-004A1D9DE26C}\\ProgId] 1660099896
+#time=1d8ac641b6644a4
+@="Microsoft.DirectSoundWavesReverbDMO.1"
+
+[Software\\Classes\\CLSID\\{87FC0268-9A55-4360-95AA-004A1D9DE26C}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b664602
+@="Microsoft.DirectSoundWavesReverbDMO"
+
+[Software\\Classes\\CLSID\\{8856F961-340A-11D0-A96B-00C04FD705A2}] 1660099896
+#time=1d8ac641b787de0
+@="Microsoft Web Browser"
+
+[Software\\Classes\\CLSID\\{8856F961-340A-11D0-A96B-00C04FD705A2}\\Control] 1660099896
+#time=1d8ac641b787de0
+
+[Software\\Classes\\CLSID\\{8856F961-340A-11D0-A96B-00C04FD705A2}\\InprocServer32] 1660099896
+#time=1d8ac641b780748
+@="C:\\windows\\system32\\ieframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{8856F961-340A-11D0-A96B-00C04FD705A2}\\ProgId] 1660099895
+#time=1d8ac641b0d83b4
+@="Shell.Explorer.2"
+
+[Software\\Classes\\CLSID\\{8856F961-340A-11D0-A96B-00C04FD705A2}\\TypeLib] 1660099895
+#time=1d8ac641b0d84b8
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+
+[Software\\Classes\\CLSID\\{8856F961-340A-11D0-A96B-00C04FD705A2}\\Version] 1660099895
+#time=1d8ac641b0d85c6
+@="1.1"
+
+[Software\\Classes\\CLSID\\{8856F961-340A-11D0-A96B-00C04FD705A2}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0d86d4
+@="Shell.Explorer"
+
+[Software\\Classes\\CLSID\\{88753B26-5B24-49BD-B2E7-0C445C78C982}] 1660099897
+#time=1d8ac641bdb97e0
+@="VideoProcessorMFT"
+
+[Software\\Classes\\CLSID\\{88753B26-5B24-49BD-B2E7-0C445C78C982}\\InprocServer32] 1660099897
+#time=1d8ac641bdb989e
+@="C:\\windows\\system32\\winegstreamer.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D969C0-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b09f91a
+@="XML DOM Document 4.0"
+
+[Software\\Classes\\CLSID\\{88D969C0-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b09f604
+@="C:\\windows\\system32\\msxml4.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D969C0-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b09f744
+@="Msxml2.DOMDocument.4.0"
+
+[Software\\Classes\\CLSID\\{88D969C0-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b09f85c
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D969C0-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b09f992
+@="4.0"
+
+[Software\\Classes\\CLSID\\{88D969C1-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b09ff82
+@="Free threaded XML DOM Document 4.0"
+
+[Software\\Classes\\CLSID\\{88D969C1-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b09fc8a
+@="C:\\windows\\system32\\msxml4.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D969C1-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b09fdac
+@="Msxml2.FreeThreadedDOMDocument.4.0"
+
+[Software\\Classes\\CLSID\\{88D969C1-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b09fec4
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D969C1-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b09ffe6
+@="4.0"
+
+[Software\\Classes\\CLSID\\{88D969C2-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0a1b5c
+@="XML Schema Cache 4.0"
+
+[Software\\Classes\\CLSID\\{88D969C2-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0a17c4
+@="C:\\windows\\system32\\msxml4.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D969C2-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0a192c
+@="Msxml2.XMLSchemaCache.4.0"
+
+[Software\\Classes\\CLSID\\{88D969C2-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0a1a76
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D969C2-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0a1bca
+@="4.0"
+
+[Software\\Classes\\CLSID\\{88D969C3-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0a23d6
+@="XSL Template 4.0"
+
+[Software\\Classes\\CLSID\\{88D969C3-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0a1f3a
+@="C:\\windows\\system32\\msxml4.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D969C3-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0a208e
+@="Msxml2.XSLTemplate.4.0"
+
+[Software\\Classes\\CLSID\\{88D969C3-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0a22e6
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D969C3-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0a244e
+@="4.0"
+
+[Software\\Classes\\CLSID\\{88D969C5-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0a066c
+@="XML HTTP 4.0"
+
+[Software\\Classes\\CLSID\\{88D969C5-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0a031a
+@="C:\\windows\\system32\\msxml4.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{88D969C5-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0a0446
+@="Msxml2.XMLHTTP.4.0"
+
+[Software\\Classes\\CLSID\\{88D969C5-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0a057c
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D969C5-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0a06da
+@="4.0"
+
+[Software\\Classes\\CLSID\\{88D969C6-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0a1404
+@="Server XML HTTP 4.0"
+
+[Software\\Classes\\CLSID\\{88D969C6-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0a0a18
+@="C:\\windows\\system32\\msxml4.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{88D969C6-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0a0f9a
+@="Msxml2.ServerXMLHTTP.4.0"
+
+[Software\\Classes\\CLSID\\{88D969C6-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0a12f6
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D969C6-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0a147c
+@="4.0"
+
+[Software\\Classes\\CLSID\\{88D969C8-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0a3fce
+@="MXXMLWriter 4.0"
+
+[Software\\Classes\\CLSID\\{88D969C8-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0a3c5e
+@="C:\\windows\\system32\\msxml4.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D969C8-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0a3db2
+@="Msxml2.MXXMLWriter.4.0"
+
+[Software\\Classes\\CLSID\\{88D969C8-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0a3efc
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D969C8-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0a41e0
+@="4.0"
+
+[Software\\Classes\\CLSID\\{88D969C9-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0a383a
+@="MXHTMLWriter 4.0"
+
+[Software\\Classes\\CLSID\\{88D969C9-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0a342a
+@="C:\\windows\\system32\\msxml4.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D969C9-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0a359c
+@="Msxml2.MXHTMLWriter.4.0"
+
+[Software\\Classes\\CLSID\\{88D969C9-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0a370e
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D969C9-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0a38c6
+@="4.0"
+
+[Software\\Classes\\CLSID\\{88D969CA-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0a5626
+@="SAXAttributes 4.0"
+
+[Software\\Classes\\CLSID\\{88D969CA-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0a52ca
+@="C:\\windows\\system32\\msxml4.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D969CA-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0a5414
+@="Msxml2.SAXAttributes.4.0"
+
+[Software\\Classes\\CLSID\\{88D969CA-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0a5554
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D969CA-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0a5694
+@="4.0"
+
+[Software\\Classes\\CLSID\\{88D969D6-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0a4bf4
+@="MXNamespaceManager 4.0"
+
+[Software\\Classes\\CLSID\\{88D969D6-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0a4528
+@="C:\\windows\\system32\\msxml4.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D969D6-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0a48ca
+@="Msxml2.MXNamespaceManager.4.0"
+
+[Software\\Classes\\CLSID\\{88D969D6-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0a4b22
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D969D6-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0a4c6c
+@="4.0"
+
+[Software\\Classes\\CLSID\\{88D96A05-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0c68bc
+@="XML DOM Document 6.0"
+
+[Software\\Classes\\CLSID\\{88D96A05-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0c6628
+@="C:\\windows\\system32\\msxml6.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D96A05-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0c6722
+@="Msxml2.DOMDocument.6.0"
+
+[Software\\Classes\\CLSID\\{88D96A05-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0c681c
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D96A05-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0c6916
+@="6.0"
+
+[Software\\Classes\\CLSID\\{88D96A06-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0c703c
+@="Free threaded XML DOM Document 6.0"
+
+[Software\\Classes\\CLSID\\{88D96A06-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0c6d1c
+@="C:\\windows\\system32\\msxml6.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D96A06-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0c6ea2
+@="Msxml2.FreeThreadedDOMDocument.6.0"
+
+[Software\\Classes\\CLSID\\{88D96A06-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0c6f92
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D96A06-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0c708c
+@="6.0"
+
+[Software\\Classes\\CLSID\\{88D96A07-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0c7bae
+@="XML Schema Cache 6.0"
+
+[Software\\Classes\\CLSID\\{88D96A07-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0c78c0
+@="C:\\windows\\system32\\msxml6.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D96A07-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0c79ba
+@="Msxml2.XMLSchemaCache.6.0"
+
+[Software\\Classes\\CLSID\\{88D96A07-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0c7ad2
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D96A07-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0c7c12
+@="6.0"
+
+[Software\\Classes\\CLSID\\{88D96A08-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0c9d82
+@="XSL Template 6.0"
+
+[Software\\Classes\\CLSID\\{88D96A08-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0c9ab2
+@="C:\\windows\\system32\\msxml6.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D96A08-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0c9bca
+@="Msxml2.XSLTemplate.6.0"
+
+[Software\\Classes\\CLSID\\{88D96A08-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0c9cd8
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D96A08-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0c9de6
+@="6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0A-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0ca35e
+@="XML HTTP 6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0A-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0ca098
+@="C:\\windows\\system32\\msxml6.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{88D96A0A-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0ca1a6
+@="Msxml2.XMLHTTP.6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0A-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0ca2b4
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D96A0A-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0ca3c2
+@="6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0B-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0cab56
+@="Server XML HTTP 6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0B-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0ca7aa
+@="C:\\windows\\system32\\msxml6.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{88D96A0B-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0ca8c2
+@="Msxml2.ServerXMLHTTP.6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0B-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0caaa2
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D96A0B-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0cabb0
+@="6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0C-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0c760e
+@="SAX XML Reader 6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0C-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0c7370
+@="C:\\windows\\system32\\msxml6.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D96A0C-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0c7474
+@="Msxml2.SAXXMLReader.6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0C-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0c756e
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D96A0C-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0c765e
+@="6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0E-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0c97a6
+@="SAXAttributes 6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0E-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0c94cc
+@="C:\\windows\\system32\\msxml6.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D96A0E-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0c95e4
+@="Msxml2.SAXAttributes.6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0E-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0c96f2
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D96A0E-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0c9814
+@="6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0F-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0c8a40
+@="MXXMLWriter 6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0F-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0c8766
+@="C:\\windows\\system32\\msxml6.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D96A0F-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0c887e
+@="Msxml2.MXXMLWriter.6.0"
+
+[Software\\Classes\\CLSID\\{88D96A0F-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0c8996
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D96A0F-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0c8aa4
+@="6.0"
+
+[Software\\Classes\\CLSID\\{88D96A10-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0c841e
+@="MXHTMLWriter 6.0"
+
+[Software\\Classes\\CLSID\\{88D96A10-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0c80e0
+@="C:\\windows\\system32\\msxml6.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D96A10-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0c8202
+@="Msxml2.MXHTMLWriter.6.0"
+
+[Software\\Classes\\CLSID\\{88D96A10-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0c836a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D96A10-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0c8482
+@="6.0"
+
+[Software\\Classes\\CLSID\\{88D96A11-F192-11D4-A65F-0040963251E5}] 1660099895
+#time=1d8ac641b0c91ca
+@="MXNamespaceManager 6.0"
+
+[Software\\Classes\\CLSID\\{88D96A11-F192-11D4-A65F-0040963251E5}\\InprocServer32] 1660099895
+#time=1d8ac641b0c8ec8
+@="C:\\windows\\system32\\msxml6.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{88D96A11-F192-11D4-A65F-0040963251E5}\\ProgId] 1660099895
+#time=1d8ac641b0c9008
+@="Msxml2.MXNamespaceManager.6.0"
+
+[Software\\Classes\\CLSID\\{88D96A11-F192-11D4-A65F-0040963251E5}\\TypeLib] 1660099895
+#time=1d8ac641b0c9120
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{88D96A11-F192-11D4-A65F-0040963251E5}\\Version] 1660099895
+#time=1d8ac641b0c922e
+@="6.0"
+
+[Software\\Classes\\CLSID\\{8A667154-F9CB-11D2-AD8A-0060B0575ABC}] 1660099896
+#time=1d8ac641b677144
+@="Microsoft DirectSound Wave"
+
+[Software\\Classes\\CLSID\\{8A667154-F9CB-11D2-AD8A-0060B0575ABC}\\InprocServer32] 1660099896
+#time=1d8ac641b676f32
+@="C:\\windows\\system32\\dswave.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{8A667154-F9CB-11D2-AD8A-0060B0575ABC}\\ProgId] 1660099896
+#time=1d8ac641b67707c
+@="Microsoft.DirectSoundWave.1"
+
+[Software\\Classes\\CLSID\\{8A667154-F9CB-11D2-AD8A-0060B0575ABC}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b6771a8
+@="Microsoft.DirectSoundWave"
+
+[Software\\Classes\\CLSID\\{8A9B1CDD-FCD7-419C-8B44-42FD17DB1887}] 1660099897
+#time=1d8ac641bc98140
+@="UIAnimationTransitionFactory"
+
+[Software\\Classes\\CLSID\\{8A9B1CDD-FCD7-419C-8B44-42FD17DB1887}\\InprocServer32] 1660099897
+#time=1d8ac641bc98212
+@="C:\\windows\\system32\\uianimation.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{8C7461EF-2B13-11D2-BE35-3078302C2030}] 1660099896
+#time=1d8ac641b4818d0
+@="Component Categories cache daemon"
+
+[Software\\Classes\\CLSID\\{8C7461EF-2B13-11D2-BE35-3078302C2030}\\InprocServer32] 1660099896
+#time=1d8ac641b481998
+@="C:\\windows\\system32\\browseui.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{8F6B0360-B80D-11D0-A9B3-006097942311}] 1660099897
+#time=1d8ac641bcba52e
+@="AP lzdhtml encoding/decoding Filter"
+
+[Software\\Classes\\CLSID\\{8F6B0360-B80D-11D0-A9B3-006097942311}\\InprocServer32] 1660099897
+#time=1d8ac641bcba5f6
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{8F914656-9D0A-4EB2-9019-0BF96D8A9EE6}] 1660099897
+#time=1d8ac641c320b66
+@="WIC Ifd Metadata Reader"
+"Author"="The Wine Project"
+"FriendlyName"="Ifd Reader"
+"MetadataFormat"="{537396C6-2D8A-4BB6-9BF8-2F0A8E2A3ADF}"
+"RequiresFullStream"=dword:00000001
+"SpecVersion"="1.0.0.0"
+"SupportsPadding"=dword:00000001
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{8F914656-9D0A-4EB2-9019-0BF96D8A9EE6}\\Containers\\{163BCC30-E2E9-4F0B-961D-A3E9FDB788A3}\\0] 1660099897
+#time=1d8ac641c320de6
+"Mask"=hex:00
+"Pattern"=hex:00
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{8F914656-9D0A-4EB2-9019-0BF96D8A9EE6}\\InprocServer32] 1660099897
+#time=1d8ac641bd89e28
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9053699F-A341-429D-9E90-EE437CF80C73}] 1660099897
+#time=1d8ac641c310e6e
+@="WIC DDS Decoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{9967CB95-2E85-4AC8-8CA2-83D7CCD425C9}"
+"FileExtensions"=".dds"
+"FriendlyName"="DDS Decoder"
+"MimeTypes"="image/vnd.ms-dds"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{9053699F-A341-429D-9E90-EE437CF80C73}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c310d6a
+
+[Software\\Classes\\CLSID\\{9053699F-A341-429D-9E90-EE437CF80C73}\\InprocServer32] 1660099897
+#time=1d8ac641bd87fba
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9053699F-A341-429D-9E90-EE437CF80C73}\\Patterns\\0] 1660099897
+#time=1d8ac641c31109e
+"EndOfStream"=dword:00000000
+"Length"=dword:00000004
+"Mask"=hex:ff,ff,ff,ff
+"Pattern"=hex:44,44,53,20
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{90F1A06E-7712-4762-86B5-7A5EBA6BDB01}] 1660099896
+#time=1d8ac641b8786be
+@="Microsoft Common Language Runtime Host V2"
+
+[Software\\Classes\\CLSID\\{90F1A06E-7712-4762-86B5-7A5EBA6BDB01}\\InprocServer32] 1660099896
+#time=1d8ac641b8784de
+@="C:\\windows\\system32\\mscoree.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{90F1A06E-7712-4762-86B5-7A5EBA6BDB01}\\ProgId] 1660099896
+#time=1d8ac641b878600
+@="CLRMetaData.CLRRuntimeHost.1"
+
+[Software\\Classes\\CLSID\\{90F1A06E-7712-4762-86B5-7A5EBA6BDB01}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b878718
+@="CLRMetaData.CLRRuntimeHost"
+
+[Software\\Classes\\CLSID\\{90F1A06E-7712-4762-86B5-7A5EBA6BDB02}] 1660099896
+#time=1d8ac641b8795fa
+@="Microsoft Common Language Runtime Host V2"
+
+[Software\\Classes\\CLSID\\{90F1A06E-7712-4762-86B5-7A5EBA6BDB02}\\InprocServer32] 1660099896
+#time=1d8ac641b8792da
+@="C:\\windows\\system32\\mscoree.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{90F1A06E-7712-4762-86B5-7A5EBA6BDB02}\\ProgId] 1660099896
+#time=1d8ac641b879546
+@="CLRMetaData.CLRRuntimeHost.2"
+
+[Software\\Classes\\CLSID\\{90F1A06E-7712-4762-86B5-7A5EBA6BDB02}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b879654
+@="CLRMetaData.CLRRuntimeHost"
+
+[Software\\Classes\\CLSID\\{926749FA-2615-4987-8845-C33E65F2B957}] 1660099897
+#time=1d8ac641bc9efe0
+@="UIRibbonFramework Object"
+
+[Software\\Classes\\CLSID\\{926749FA-2615-4987-8845-C33E65F2B957}\\InprocServer32] 1660099897
+#time=1d8ac641bc9f0bc
+@="C:\\windows\\system32\\uiribbon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{9301E380-1F22-11D3-8226-D2FA76255D47}] 1660099896
+#time=1d8ac641b6097d4
+@="DirectMusicContainer"
+
+[Software\\Classes\\CLSID\\{9301E380-1F22-11D3-8226-D2FA76255D47}\\InprocServer32] 1660099896
+#time=1d8ac641b609342
+@="C:\\windows\\system32\\dmloader.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9301E380-1F22-11D3-8226-D2FA76255D47}\\ProgId] 1660099896
+#time=1d8ac641b60945a
+@="Microsoft.DirectMusicContainer.1"
+
+[Software\\Classes\\CLSID\\{9301E380-1F22-11D3-8226-D2FA76255D47}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b609860
+@="Microsoft.DirectMusicContainer"
+
+[Software\\Classes\\CLSID\\{934A9523-A3CA-4BC5-ADA0-D6D95D979421}] 1660099896
+#time=1d8ac641b644456
+@="DirectPlay8Address Object"
+
+[Software\\Classes\\CLSID\\{934A9523-A3CA-4BC5-ADA0-D6D95D979421}\\InprocServer32] 1660099896
+#time=1d8ac641b644550
+@="C:\\windows\\system32\\dpnet.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{94297043-BD82-4DFD-B0DE-8177739C6D20}] 1660099896
+#time=1d8ac641baa6c38
+@="DMOWrapperFilter"
+
+[Software\\Classes\\CLSID\\{94297043-BD82-4DFD-B0DE-8177739C6D20}\\InprocServer32] 1660099896
+#time=1d8ac641baa6d1e
+@="C:\\windows\\system32\\qasf.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9456A480-E88B-43EA-9E73-0B2D9B71B1CA}] 1660099897
+#time=1d8ac641c312e6c
+@="WIC JPEG Decoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{19E4A5AA-5662-4FC5-A0C0-1758028E1057}"
+"FileExtensions"=".jpg;.jpeg;.jfif"
+"FriendlyName"="JPEG Decoder"
+"MimeTypes"="image/jpeg"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{9456A480-E88B-43EA-9E73-0B2D9B71B1CA}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}] 1660099897
+#time=1d8ac641c312d68
+
+[Software\\Classes\\CLSID\\{9456A480-E88B-43EA-9E73-0B2D9B71B1CA}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c312bd8
+
+[Software\\Classes\\CLSID\\{9456A480-E88B-43EA-9E73-0B2D9B71B1CA}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC91C}] 1660099897
+#time=1d8ac641c312c96
+
+[Software\\Classes\\CLSID\\{9456A480-E88B-43EA-9E73-0B2D9B71B1CA}\\InprocServer32] 1660099897
+#time=1d8ac641bd85e9a
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9456A480-E88B-43EA-9E73-0B2D9B71B1CA}\\Patterns\\0] 1660099897
+#time=1d8ac641c31309c
+"EndOfStream"=dword:00000000
+"Length"=dword:00000002
+"Mask"=hex:ff,ff
+"Pattern"=hex:ff,d8
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{947812B3-2AE1-4644-BA86-9E90DED7EC91}] 1660099895
+#time=1d8ac641b0f7444
+@="SpFileStream"
+
+[Software\\Classes\\CLSID\\{947812B3-2AE1-4644-BA86-9E90DED7EC91}\\InprocServer32] 1660099895
+#time=1d8ac641b0f72aa
+@="C:\\windows\\system32\\Speech\\Common\\sapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{947812B3-2AE1-4644-BA86-9E90DED7EC91}\\ProgId] 1660099895
+#time=1d8ac641b0f73a4
+@="SAPI.SpFileStream.1"
+
+[Software\\Classes\\CLSID\\{947812B3-2AE1-4644-BA86-9E90DED7EC91}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0f749e
+@="SAPI.SpFileStream"
+
+[Software\\Classes\\CLSID\\{96749373-3391-11D2-9EE3-00C04F797396}] 1660099895
+#time=1d8ac641b0f32cc
+@="Resource Manager"
+
+[Software\\Classes\\CLSID\\{96749373-3391-11D2-9EE3-00C04F797396}\\InprocServer32] 1660099895
+#time=1d8ac641b0f2dd6
+@="C:\\windows\\system32\\Speech\\Common\\sapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{96749373-3391-11D2-9EE3-00C04F797396}\\ProgId] 1660099895
+#time=1d8ac641b0f2fac
+@="SAPI.SpResourceManager.1"
+
+[Software\\Classes\\CLSID\\{96749373-3391-11D2-9EE3-00C04F797396}\\TypeLib] 1660099895
+#time=1d8ac641b0f30d8
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+
+[Software\\Classes\\CLSID\\{96749373-3391-11D2-9EE3-00C04F797396}\\Version] 1660099895
+#time=1d8ac641b0f320e
+@="5.4"
+
+[Software\\Classes\\CLSID\\{96749373-3391-11D2-9EE3-00C04F797396}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0f3330
+@="SAPI.SpResourceManager"
+
+[Software\\Classes\\CLSID\\{96749377-3391-11D2-9EE3-00C04F797396}] 1660099895
+#time=1d8ac641b0f6f9e
+@="Speech Voice"
+
+[Software\\Classes\\CLSID\\{96749377-3391-11D2-9EE3-00C04F797396}\\InprocServer32] 1660099895
+#time=1d8ac641b0f6db4
+@="C:\\windows\\system32\\Speech\\Common\\sapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{96749377-3391-11D2-9EE3-00C04F797396}\\ProgId] 1660099895
+#time=1d8ac641b0f6ee0
+@="SAPI.SpVoice.1"
+
+[Software\\Classes\\CLSID\\{96749377-3391-11D2-9EE3-00C04F797396}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0f7002
+@="SAPI.SpVoice"
+
+[Software\\Classes\\CLSID\\{98455561-5136-4D28-AB08-4CEE40EA2781}] 1660099896
+#time=1d8ac641b6973e0
+@="MF Video Presenter"
+
+[Software\\Classes\\CLSID\\{98455561-5136-4D28-AB08-4CEE40EA2781}\\InprocServer32] 1660099896
+#time=1d8ac641b6974a8
+@="C:\\windows\\system32\\evr.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{995C1CF5-54FF-11D3-8BDA-00600893B1B6}] 1660099896
+#time=1d8ac641b5fcb56
+@="DirectMusicLyricsTrack"
+
+[Software\\Classes\\CLSID\\{995C1CF5-54FF-11D3-8BDA-00600893B1B6}\\InprocServer32] 1660099896
+#time=1d8ac641b5fc958
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{995C1CF5-54FF-11D3-8BDA-00600893B1B6}\\ProgId] 1660099896
+#time=1d8ac641b5fca8e
+@="Microsoft.DirectMusicLyricsTrack.1"
+
+[Software\\Classes\\CLSID\\{995C1CF5-54FF-11D3-8BDA-00600893B1B6}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5fcbba
+@="Microsoft.DirectMusicLyricsTrack"
+
+[Software\\Classes\\CLSID\\{99793286-77CC-4B57-96DB-3B354F6F9FB5}] 1660099896
+#time=1d8ac641b5d39ae
+@="DirectManipulationSharedManager"
+
+[Software\\Classes\\CLSID\\{99793286-77CC-4B57-96DB-3B354F6F9FB5}\\InprocServer32] 1660099896
+#time=1d8ac641b5d3a8a
+@="C:\\windows\\system32\\directmanipulation.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9A02E012-6303-4E1E-B9A1-630F802592C5}] 1660099896
+#time=1d8ac641ba9b216
+@="Packed Property Storage Object"
+
+[Software\\Classes\\CLSID\\{9A02E012-6303-4E1E-B9A1-630F802592C5}\\InprocServer32] 1660099896
+#time=1d8ac641ba9b2e8
+@="C:\\windows\\system32\\propsys.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9A5EA990-3034-4D6F-9128-01F3C61022BC}] 1660099896
+#time=1d8ac641b71f952
+@="GameExplorer Class"
+
+[Software\\Classes\\CLSID\\{9A5EA990-3034-4D6F-9128-01F3C61022BC}\\InprocServer32] 1660099896
+#time=1d8ac641b71f556
+@="C:\\windows\\system32\\gameux.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9A5EA990-3034-4D6F-9128-01F3C61022BC}\\ProgId] 1660099896
+#time=1d8ac641b71f66e
+@="gameux.GameExplorer.1"
+
+[Software\\Classes\\CLSID\\{9A5EA990-3034-4D6F-9128-01F3C61022BC}\\TypeLib] 1660099896
+#time=1d8ac641b71f786
+@="{4F48A59C-942D-4F3C-83C9-4EFFE84E4959}"
+
+[Software\\Classes\\CLSID\\{9A5EA990-3034-4D6F-9128-01F3C61022BC}\\Version] 1660099896
+#time=1d8ac641b71f894
+@="1.0"
+
+[Software\\Classes\\CLSID\\{9A5EA990-3034-4D6F-9128-01F3C61022BC}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b71f9b6
+@="gameux.GameExplorer"
+
+[Software\\Classes\\CLSID\\{9B8C4620-2C1A-11D0-8493-00A02438AD48}] 1660099896
+#time=1d8ac641bab0c6a
+@="DVD Navigator Filter"
+
+[Software\\Classes\\CLSID\\{9B8C4620-2C1A-11D0-8493-00A02438AD48}\\InprocServer32] 1660099896
+#time=1d8ac641bab0d32
+@="C:\\windows\\system32\\qdvd.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9BA05971-F6A8-11CF-A442-00A0C90A8F39}] 1660099896
+#time=1d8ac641bbca2cc
+@="Microsoft Shell Folder View Router"
+
+[Software\\Classes\\CLSID\\{9BA05971-F6A8-11CF-A442-00A0C90A8F39}\\InprocServer32] 1660099896
+#time=1d8ac641bbca394
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{9BA05972-F6A8-11CF-A442-00A0C90A8F39}] 1660099895
+#time=1d8ac641b0d908e
+@="ShellWindows"
+
+[Software\\Classes\\CLSID\\{9BA05972-F6A8-11CF-A442-00A0C90A8F39}\\InprocServer32] 1660099896
+#time=1d8ac641b78136e
+@="C:\\windows\\system32\\ieframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{9BA05972-F6A8-11CF-A442-00A0C90A8F39}\\TypeLib] 1660099895
+#time=1d8ac641b0d8fda
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+
+[Software\\Classes\\CLSID\\{9BA05972-F6A8-11CF-A442-00A0C90A8F39}\\Version] 1660099895
+#time=1d8ac641b0d90e8
+@="1.1"
+
+[Software\\Classes\\CLSID\\{9D148290-B9C8-11D0-A4CC-0000F80149F6}] 1660099896
+#time=1d8ac641b7c375a
+@="Microsoft InfoTech Protocol for IE 3.0"
+
+[Software\\Classes\\CLSID\\{9D148290-B9C8-11D0-A4CC-0000F80149F6}\\InprocServer32] 1660099896
+#time=1d8ac641b7bf4c0
+@="C:\\windows\\system32\\itss.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9D148290-B9C8-11D0-A4CC-0000F80149F6}\\NotInsertable] 1660099896
+#time=1d8ac641b7c375a
+
+[Software\\Classes\\CLSID\\{9D148290-B9C8-11D0-A4CC-0000F80149F6}\\ProgId] 1660099896
+#time=1d8ac641b7bf5d8
+@="MSITFS1.0"
+
+[Software\\Classes\\CLSID\\{9D148290-B9C8-11D0-A4CC-0000F80149F6}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b7bf6f0
+@="MSITFS"
+
+[Software\\Classes\\CLSID\\{9D148291-B9C8-11D0-A4CC-0000F80149F6}] 1660099896
+#time=1d8ac641b7c38cc
+@="Microsoft InfoTech Protocol for IE 4.0"
+
+[Software\\Classes\\CLSID\\{9D148291-B9C8-11D0-A4CC-0000F80149F6}\\InprocServer32] 1660099896
+#time=1d8ac641b7bf998
+@="C:\\windows\\system32\\itss.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9D148291-B9C8-11D0-A4CC-0000F80149F6}\\NotInsertable] 1660099896
+#time=1d8ac641b7c38cc
+
+[Software\\Classes\\CLSID\\{9D148291-B9C8-11D0-A4CC-0000F80149F6}\\ProgId] 1660099896
+#time=1d8ac641b7bfab0
+@="MSITFS1.0"
+
+[Software\\Classes\\CLSID\\{9D148291-B9C8-11D0-A4CC-0000F80149F6}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b7bfbbe
+@="MSITFS"
+
+[Software\\Classes\\CLSID\\{9D20AAE8-0625-44B0-9CA7-71889C2254D9}] 1660099897
+#time=1d8ac641bf24d78
+@="/"
+
+[Software\\Classes\\CLSID\\{9D20AAE8-0625-44B0-9CA7-71889C2254D9}\\InprocServer32] 1660099896
+#time=1d8ac641bbcc748
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{9D20AAE8-0625-44B0-9CA7-71889C2254D9}\\ShellFolder] 1660099897
+#time=1d8ac641bf24eae
+"Attributes"=dword:b0000000
+"CallForAttributes"=dword:40000000
+"WantsFORPARSING"=""
+
+[Software\\Classes\\CLSID\\{9D745ED8-C514-4D1D-BF42-751FED2D5AC7}] 1660099896
+#time=1d8ac641b7618fc
+@="HNetCfg.FwProduct"
+
+[Software\\Classes\\CLSID\\{9D745ED8-C514-4D1D-BF42-751FED2D5AC7}\\InprocServer32] 1660099896
+#time=1d8ac641b761848
+@="C:\\windows\\system32\\hnetcfg.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{9D745ED8-C514-4D1D-BF42-751FED2D5AC7}\\ProgId] 1660099896
+#time=1d8ac641b76196a
+@="HNetCfg.FwProduct"
+
+[Software\\Classes\\CLSID\\{A07034FD-6CAA-4954-AC3F-97A27216F98A}] 1660099896
+#time=1d8ac641bbca57e
+@="Query file associations"
+
+[Software\\Classes\\CLSID\\{A07034FD-6CAA-4954-AC3F-97A27216F98A}\\InprocServer32] 1660099896
+#time=1d8ac641bbca650
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{A16F1761-B6D8-42EB-8D57-4A44FEDD3BD2}] 1660099896
+#time=1d8ac641b6120f0
+@="DirectMusic Script AutoImp Song"
+
+[Software\\Classes\\CLSID\\{A16F1761-B6D8-42EB-8D57-4A44FEDD3BD2}\\InprocServer32] 1660099896
+#time=1d8ac641b611e70
+@="C:\\windows\\system32\\dmscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{A16F1761-B6D8-42EB-8D57-4A44FEDD3BD2}\\ProgId] 1660099896
+#time=1d8ac641b611fb0
+@="Microsoft.DirectMusicScriptAutoImpSong.1"
+
+[Software\\Classes\\CLSID\\{A16F1761-B6D8-42EB-8D57-4A44FEDD3BD2}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b612168
+@="Microsoft.DirectMusicScriptAutoImpSong"
+
+[Software\\Classes\\CLSID\\{A1F4E726-8CF1-11D1-BF92-0060081ED811}] 1660099897
+#time=1d8ac641bd5c20c
+@="WIA Device Manager"
+"AppID"="{A1F4E726-8CF1-11D1-BF92-0060081ED811}"
+
+[Software\\Classes\\CLSID\\{A1F4E726-8CF1-11D1-BF92-0060081ED811}\\ProgId] 1660099897
+#time=1d8ac641bd5b08c
+@="WiaDevMgr.1"
+
+[Software\\Classes\\CLSID\\{A1F4E726-8CF1-11D1-BF92-0060081ED811}\\VersionIndependentProgId] 1660099897
+#time=1d8ac641bd5b226
+@="WiaDevMgr"
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}] 1660099897
+#time=1d8ac641c314cc6
+@="WIC WMP Decoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{57A37CAA-367A-4540-916B-F183C5093A4B}"
+"FileExtensions"=".jxr;.hdp;.wdp"
+"FriendlyName"="JPEG-XR Decoder"
+"MimeTypes"="image/jxr"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC905}] 1660099897
+#time=1d8ac641c314bc2
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}] 1660099897
+#time=1d8ac641c314a3c
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC909}] 1660099897
+#time=1d8ac641c3138c6
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90A}] 1660099897
+#time=1d8ac641c313984
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90B}] 1660099897
+#time=1d8ac641c313a56
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c313c9a
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90D}] 1660099897
+#time=1d8ac641c313d62
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90E}] 1660099897
+#time=1d8ac641c313e20
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c313f9c
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC911}] 1660099897
+#time=1d8ac641c3141e0
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC912}] 1660099897
+#time=1d8ac641c314500
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC913}] 1660099897
+#time=1d8ac641c313b14
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC914}] 1660099897
+#time=1d8ac641c313ede
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC915}] 1660099897
+#time=1d8ac641c31441a
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC916}] 1660099897
+#time=1d8ac641c31473a
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC918}] 1660099897
+#time=1d8ac641c314b04
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC919}] 1660099897
+#time=1d8ac641c31374a
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC91B}] 1660099897
+#time=1d8ac641c313808
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC91C}] 1660099897
+#time=1d8ac641c31405a
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC91D}] 1660099897
+#time=1d8ac641c3147f8
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC91E}] 1660099897
+#time=1d8ac641c31368c
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC91F}] 1660099897
+#time=1d8ac641c31467c
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC92C}] 1660099897
+#time=1d8ac641c31435c
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC92D}] 1660099897
+#time=1d8ac641c31497e
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC93A}] 1660099897
+#time=1d8ac641c3148c0
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC93B}] 1660099897
+#time=1d8ac641c3145be
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC93D}] 1660099897
+#time=1d8ac641c31429e
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC93E}] 1660099897
+#time=1d8ac641c313bdc
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC93F}] 1660099897
+#time=1d8ac641c314122
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\InprocServer32] 1660099897
+#time=1d8ac641be50bf4
+@="C:\\windows\\system32\\wmphoto.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Patterns\\0] 1660099897
+#time=1d8ac641c314f0a
+"EndOfStream"=dword:00000000
+"Length"=dword:00000004
+"Mask"=hex:ff,ff,ff,ff
+"Pattern"=hex:49,49,bc,00
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{A26CEC36-234C-4950-AE16-E34AACE71D0D}\\Patterns\\1] 1660099897
+#time=1d8ac641c31518a
+"EndOfStream"=dword:00000000
+"Length"=dword:00000004
+"Mask"=hex:ff,ff,ff,ff
+"Pattern"=hex:49,49,bc,01
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{A4A1A128-768F-41E0-BF75-E4FDDD701CBA}] 1660099896
+#time=1d8ac641b78be86
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{A4A1A128-768F-41E0-BF75-E4FDDD701CBA}\\InprocServer32] 1660099896
+#time=1d8ac641b78bf4e
+@="C:\\windows\\system32\\ieproxy.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{A4B544A1-438D-4B41-9325-869523E2D6C7}] 1660099896
+#time=1d8ac641b87f4be
+@="TF_CategoryMgr"
+
+[Software\\Classes\\CLSID\\{A4B544A1-438D-4B41-9325-869523E2D6C7}\\InprocServer32] 1660099896
+#time=1d8ac641b87f572
+@="C:\\windows\\system32\\msctf.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{A65B8071-3BFE-4213-9A5B-491DA4461CA7}] 1660099896
+#time=1d8ac641b68a924
+@="DxDiagProvider Class"
+
+[Software\\Classes\\CLSID\\{A65B8071-3BFE-4213-9A5B-491DA4461CA7}\\InprocServer32] 1660099896
+#time=1d8ac641b68a758
+@="C:\\windows\\system32\\dxdiagn.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{A65B8071-3BFE-4213-9A5B-491DA4461CA7}\\ProgId] 1660099896
+#time=1d8ac641b68a870
+@="DxDiag.DxDiagProvider.1"
+
+[Software\\Classes\\CLSID\\{A65B8071-3BFE-4213-9A5B-491DA4461CA7}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b68a988
+@="DxDiag.DxDiagProvider"
+
+[Software\\Classes\\CLSID\\{A861C6E2-FCFC-11D2-8BC9-00600893B1B6}] 1660099896
+#time=1d8ac641b60fd0a
+@="DirectMusic Script AutoImp Performance"
+
+[Software\\Classes\\CLSID\\{A861C6E2-FCFC-11D2-8BC9-00600893B1B6}\\InprocServer32] 1660099896
+#time=1d8ac641b60fb3e
+@="C:\\windows\\system32\\dmscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{A861C6E2-FCFC-11D2-8BC9-00600893B1B6}\\ProgId] 1660099896
+#time=1d8ac641b60fc56
+@="Microsoft.DirectMusicScriptAutoImpPerformance.1"
+
+[Software\\Classes\\CLSID\\{A861C6E2-FCFC-11D2-8BC9-00600893B1B6}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b60fd64
+@="Microsoft.DirectMusicScriptAutoImpPerformance"
+
+[Software\\Classes\\CLSID\\{A910187F-0C7A-45AC-92CC-59EDAFB77B53}] 1660099895
+#time=1d8ac641b0f20a2
+@="SpObjectTokenCategory Class"
+
+[Software\\Classes\\CLSID\\{A910187F-0C7A-45AC-92CC-59EDAFB77B53}\\InprocServer32] 1660099895
+#time=1d8ac641b0f190e
+@="C:\\windows\\system32\\Speech\\Common\\sapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{A910187F-0C7A-45AC-92CC-59EDAFB77B53}\\ProgId] 1660099895
+#time=1d8ac641b0f1d64
+@="SAPI.SpObjectTokenCategory.1"
+
+[Software\\Classes\\CLSID\\{A910187F-0C7A-45AC-92CC-59EDAFB77B53}\\TypeLib] 1660099895
+#time=1d8ac641b0f1eae
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+
+[Software\\Classes\\CLSID\\{A910187F-0C7A-45AC-92CC-59EDAFB77B53}\\Version] 1660099895
+#time=1d8ac641b0f1fd0
+@="5.4"
+
+[Software\\Classes\\CLSID\\{A910187F-0C7A-45AC-92CC-59EDAFB77B53}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0f2106
+@="SAPI.SpObjectTokenCategory"
+
+[Software\\Classes\\CLSID\\{A9AE6C91-1D1B-11D2-B21A-00C04FA357FA}] 1660099896
+#time=1d8ac641b930cbe
+@="LW Identities"
+
+[Software\\Classes\\CLSID\\{A9AE6C91-1D1B-11D2-B21A-00C04FA357FA}\\InprocServer32] 1660099896
+#time=1d8ac641b930d90
+@="C:\\windows\\system32\\msident.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{AC4CE3CB-E1C1-44CD-8215-5A1665509EC2}] 1660099897
+#time=1d8ac641be50e60
+@="WIC WMP Encoder"
+
+[Software\\Classes\\CLSID\\{AC4CE3CB-E1C1-44CD-8215-5A1665509EC2}\\InprocServer32] 1660099897
+#time=1d8ac641be51036
+@="C:\\windows\\system32\\wmphoto.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{AC757296-3522-4E11-9862-C17BE5A1767E}\\Instance\\{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}] 1660099897
+#time=1d8ac641c31c3ae
+"CLSID"="{0131BE10-2001-4C5F-A9B0-CC88FAB64CE8}"
+
+[Software\\Classes\\CLSID\\{AC757296-3522-4E11-9862-C17BE5A1767E}\\Instance\\{114F5598-0B22-40A0-86A1-C83EA495ADBD}] 1660099897
+#time=1d8ac641c31a48c
+"CLSID"="{114F5598-0B22-40A0-86A1-C83EA495ADBD}"
+
+[Software\\Classes\\CLSID\\{AC757296-3522-4E11-9862-C17BE5A1767E}\\Instance\\{1A34F5C1-4A5A-46DC-B644-1F4567E7A676}] 1660099897
+#time=1d8ac641c31aa7c
+"CLSID"="{1A34F5C1-4A5A-46DC-B644-1F4567E7A676}"
+
+[Software\\Classes\\CLSID\\{AC757296-3522-4E11-9862-C17BE5A1767E}\\Instance\\{27949969-876A-41D7-9447-568F6A35A4DC}] 1660099897
+#time=1d8ac641c31b1f2
+"CLSID"="{27949969-876A-41D7-9447-568F6A35A4DC}"
+
+[Software\\Classes\\CLSID\\{AC757296-3522-4E11-9862-C17BE5A1767E}\\Instance\\{312FB6F1-B767-409D-8A6D-0FC154D4F05C}] 1660099897
+#time=1d8ac641c31d344
+"CLSID"="{312FB6F1-B767-409D-8A6D-0FC154D4F05C}"
+
+[Software\\Classes\\CLSID\\{AC757296-3522-4E11-9862-C17BE5A1767E}\\Instance\\{69BE8BB4-D66D-47C8-865A-ED1589433782}] 1660099897
+#time=1d8ac641c319942
+"CLSID"="{69BE8BB4-D66D-47C8-865A-ED1589433782}"
+
+[Software\\Classes\\CLSID\\{ADB880A6-D8FF-11CF-9377-00AA003B7A11}] 1660099896
+#time=1d8ac641b7445cc
+@="HHCtrl Object"
+
+[Software\\Classes\\CLSID\\{ADB880A6-D8FF-11CF-9377-00AA003B7A11}\\InprocServer32] 1660099896
+#time=1d8ac641b743f46
+@="C:\\windows\\system32\\hhctrl.ocx"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{ADB880A6-D8FF-11CF-9377-00AA003B7A11}\\ProgId] 1660099896
+#time=1d8ac641b7440a4
+@="Internet.HHCtrl.1"
+
+[Software\\Classes\\CLSID\\{ADB880A6-D8FF-11CF-9377-00AA003B7A11}\\TypeLib] 1660099896
+#time=1d8ac641b744392
+@="{ADB880A2-D8FF-11CF-9377-00AA003B7A11}"
+
+[Software\\Classes\\CLSID\\{ADB880A6-D8FF-11CF-9377-00AA003B7A11}\\Version] 1660099896
+#time=1d8ac641b744504
+@="1.0"
+
+[Software\\Classes\\CLSID\\{ADB880A6-D8FF-11CF-9377-00AA003B7A11}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b74463a
+@="Internet.HHCtrl"
+
+[Software\\Classes\\CLSID\\{AE054212-3535-4430-83ED-D501AA6680E6}] 1660099896
+#time=1d8ac641b69bab2
+@="Shell Name Space ListView"
+
+[Software\\Classes\\CLSID\\{AE054212-3535-4430-83ED-D501AA6680E6}\\InprocServer32] 1660099896
+#time=1d8ac641b69bd3c
+@="C:\\windows\\system32\\explorerframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{AE1E00AA-3FD5-403C-8A27-2BBDC30CD0E1}] 1660099896
+#time=1d8ac641b75f76e
+@="UPnPNAT"
+
+[Software\\Classes\\CLSID\\{AE1E00AA-3FD5-403C-8A27-2BBDC30CD0E1}\\InprocServer32] 1660099896
+#time=1d8ac641b75f322
+@="C:\\windows\\system32\\hnetcfg.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{AE1E00AA-3FD5-403C-8A27-2BBDC30CD0E1}\\ProgId] 1660099896
+#time=1d8ac641b75f458
+@="HNetCfg.NATUPnP.1"
+
+[Software\\Classes\\CLSID\\{AE1E00AA-3FD5-403C-8A27-2BBDC30CD0E1}\\TypeLib] 1660099896
+#time=1d8ac641b75f57a
+@="{1C565858-F302-471E-B409-F180AA4ABEC6}"
+
+[Software\\Classes\\CLSID\\{AE1E00AA-3FD5-403C-8A27-2BBDC30CD0E1}\\Version] 1660099896
+#time=1d8ac641b75f6a6
+@="1.0"
+
+[Software\\Classes\\CLSID\\{AE1E00AA-3FD5-403C-8A27-2BBDC30CD0E1}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b75f7e6
+@="HNetCfg.NATUPnP"
+
+[Software\\Classes\\CLSID\\{AE24FDAE-03C6-11D1-8B76-0080C744F389}] 1660099896
+#time=1d8ac641b91c638
+@="Microsoft Scriptlet Component"
+
+[Software\\Classes\\CLSID\\{AE24FDAE-03C6-11D1-8B76-0080C744F389}\\InprocServer32] 1660099896
+#time=1d8ac641b8aa5e2
+@="C:\\windows\\system32\\mshtml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{AE24FDAE-03C6-11D1-8B76-0080C744F389}\\ProgId] 1660099896
+#time=1d8ac641b8aa6dc
+@="ScriptBridge.ScriptBridge.1"
+
+[Software\\Classes\\CLSID\\{AE24FDAE-03C6-11D1-8B76-0080C744F389}\\TypeLib] 1660099896
+#time=1d8ac641b91c552
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+
+[Software\\Classes\\CLSID\\{AE24FDAE-03C6-11D1-8B76-0080C744F389}\\Version] 1660099896
+#time=1d8ac641b91c69c
+@="4.0"
+
+[Software\\Classes\\CLSID\\{AE24FDAE-03C6-11D1-8B76-0080C744F389}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b8aa7e0
+@="ScriptBridge.ScriptBridge"
+
+[Software\\Classes\\CLSID\\{AEC17CE3-A514-11D1-AFA6-00AA0024D8B6}] 1660099896
+#time=1d8ac641b626d66
+@="DirectMusicSynthSink"
+
+[Software\\Classes\\CLSID\\{AEC17CE3-A514-11D1-AFA6-00AA0024D8B6}\\InprocServer32] 1660099896
+#time=1d8ac641b626a50
+@="C:\\windows\\system32\\dmsynth.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{AEC17CE3-A514-11D1-AFA6-00AA0024D8B6}\\ProgId] 1660099896
+#time=1d8ac641b626c80
+@="Microsoft.DirectMusicSynthSink.1"
+
+[Software\\Classes\\CLSID\\{AEC17CE3-A514-11D1-AFA6-00AA0024D8B6}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b626dd4
+@="Microsoft.DirectMusicSynthSink"
+
+[Software\\Classes\\CLSID\\{AED5F0A5-D972-483D-A384-649DFEB9C181}] 1660099896
+#time=1d8ac641b5fb08a
+@="DirectMusicSong"
+
+[Software\\Classes\\CLSID\\{AED5F0A5-D972-483D-A384-649DFEB9C181}\\InprocServer32] 1660099896
+#time=1d8ac641b5fa7ac
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{AED5F0A5-D972-483D-A384-649DFEB9C181}\\ProgId] 1660099896
+#time=1d8ac641b5fa91e
+@="Microsoft.DirectMusicSong.1"
+
+[Software\\Classes\\CLSID\\{AED5F0A5-D972-483D-A384-649DFEB9C181}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5fb152
+@="Microsoft.DirectMusicSong"
+
+[Software\\Classes\\CLSID\\{AFB40FFD-B609-40A3-9828-F88BBE11E4E3}] 1660099895
+#time=1d8ac641b069e82
+@="Server XML HTTP 3.0"
+
+[Software\\Classes\\CLSID\\{AFB40FFD-B609-40A3-9828-F88BBE11E4E3}\\InprocServer32] 1660099895
+#time=1d8ac641b069a7c
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{AFB40FFD-B609-40A3-9828-F88BBE11E4E3}\\ProgId] 1660099895
+#time=1d8ac641b069b9e
+@="Msxml2.ServerXMLHTTP.3.0"
+
+[Software\\Classes\\CLSID\\{AFB40FFD-B609-40A3-9828-F88BBE11E4E3}\\TypeLib] 1660099895
+#time=1d8ac641b069cb6
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{AFB40FFD-B609-40A3-9828-F88BBE11E4E3}\\Version] 1660099895
+#time=1d8ac641b069dc4
+@="3.0"
+
+[Software\\Classes\\CLSID\\{AFB40FFD-B609-40A3-9828-F88BBE11E4E3}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b069ee6
+@="Msxml2.ServerXMLHTTP"
+
+[Software\\Classes\\CLSID\\{AFBA6B42-5692-48EA-8141-DC517DCF0EF1}] 1660099895
+#time=1d8ac641b06a8aa
+@="Server XML HTTP"
+
+[Software\\Classes\\CLSID\\{AFBA6B42-5692-48EA-8141-DC517DCF0EF1}\\InprocServer32] 1660099895
+#time=1d8ac641b06a1ca
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{AFBA6B42-5692-48EA-8141-DC517DCF0EF1}\\ProgId] 1660099895
+#time=1d8ac641b06a2ec
+@="Msxml2.ServerXMLHTTP"
+
+[Software\\Classes\\CLSID\\{AFBA6B42-5692-48EA-8141-DC517DCF0EF1}\\TypeLib] 1660099895
+#time=1d8ac641b06a6de
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{AFBA6B42-5692-48EA-8141-DC517DCF0EF1}\\Version] 1660099895
+#time=1d8ac641b06a7f6
+@="3.0"
+
+[Software\\Classes\\CLSID\\{AFBA6B42-5692-48EA-8141-DC517DCF0EF1}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b06a90e
+@="Msxml2.ServerXMLHTTP"
+
+[Software\\Classes\\CLSID\\{B0210780-89CD-11D0-AF08-00A0C925CD16}] 1660099896
+#time=1d8ac641b668c2a
+@="DirectSoundCapture Object"
+
+[Software\\Classes\\CLSID\\{B0210780-89CD-11D0-AF08-00A0C925CD16}\\InprocServer32] 1660099896
+#time=1d8ac641b668d10
+@="C:\\windows\\system32\\dsound.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B0684266-B57F-11D2-97F9-00C04FA36E58}] 1660099896
+#time=1d8ac641b61e3b4
+@="DirectMusicMelodyFormulationTrack"
+
+[Software\\Classes\\CLSID\\{B0684266-B57F-11D2-97F9-00C04FA36E58}\\InprocServer32] 1660099896
+#time=1d8ac641b61e1e8
+@="C:\\windows\\system32\\dmstyle.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B0684266-B57F-11D2-97F9-00C04FA36E58}\\ProgId] 1660099896
+#time=1d8ac641b61e300
+@="Microsoft.DirectMusicMelodyFormulationTrack.1"
+
+[Software\\Classes\\CLSID\\{B0684266-B57F-11D2-97F9-00C04FA36E58}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b61e40e
+@="Microsoft.DirectMusicMelodyFormulationTrack"
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}] 1660099897
+#time=1d8ac641c318b1e
+@="WIC TGA Decoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{0C44FDA1-A5C5-4298-9685-473FC17CD322}"
+"FileExtensions"=".tga;.tpic"
+"FriendlyName"="TGA Decoder"
+"MimeTypes"="image/x-targa"
+"Vendor"="{DDF46DA1-7DC1-404E-98F2-EFA48DFC950A}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c318650
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}] 1660099897
+#time=1d8ac641c318592
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC909}] 1660099897
+#time=1d8ac641c3187cc
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90B}] 1660099897
+#time=1d8ac641c31870e
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c31888a
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c318948
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC910}] 1660099897
+#time=1d8ac641c318a06
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\InprocServer32] 1660099897
+#time=1d8ac641bd888a2
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\Patterns\\0] 1660099897
+#time=1d8ac641c318d4e
+"EndOfStream"=dword:00000001
+"Length"=dword:00000012
+"Mask"=hex:ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff
+"Pattern"=hex:54,52,55,45,56,49,53,49,4f,4e,2d,58,46,49,4c,45,2e,00
+"Position"=dword:00000012
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\Patterns\\1] 1660099897
+#time=1d8ac641c318fce
+"EndOfStream"=dword:00000000
+"Length"=dword:00000012
+"Mask"=hex:00,ff,f7,00,00,00,00,00,00,00,00,00,00,00,00,00,ff,cf
+"Pattern"=hex:00,01,01,00,00,00,00,00,00,00,00,00,00,00,00,00,08,00
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\Patterns\\2] 1660099897
+#time=1d8ac641c319244
+"EndOfStream"=dword:00000000
+"Length"=dword:00000012
+"Mask"=hex:00,ff,f7,00,00,00,00,00,00,00,00,00,00,00,00,00,87,c0
+"Pattern"=hex:00,00,02,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{B11FC79A-67CC-43E6-A9CE-E3D54945D304}\\Patterns\\3] 1660099897
+#time=1d8ac641c3194c4
+"EndOfStream"=dword:00000000
+"Length"=dword:00000012
+"Mask"=hex:00,ff,f7,00,00,00,00,00,00,00,00,00,00,00,00,00,ff,cf
+"Pattern"=hex:00,00,03,00,00,00,00,00,00,00,00,00,00,00,00,00,08,00
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{B196B286-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba39520
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{B196B286-BAB4-101A-B69C-00AA00341D07}\\InprocServer32] 1660099896
+#time=1d8ac641ba395f2
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B2F586D4-5558-49D1-A07B-3249DBBB33C2}] 1660099896
+#time=1d8ac641b668928
+@="DirectSoundBufferConfig Object"
+
+[Software\\Classes\\CLSID\\{B2F586D4-5558-49D1-A07B-3249DBBB33C2}\\InprocServer32] 1660099896
+#time=1d8ac641b668a04
+@="C:\\windows\\system32\\dsound.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B323F8E0-2E68-11D0-90EA-00AA0060F86C}] 1660099896
+#time=1d8ac641bc0ee72
+@="StillImage"
+
+[Software\\Classes\\CLSID\\{B323F8E0-2E68-11D0-90EA-00AA0060F86C}\\InprocServer32] 1660099896
+#time=1d8ac641bc0ef6c
+@="C:\\windows\\system32\\sti.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B44392DA-499B-446B-A4CB-005FEAD0E6D5}] 1660099896
+#time=1d8ac641b836214
+@="Media Engine Class Factory"
+
+[Software\\Classes\\CLSID\\{B44392DA-499B-446B-A4CB-005FEAD0E6D5}\\InprocServer32] 1660099896
+#time=1d8ac641b8362f0
+@="C:\\windows\\system32\\mfmediaengine.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B45FF030-4447-11D2-85DE-00C04FA35C89}] 1660099895
+#time=1d8ac641b0db2ee
+@="SearchAssistantOC"
+
+[Software\\Classes\\CLSID\\{B45FF030-4447-11D2-85DE-00C04FA35C89}\\InprocServer32] 1660099896
+#time=1d8ac641b7833da
+@="C:\\windows\\system32\\ieframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{B45FF030-4447-11D2-85DE-00C04FA35C89}\\ProgId] 1660099895
+#time=1d8ac641b0db014
+@="SearchAssistantOC.SearchAssistantOC.1"
+
+[Software\\Classes\\CLSID\\{B45FF030-4447-11D2-85DE-00C04FA35C89}\\TypeLib] 1660099895
+#time=1d8ac641b0db136
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+
+[Software\\Classes\\CLSID\\{B45FF030-4447-11D2-85DE-00C04FA35C89}\\Version] 1660099895
+#time=1d8ac641b0db244
+@="1.1"
+
+[Software\\Classes\\CLSID\\{B45FF030-4447-11D2-85DE-00C04FA35C89}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0db352
+@="SearchAssistantOC.SearchAssistantOC"
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}] 1660099897
+#time=1d8ac641c317a7a
+@="WIC TIFF Decoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{163BCC30-E2E9-4F0B-961D-A3E9FDB788A3}"
+"FileExtensions"=".tif;.tiff"
+"FriendlyName"="TIFF Decoder"
+"MimeTypes"="image/tiff"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC901}] 1660099897
+#time=1d8ac641c316e04
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC902}] 1660099897
+#time=1d8ac641c316ec2
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC903}] 1660099897
+#time=1d8ac641c316f80
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC904}] 1660099897
+#time=1d8ac641c317048
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC905}] 1660099897
+#time=1d8ac641c316a44
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC907}] 1660099897
+#time=1d8ac641c316b0c
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC908}] 1660099897
+#time=1d8ac641c316bca
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90B}] 1660099897
+#time=1d8ac641c316c88
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90C}] 1660099897
+#time=1d8ac641c317106
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90E}] 1660099897
+#time=1d8ac641c3171ce
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c31728c
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC910}] 1660099897
+#time=1d8ac641c317372
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC911}] 1660099897
+#time=1d8ac641c316d46
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC915}] 1660099897
+#time=1d8ac641c31743a
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC916}] 1660099897
+#time=1d8ac641c3174f8
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC917}] 1660099897
+#time=1d8ac641c3175b6
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC919}] 1660099897
+#time=1d8ac641c3178b8
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC91A}] 1660099897
+#time=1d8ac641c317976
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC91C}] 1660099897
+#time=1d8ac641c31767e
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC91F}] 1660099897
+#time=1d8ac641c31773c
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Formats\\{E3FED78F-E8DB-4ACF-84C1-E97F6136B327}] 1660099897
+#time=1d8ac641c3177fa
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\InprocServer32] 1660099897
+#time=1d8ac641bd864d0
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Patterns\\0] 1660099897
+#time=1d8ac641c317cb4
+"EndOfStream"=dword:00000000
+"Length"=dword:00000004
+"Mask"=hex:ff,ff,ff,ff
+"Pattern"=hex:49,49,2a,00
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{B54E85D9-FE23-499F-8B88-6ACEA713752B}\\Patterns\\1] 1660099897
+#time=1d8ac641c317f8e
+"EndOfStream"=dword:00000000
+"Length"=dword:00000004
+"Mask"=hex:ff,ff,ff,ff
+"Pattern"=hex:4d,4d,00,2a
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{B54F3741-5B07-11CF-A4B0-00AA004A55E8}] 1660099897
+#time=1d8ac641bce1d9a
+@="VB Script Language"
+
+[Software\\Classes\\CLSID\\{B54F3741-5B07-11CF-A4B0-00AA004A55E8}\\Implemented Categories\\{f0b7a1a1-9847-11cf-8f20-00805f2cd064}] 1660099897
+#time=1d8ac641bce10c0
+
+[Software\\Classes\\CLSID\\{B54F3741-5B07-11CF-A4B0-00AA004A55E8}\\Implemented Categories\\{f0b7a1a2-9847-11cf-8f20-00805f2cd064}] 1660099897
+#time=1d8ac641bce1b10
+
+[Software\\Classes\\CLSID\\{B54F3741-5B07-11CF-A4B0-00AA004A55E8}\\InprocServer32] 1660099897
+#time=1d8ac641bcdd4fc
+@="C:\\windows\\system32\\vbscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B54F3741-5B07-11CF-A4B0-00AA004A55E8}\\OLEScript] 1660099897
+#time=1d8ac641bce1d9a
+
+[Software\\Classes\\CLSID\\{B54F3741-5B07-11CF-A4B0-00AA004A55E8}\\ProgId] 1660099897
+#time=1d8ac641bcdd61e
+@="VBScript"
+
+[Software\\Classes\\CLSID\\{B54F3742-5B07-11CF-A4B0-00AA004A55E8}] 1660099897
+#time=1d8ac641bce20f6
+@="VB Script Language Authoring"
+
+[Software\\Classes\\CLSID\\{B54F3742-5B07-11CF-A4B0-00AA004A55E8}\\Implemented Categories\\{0aee2a92-bcbb-11d0-8c72-00c04fc2b085}] 1660099897
+#time=1d8ac641bce1fde
+
+[Software\\Classes\\CLSID\\{B54F3742-5B07-11CF-A4B0-00AA004A55E8}\\InprocServer32] 1660099897
+#time=1d8ac641bcdd8da
+@="C:\\windows\\system32\\vbscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B54F3742-5B07-11CF-A4B0-00AA004A55E8}\\OLEScript] 1660099897
+#time=1d8ac641bce20f6
+
+[Software\\Classes\\CLSID\\{B54F3742-5B07-11CF-A4B0-00AA004A55E8}\\ProgId] 1660099897
+#time=1d8ac641bcdd9e8
+@="VBScript Author"
+
+[Software\\Classes\\CLSID\\{B54F3743-5B07-11CF-A4B0-00AA004A55E8}] 1660099897
+#time=1d8ac641bce2fb0
+@="VB Script Language Encoding"
+
+[Software\\Classes\\CLSID\\{B54F3743-5B07-11CF-A4B0-00AA004A55E8}\\Implemented Categories\\{f0b7a1a1-9847-11cf-8f20-00805f2cd064}] 1660099897
+#time=1d8ac641bce2bb4
+
+[Software\\Classes\\CLSID\\{B54F3743-5B07-11CF-A4B0-00AA004A55E8}\\Implemented Categories\\{f0b7a1a2-9847-11cf-8f20-00805f2cd064}] 1660099897
+#time=1d8ac641bce2dc6
+
+[Software\\Classes\\CLSID\\{B54F3743-5B07-11CF-A4B0-00AA004A55E8}\\Implemented Categories\\{f0b7a1a3-9847-11cf-8f20-00805f2cd064}] 1660099897
+#time=1d8ac641bce2e8e
+
+[Software\\Classes\\CLSID\\{B54F3743-5B07-11CF-A4B0-00AA004A55E8}\\InprocServer32] 1660099897
+#time=1d8ac641bcddc86
+@="C:\\windows\\system32\\vbscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B54F3743-5B07-11CF-A4B0-00AA004A55E8}\\OLEScript] 1660099897
+#time=1d8ac641bce2fb0
+
+[Software\\Classes\\CLSID\\{B54F3743-5B07-11CF-A4B0-00AA004A55E8}\\ProgId] 1660099897
+#time=1d8ac641bcddd9e
+@="VBScript.Encode"
+
+[Software\\Classes\\CLSID\\{B5F8350B-0548-48B1-A6EE-88BD00B4A5E7}] 1660099896
+#time=1d8ac641ba306e6
+@="CAccPropServices"
+
+[Software\\Classes\\CLSID\\{B5F8350B-0548-48B1-A6EE-88BD00B4A5E7}\\InprocServer32] 1660099896
+#time=1d8ac641ba304d4
+@="C:\\windows\\system32\\oleacc.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{B5F8350B-0548-48B1-A6EE-88BD00B4A5E7}\\TypeLib] 1660099896
+#time=1d8ac641ba30614
+@="{1EA4DBF0-3C3B-11CF-810C-00AA00389B71}"
+
+[Software\\Classes\\CLSID\\{B5F8350B-0548-48B1-A6EE-88BD00B4A5E7}\\Version] 1660099896
+#time=1d8ac641ba3074a
+@="1.1"
+
+[Software\\Classes\\CLSID\\{B5F8FB3B-393F-4F7C-84CB-504924C2705A}] 1660099896
+#time=1d8ac641b88db9a
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{B5F8FB3B-393F-4F7C-84CB-504924C2705A}\\InprocServer32] 1660099896
+#time=1d8ac641b88dc4e
+@="C:\\windows\\system32\\msctfp.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B87BEB7B-8D29-423F-AE4D-6582C10175AC}] 1660099896
+#time=1d8ac641bad0e3e
+@="Video Mixing Renderer"
+
+[Software\\Classes\\CLSID\\{B87BEB7B-8D29-423F-AE4D-6582C10175AC}\\InprocServer32] 1660099896
+#time=1d8ac641bad0ef2
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}] 1660099896
+#time=1d8ac641b2f5fac
+@="PSFactoryBuffer"
+
+[Software\\Classes\\CLSID\\{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}\\InprocServer32] 1660099896
+#time=1d8ac641b2f6074
+@="C:\\windows\\system32\\actxprxy.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B92E345D-F52D-41F3-B562-081BC772E3B9}] 1660099897
+#time=1d8ac641c32b340
+@="WIC GCE Metadata Reader"
+"Author"="The Wine Project"
+"FriendlyName"="Graphic Control Extension Reader"
+"MetadataFormat"="{2A25CAD8-DEEB-4C69-A788-0EC2266DCAFD}"
+"RequiresFullStream"=dword:00000000
+"SpecVersion"="1.0.0.0"
+"SupportsPadding"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{B92E345D-F52D-41F3-B562-081BC772E3B9}\\Containers\\{1F8A5601-7D4D-4CBD-9C82-1BC8D4EEB9A5}\\0] 1660099897
+#time=1d8ac641c32bbf6
+"DataOffset"=dword:00000003
+"Mask"=hex:ff,ff,ff
+"Pattern"=hex:21,f9,04
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{B92E345D-F52D-41F3-B562-081BC772E3B9}\\InprocServer32] 1660099897
+#time=1d8ac641bd8c3c6
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B9F3EB85-B781-4AC1-8D90-93A05EE37D7D}] 1660099896
+#time=1d8ac641b6544e6
+@="DirectPlayVoice Client Object"
+
+[Software\\Classes\\CLSID\\{B9F3EB85-B781-4AC1-8D90-93A05EE37D7D}\\InprocServer32] 1660099896
+#time=1d8ac641b6537da
+@="C:\\windows\\system32\\dpvoice.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{B9F3EB85-B781-4AC1-8D90-93A05EE37D7D}\\ProgId] 1660099896
+#time=1d8ac641b6543d8
+@="DirectPlayVoice.Client.1"
+
+[Software\\Classes\\CLSID\\{B9F3EB85-B781-4AC1-8D90-93A05EE37D7D}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b654568
+@="DirectPlayVoice.Client"
+
+[Software\\Classes\\CLSID\\{BAE4D665-4EA1-11D3-8BDA-00600893B1B6}] 1660099896
+#time=1d8ac641b5fd0ce
+@="DirectMusicSegTriggerTrack"
+
+[Software\\Classes\\CLSID\\{BAE4D665-4EA1-11D3-8BDA-00600893B1B6}\\InprocServer32] 1660099896
+#time=1d8ac641b5fcebc
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{BAE4D665-4EA1-11D3-8BDA-00600893B1B6}\\ProgId] 1660099896
+#time=1d8ac641b5fcffc
+@="Microsoft.DirectMusicSegTriggerTrack.1"
+
+[Software\\Classes\\CLSID\\{BAE4D665-4EA1-11D3-8BDA-00600893B1B6}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5fd132
+@="Microsoft.DirectMusicSegTriggerTrack"
+
+[Software\\Classes\\CLSID\\{BB847B8A-054A-11D2-A894-0000F8084F96}] 1660099896
+#time=1d8ac641b79f13e
+@="CLSID_IPropFindRequest"
+
+[Software\\Classes\\CLSID\\{BB847B8A-054A-11D2-A894-0000F8084F96}\\InprocServer32] 1660099896
+#time=1d8ac641b79f224
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{BBEEA841-0A63-4F52-A7AB-A9B3A84ED38A}] 1660099896
+#time=1d8ac641b85eaa2
+@="CMP3DecMediaObject"
+
+[Software\\Classes\\CLSID\\{BBEEA841-0A63-4F52-A7AB-A9B3A84ED38A}\\InprocServer32] 1660099896
+#time=1d8ac641b85eb60
+@="C:\\windows\\system32\\mp3dmod.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{BCDE0395-E52F-467C-8E3D-C4579291692E}] 1660099896
+#time=1d8ac641b853224
+@="MMDeviceEnumerator class"
+
+[Software\\Classes\\CLSID\\{BCDE0395-E52F-467C-8E3D-C4579291692E}\\InprocServer32] 1660099896
+#time=1d8ac641b8532e2
+@="C:\\windows\\system32\\mmdevapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{BF87B6E0-8C27-11D0-B3F0-00AA003761C5}] 1660099896
+#time=1d8ac641baab4c2
+@="Capture Graph Builder"
+
+[Software\\Classes\\CLSID\\{BF87B6E0-8C27-11D0-B3F0-00AA003761C5}\\InprocServer32] 1660099896
+#time=1d8ac641baab5a8
+@="C:\\windows\\system32\\qcap.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{BF87B6E1-8C27-11D0-B3F0-00AA003761C5}] 1660099896
+#time=1d8ac641baabb5c
+@="Capture Graph Builder 2"
+
+[Software\\Classes\\CLSID\\{BF87B6E1-8C27-11D0-B3F0-00AA003761C5}\\InprocServer32] 1660099896
+#time=1d8ac641baabcc4
+@="C:\\windows\\system32\\qcap.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{BFC880F1-7484-11D0-8309-00AA00B6015C}] 1660099896
+#time=1d8ac641b7b0a9c
+@="Download Site Manager"
+
+[Software\\Classes\\CLSID\\{BFC880F1-7484-11D0-8309-00AA00B6015C}\\InprocServer32] 1660099896
+#time=1d8ac641b7b0b50
+@="C:\\windows\\system32\\inseng.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{BFCD4A0C-06B6-4384-B768-0DAA792C380E}] 1660099897
+#time=1d8ac641bc97510
+@="UIAnimationTimer"
+
+[Software\\Classes\\CLSID\\{BFCD4A0C-06B6-4384-B768-0DAA792C380E}\\InprocServer32] 1660099897
+#time=1d8ac641bc97650
+@="C:\\windows\\system32\\uianimation.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{BFE18E9C-6D87-4450-B37C-E02F0B373803}] 1660099897
+#time=1d8ac641bea5762
+@="AutomaticUpdates Class"
+
+[Software\\Classes\\CLSID\\{BFE18E9C-6D87-4450-B37C-E02F0B373803}\\InprocServer32] 1660099897
+#time=1d8ac641bea5370
+@="C:\\windows\\system32\\wuapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{BFE18E9C-6D87-4450-B37C-E02F0B373803}\\ProgId] 1660099897
+#time=1d8ac641bea5488
+@="Microsoft.Update.AutoUpdate.1"
+
+[Software\\Classes\\CLSID\\{BFE18E9C-6D87-4450-B37C-E02F0B373803}\\TypeLib] 1660099897
+#time=1d8ac641bea55a0
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+
+[Software\\Classes\\CLSID\\{BFE18E9C-6D87-4450-B37C-E02F0B373803}\\Version] 1660099897
+#time=1d8ac641bea56a4
+@="2.0"
+
+[Software\\Classes\\CLSID\\{BFE18E9C-6D87-4450-B37C-E02F0B373803}\\VersionIndependentProgId] 1660099897
+#time=1d8ac641bea57c6
+@="Microsoft.Update.AutoUpdate"
+
+[Software\\Classes\\CLSID\\{C01B9BA0-BEA7-41BA-B604-D0A36F469133}] 1660099897
+#time=1d8ac641bea6c8e
+@="SystemInformation Class"
+
+[Software\\Classes\\CLSID\\{C01B9BA0-BEA7-41BA-B604-D0A36F469133}\\InprocServer32] 1660099897
+#time=1d8ac641bea6888
+@="C:\\windows\\system32\\wuapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{C01B9BA0-BEA7-41BA-B604-D0A36F469133}\\ProgId] 1660099897
+#time=1d8ac641bea69b4
+@="Microsoft.Update.SystemInfo.1"
+
+[Software\\Classes\\CLSID\\{C01B9BA0-BEA7-41BA-B604-D0A36F469133}\\TypeLib] 1660099897
+#time=1d8ac641bea6acc
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+
+[Software\\Classes\\CLSID\\{C01B9BA0-BEA7-41BA-B604-D0A36F469133}\\Version] 1660099897
+#time=1d8ac641bea6bda
+@="2.0"
+
+[Software\\Classes\\CLSID\\{C01B9BA0-BEA7-41BA-B604-D0A36F469133}\\VersionIndependentProgId] 1660099897
+#time=1d8ac641bea6ce8
+@="Microsoft.Update.SystemInfo"
+
+[Software\\Classes\\CLSID\\{C04D65CF-B70D-11D0-B188-00AA0038C969}] 1660099896
+#time=1d8ac641b84adae
+@="Multi Language String"
+
+[Software\\Classes\\CLSID\\{C04D65CF-B70D-11D0-B188-00AA0038C969}\\InprocServer32] 1660099896
+#time=1d8ac641b84ae8a
+@="C:\\windows\\system32\\mlang.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{C0B4E2F3-BA21-4773-8DBA-335EC946EB8B}] 1660099896
+#time=1d8ac641b4b8b3c
+@="File Save Dialog"
+
+[Software\\Classes\\CLSID\\{C0B4E2F3-BA21-4773-8DBA-335EC946EB8B}\\InprocServer32] 1660099896
+#time=1d8ac641b4b8c22
+@="C:\\windows\\system32\\comdlg32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{C1EE01F2-B3B6-4A6A-9DDD-E988C088EC82}] 1660099896
+#time=1d8ac641b93d5c2
+@="CActiveIMMAppEx"
+
+[Software\\Classes\\CLSID\\{C1EE01F2-B3B6-4A6A-9DDD-E988C088EC82}\\InprocServer32] 1660099896
+#time=1d8ac641b93d68a
+@="C:\\windows\\system32\\msimtf.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{C1F400A0-3F08-11D3-9F0B-006008039E37}] 1660099896
+#time=1d8ac641bab4586
+@="Sample Grabber"
+
+[Software\\Classes\\CLSID\\{C1F400A0-3F08-11D3-9F0B-006008039E37}\\InprocServer32] 1660099896
+#time=1d8ac641bab4658
+@="C:\\windows\\system32\\qedit.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{C1F400A4-3F08-11D3-9F0B-006008039E37}] 1660099896
+#time=1d8ac641bab42ca
+@="Null Renderer"
+
+[Software\\Classes\\CLSID\\{C1F400A4-3F08-11D3-9F0B-006008039E37}\\InprocServer32] 1660099896
+#time=1d8ac641bab439c
+@="C:\\windows\\system32\\qedit.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{C61BFCDF-2E0F-4AAD-A8D7-E06BAFEBCDFE}] 1660099897
+#time=1d8ac641c3123b8
+@="WIC ICO Decoder"
+"Author"="The Wine Project"
+"ContainerFormat"="{A3A860C4-338F-4C17-919A-FBA4B5628F21}"
+"FileExtensions"=".ico"
+"FriendlyName"="ICO Decoder"
+"MimeTypes"="image/vnd.microsoft.icon"
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{C61BFCDF-2E0F-4AAD-A8D7-E06BAFEBCDFE}\\Formats\\{6FDDC324-4E03-4BFE-B185-3D77768DC90F}] 1660099897
+#time=1d8ac641c3122b4
+
+[Software\\Classes\\CLSID\\{C61BFCDF-2E0F-4AAD-A8D7-E06BAFEBCDFE}\\InprocServer32] 1660099897
+#time=1d8ac641bd85aee
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{C61BFCDF-2E0F-4AAD-A8D7-E06BAFEBCDFE}\\Patterns\\0] 1660099897
+#time=1d8ac641c3125e8
+"EndOfStream"=dword:00000000
+"Length"=dword:00000004
+"Mask"=hex:ff,ff,ff,ff
+"Pattern"=hex:00,00,01,00
+"Position"=dword:00000000
+
+[Software\\Classes\\CLSID\\{C70EB77F-EFD4-4678-A27B-BF1648F30D04}] 1660099896
+#time=1d8ac641b610570
+@="DirectMusic Script Source Code Loader"
+
+[Software\\Classes\\CLSID\\{C70EB77F-EFD4-4678-A27B-BF1648F30D04}\\InprocServer32] 1660099896
+#time=1d8ac641b61005c
+@="C:\\windows\\system32\\dmscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{C70EB77F-EFD4-4678-A27B-BF1648F30D04}\\ProgId] 1660099896
+#time=1d8ac641b6103b8
+@="Microsoft.DirectMusicScripSourceCodeLoader.1"
+
+[Software\\Classes\\CLSID\\{C70EB77F-EFD4-4678-A27B-BF1648F30D04}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b610610
+@="Microsoft.DirectMusicScripSourceCodeLoader"
+
+[Software\\Classes\\CLSID\\{C8B522CF-5CF3-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b14b8dc
+@="OLE DB Error Collection Service"
+
+[Software\\Classes\\CLSID\\{C8B522CF-5CF3-11CE-ADE5-00AA0044773D}\\InprocServer32] 1660099895
+#time=1d8ac641b14b6e8
+@="C:\\Program Files\\Common Files\\System\\OLE DB\\oledb32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{C8B522CF-5CF3-11CE-ADE5-00AA0044773D}\\ProgId] 1660099895
+#time=1d8ac641b14b81e
+@="MSDAER.1"
+
+[Software\\Classes\\CLSID\\{C8B522CF-5CF3-11CE-ADE5-00AA0044773D}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b14baa8
+@="MSDAER"
+
+[Software\\Classes\\CLSID\\{C8B522D1-5CF3-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b14b1ac
+@="OLE DB Data Conversion Library"
+
+[Software\\Classes\\CLSID\\{C8B522D1-5CF3-11CE-ADE5-00AA0044773D}\\InprocServer32] 1660099895
+#time=1d8ac641b14afb8
+@="C:\\Program Files\\Common Files\\System\\OLE DB\\oledb32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{C8B522D1-5CF3-11CE-ADE5-00AA0044773D}\\ProgId] 1660099895
+#time=1d8ac641b14b0e4
+@="MSDADC.1"
+
+[Software\\Classes\\CLSID\\{C8B522D1-5CF3-11CE-ADE5-00AA0044773D}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b14b22e
+@="MSDADC"
+
+[Software\\Classes\\CLSID\\{CACAF262-9370-4615-A13B-9F5539DA4C0A}] 1660099897
+#time=1d8ac641bd82b5a
+@="WIC Imaging Factory"
+
+[Software\\Classes\\CLSID\\{CACAF262-9370-4615-A13B-9F5539DA4C0A}\\InprocServer32] 1660099897
+#time=1d8ac641bd82c54
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{CB2F6723-AB3A-11D2-9C40-00C04FA30A3E}] 1660099896
+#time=1d8ac641b87a388
+@="Microsoft Common Language Runtime Host"
+
+[Software\\Classes\\CLSID\\{CB2F6723-AB3A-11D2-9C40-00C04FA30A3E}\\InprocServer32] 1660099896
+#time=1d8ac641b87a1ee
+@="C:\\windows\\system32\\mscoree.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{CB2F6723-AB3A-11D2-9C40-00C04FA30A3E}\\ProgId] 1660099896
+#time=1d8ac641b87a2e8
+@="CLRMetaData.CorRuntimeHost.2"
+
+[Software\\Classes\\CLSID\\{CB2F6723-AB3A-11D2-9C40-00C04FA30A3E}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b87a3e2
+@="CLRMetaData.CorRuntimeHost"
+
+[Software\\Classes\\CLSID\\{CB8555CC-9128-11D1-AD9B-00C04FD8FDFF}] 1660099895
+#time=1d8ac641b10887a
+@="WBEM Administrative Locator"
+
+[Software\\Classes\\CLSID\\{CB8555CC-9128-11D1-AD9B-00C04FD8FDFF}\\InprocServer32] 1660099895
+#time=1d8ac641b108938
+@="C:\\windows\\system32\\wbem\\wbemprox.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{CC19079B-8272-4D73-BB70-CDB533527B61}] 1660099896
+#time=1d8ac641b761d48
+@="HNetCfg.FwProducts"
+
+[Software\\Classes\\CLSID\\{CC19079B-8272-4D73-BB70-CDB533527B61}\\InprocServer32] 1660099896
+#time=1d8ac641b761c80
+@="C:\\windows\\system32\\hnetcfg.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{CC19079B-8272-4D73-BB70-CDB533527B61}\\ProgId] 1660099896
+#time=1d8ac641b761dac
+@="HNetCfg.FwProducts"
+
+[Software\\Classes\\CLSID\\{CC58E280-8AA1-11D1-B3F1-00AA003761C5}] 1660099896
+#time=1d8ac641baac534
+@="Smart Tee Filter"
+
+[Software\\Classes\\CLSID\\{CC58E280-8AA1-11D1-B3F1-00AA003761C5}\\InprocServer32] 1660099896
+#time=1d8ac641baac674
+@="C:\\windows\\system32\\qcap.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{CC702EB2-7DC5-11D9-C687-0004238A01CD}] 1660099897
+#time=1d8ac641bf24bfc
+@="/"
+
+[Software\\Classes\\CLSID\\{CC702EB2-7DC5-11D9-C687-0004238A01CD}\\InprocServer32] 1660099896
+#time=1d8ac641bbcc4aa
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{CC702EB2-7DC5-11D9-C687-0004238A01CD}\\ShellFolder] 1660099897
+#time=1d8ac641bf24ca6
+"WantsFORPARSING"=""
+
+[Software\\Classes\\CLSID\\{CDA42200-BD88-11D0-BD4E-00A0C911CE86}] 1660099896
+#time=1d8ac641bacee4a
+@="Filter Mapper2"
+
+[Software\\Classes\\CLSID\\{CDA42200-BD88-11D0-BD4E-00A0C911CE86}\\InprocServer32] 1660099896
+#time=1d8ac641bacef12
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{CF49D4E0-1115-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bacff48
+@="AVI Decompressor"
+
+[Software\\Classes\\CLSID\\{CF49D4E0-1115-11CE-B03A-0020AF0BA770}\\InprocServer32] 1660099896
+#time=1d8ac641bacfffc
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA}] 1660099895
+#time=1d8ac641b10e270
+@="WbemDefPath"
+
+[Software\\Classes\\CLSID\\{CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA}\\InprocServer32] 1660099895
+#time=1d8ac641b10e324
+@="C:\\windows\\system32\\wbem\\wmiutils.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{CFC399AF-D876-11D0-9C10-00C04FC99C8E}] 1660099895
+#time=1d8ac641b02efa8
+@="Msxml"
+
+[Software\\Classes\\CLSID\\{CFC399AF-D876-11D0-9C10-00C04FC99C8E}\\InprocServer32] 1660099895
+#time=1d8ac641b02ecd8
+@="C:\\windows\\system32\\msxml.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{CFC399AF-D876-11D0-9C10-00C04FC99C8E}\\ProgId] 1660099895
+#time=1d8ac641b02edf0
+@="Msxml"
+
+[Software\\Classes\\CLSID\\{CFC399AF-D876-11D0-9C10-00C04FC99C8E}\\TypeLib] 1660099895
+#time=1d8ac641b02eef4
+@="{D63E0CE2-A0A2-11D0-9C02-00C04FC99C8E}"
+
+[Software\\Classes\\CLSID\\{CFC399AF-D876-11D0-9C10-00C04FC99C8E}\\Version] 1660099895
+#time=1d8ac641b02f002
+@="1.0"
+
+[Software\\Classes\\CLSID\\{D1EB6D20-8923-11D0-9D97-00A0C90A43CB}] 1660099896
+#time=1d8ac641b63c152
+@="DirectPlay Object"
+
+[Software\\Classes\\CLSID\\{D1EB6D20-8923-11D0-9D97-00A0C90A43CB}\\InprocServer32] 1660099896
+#time=1d8ac641b63c224
+@="C:\\windows\\system32\\dplayx.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2881-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5f645e
+@="DirectMusicPerformance"
+
+[Software\\Classes\\CLSID\\{D2AC2881-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5f626a
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2881-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5f6396
+@="Microsoft.DirectMusicPerformance.1"
+
+[Software\\Classes\\CLSID\\{D2AC2881-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5f64d6
+@="Microsoft.DirectMusicPerformance"
+
+[Software\\Classes\\CLSID\\{D2AC2882-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5f69c2
+@="DirectMusicSegment"
+
+[Software\\Classes\\CLSID\\{D2AC2882-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5f67ce
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2882-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5f68fa
+@="Microsoft.DirectMusicSegment.1"
+
+[Software\\Classes\\CLSID\\{D2AC2882-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5f6a30
+@="Microsoft.DirectMusicSegment"
+
+[Software\\Classes\\CLSID\\{D2AC2883-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5f70de
+@="DirectMusicSegmentState"
+
+[Software\\Classes\\CLSID\\{D2AC2883-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5f6d00
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2883-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5f6fbc
+@="Microsoft.DirectMusicSegmentState.1"
+
+[Software\\Classes\\CLSID\\{D2AC2883-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5f714c
+@="Microsoft.DirectMusicSegmentState"
+
+[Software\\Classes\\CLSID\\{D2AC2884-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5f761a
+@="DirectMusicGraph"
+
+[Software\\Classes\\CLSID\\{D2AC2884-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5f7412
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2884-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5f755c
+@="Microsoft.DirectMusicGraph.1"
+
+[Software\\Classes\\CLSID\\{D2AC2884-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5f767e
+@="Microsoft.DirectMusicGraph"
+
+[Software\\Classes\\CLSID\\{D2AC2885-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5f7ec6
+@="DirectMusicTempoTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2885-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5f79d0
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2885-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5f7dea
+@="Microsoft.DirectMusicTempoTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC2885-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5f7f34
+@="Microsoft.DirectMusicTempoTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2886-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5f840c
+@="DirectMusicSeqTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2886-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5f820e
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2886-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5f833a
+@="Microsoft.DirectMusicSeqTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC2886-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5f847a
+@="Microsoft.DirectMusicSeqTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2887-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5f8966
+@="DirectMusicSysExTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2887-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5f8768
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2887-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5f889e
+@="Microsoft.DirectMusicSysExTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC2887-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5f89d4
+@="Microsoft.DirectMusicSysExTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2888-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5f8ec0
+@="DirectMusicTimeSigTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2888-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5f8c9a
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2888-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5f8df8
+@="Microsoft.DirectMusicTimeSigTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC2888-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5f9262
+@="Microsoft.DirectMusicTimeSigTrack"
+
+[Software\\Classes\\CLSID\\{D2AC288A-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b61ba4c
+@="DirectMusicStyle"
+
+[Software\\Classes\\CLSID\\{D2AC288A-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b61b862
+@="C:\\windows\\system32\\dmstyle.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC288A-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b61b98e
+@="Microsoft.DirectMusicStyle.1"
+
+[Software\\Classes\\CLSID\\{D2AC288A-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b61baba
+@="Microsoft.DirectMusicStyle"
+
+[Software\\Classes\\CLSID\\{D2AC288B-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b61bfa6
+@="DirectMusicChordTrack"
+
+[Software\\Classes\\CLSID\\{D2AC288B-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b61bda8
+@="C:\\windows\\system32\\dmstyle.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC288B-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b61bede
+@="Microsoft.DirectMusicChordTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC288B-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b61c014
+@="Microsoft.DirectMusicChordTrack"
+
+[Software\\Classes\\CLSID\\{D2AC288C-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b61c532
+@="DirectMusicCommandTrack"
+
+[Software\\Classes\\CLSID\\{D2AC288C-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b61c348
+@="C:\\windows\\system32\\dmstyle.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC288C-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b61c47e
+@="Microsoft.DirectMusicCommandTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC288C-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b61c596
+@="Microsoft.DirectMusicCommandTrack"
+
+[Software\\Classes\\CLSID\\{D2AC288D-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b61cad2
+@="DirectMusicStyleTrack"
+
+[Software\\Classes\\CLSID\\{D2AC288D-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b61c8ca
+@="C:\\windows\\system32\\dmstyle.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC288D-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b61ca14
+@="Microsoft.DirectMusicStyleTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC288D-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b61cb36
+@="Microsoft.DirectMusicStyleTrack"
+
+[Software\\Classes\\CLSID\\{D2AC288E-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b61d2ac
+@="DirectMusicMotifTrack"
+
+[Software\\Classes\\CLSID\\{D2AC288E-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b61d0cc
+@="C:\\windows\\system32\\dmstyle.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC288E-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b61d1ee
+@="Microsoft.DirectMusicMotifTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC288E-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b61d306
+@="Microsoft.DirectMusicMotifTrack"
+
+[Software\\Classes\\CLSID\\{D2AC288F-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5ed020
+@="DirectMusicChordMap"
+
+[Software\\Classes\\CLSID\\{D2AC288F-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5ece54
+@="C:\\windows\\system32\\dmcompos.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC288F-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5ecf6c
+@="Microsoft.DirectMusicChordMap.1"
+
+[Software\\Classes\\CLSID\\{D2AC288F-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5ed084
+@="Microsoft.DirectMusicChordMap"
+
+[Software\\Classes\\CLSID\\{D2AC2890-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5ed7d2
+@="DirectMusicComposer"
+
+[Software\\Classes\\CLSID\\{D2AC2890-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5ed606
+@="C:\\windows\\system32\\dmcompos.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2890-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5ed71e
+@="Microsoft.DirectMusicComposer.1"
+
+[Software\\Classes\\CLSID\\{D2AC2890-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5ed836
+@="Microsoft.DirectMusicComposer"
+
+[Software\\Classes\\CLSID\\{D2AC2892-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b609036
+@="DirectMusicLoader"
+
+[Software\\Classes\\CLSID\\{D2AC2892-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b608e60
+@="C:\\windows\\system32\\dmloader.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2892-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b608f78
+@="Microsoft.DirectMusicLoader.1"
+
+[Software\\Classes\\CLSID\\{D2AC2892-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b60909a
+@="Microsoft.DirectMusicLoader"
+
+[Software\\Classes\\CLSID\\{D2AC2894-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5e92c2
+@="DirectMusicBandTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2894-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5e8dc2
+@="C:\\windows\\system32\\dmband.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2894-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5e8f0c
+@="Microsoft.DirectMusicBandTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC2894-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5e933a
+@="Microsoft.DirectMusicBandTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2896-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b5edcfa
+@="DirectMusicChordMapTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2896-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5edb2e
+@="C:\\windows\\system32\\dmcompos.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2896-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5edc46
+@="Microsoft.DirectMusicChordMapTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC2896-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5edd5e
+@="Microsoft.DirectMusicChordMapTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2897-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b61d7a2
+@="DirectMusicAuditionTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2897-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b61d5d6
+@="C:\\windows\\system32\\dmstyle.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2897-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b61d6ee
+@="Microsoft.DirectMusicAuditionTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC2897-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b61d806
+@="Microsoft.DirectMusicAuditionTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2898-B39B-11D1-8704-00600893B1BD}] 1660099896
+#time=1d8ac641b61deb4
+@="DirectMusicMuteTrack"
+
+[Software\\Classes\\CLSID\\{D2AC2898-B39B-11D1-8704-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b61daa4
+@="C:\\windows\\system32\\dmstyle.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2AC2898-B39B-11D1-8704-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b61ddd8
+@="Microsoft.DirectMusicMuteTrack.1"
+
+[Software\\Classes\\CLSID\\{D2AC2898-B39B-11D1-8704-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b61df36
+@="Microsoft.DirectMusicMuteTrack"
+
+[Software\\Classes\\CLSID\\{D2E0FE7F-D23E-48E1-93C0-6FA8CC346474}] 1660099897
+#time=1d8ac641bea5e74
+@="UpdateInstaller Class"
+
+[Software\\Classes\\CLSID\\{D2E0FE7F-D23E-48E1-93C0-6FA8CC346474}\\InprocServer32] 1660099897
+#time=1d8ac641bea5a8c
+@="C:\\windows\\system32\\wuapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D2E0FE7F-D23E-48E1-93C0-6FA8CC346474}\\ProgId] 1660099897
+#time=1d8ac641bea5b9a
+@="Microsoft.Update.Installer.1"
+
+[Software\\Classes\\CLSID\\{D2E0FE7F-D23E-48E1-93C0-6FA8CC346474}\\TypeLib] 1660099897
+#time=1d8ac641bea5cb2
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+
+[Software\\Classes\\CLSID\\{D2E0FE7F-D23E-48E1-93C0-6FA8CC346474}\\Version] 1660099897
+#time=1d8ac641bea5dc0
+@="2.0"
+
+[Software\\Classes\\CLSID\\{D2E0FE7F-D23E-48E1-93C0-6FA8CC346474}\\VersionIndependentProgId] 1660099897
+#time=1d8ac641bea5ece
+@="Microsoft.Update.Installer"
+
+[Software\\Classes\\CLSID\\{D30BCC65-60E8-11D1-A7CE-00A0C913F73C}] 1660099896
+#time=1d8ac641b5ee1c8
+@="DirectMusicTemplate"
+
+[Software\\Classes\\CLSID\\{D30BCC65-60E8-11D1-A7CE-00A0C913F73C}\\InprocServer32] 1660099896
+#time=1d8ac641b5edffc
+@="C:\\windows\\system32\\dmcompos.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D30BCC65-60E8-11D1-A7CE-00A0C913F73C}\\ProgId] 1660099896
+#time=1d8ac641b5ee114
+@="Microsoft.DirectMusicTemplate.1"
+
+[Software\\Classes\\CLSID\\{D30BCC65-60E8-11D1-A7CE-00A0C913F73C}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5ee22c
+@="Microsoft.DirectMusicTemplate"
+
+[Software\\Classes\\CLSID\\{D3F5B8E6-9B78-4A4C-94EA-CA2397B663D3}] 1660099896
+#time=1d8ac641b654a72
+@="DirectPlayVoice Server Object"
+
+[Software\\Classes\\CLSID\\{D3F5B8E6-9B78-4A4C-94EA-CA2397B663D3}\\InprocServer32] 1660099896
+#time=1d8ac641b654888
+@="C:\\windows\\system32\\dpvoice.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D3F5B8E6-9B78-4A4C-94EA-CA2397B663D3}\\ProgId] 1660099896
+#time=1d8ac641b6549b4
+@="DirectPlayVoice.Server.1"
+
+[Software\\Classes\\CLSID\\{D3F5B8E6-9B78-4A4C-94EA-CA2397B663D3}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b654ae0
+@="DirectPlayVoice.Server"
+
+[Software\\Classes\\CLSID\\{D51BD5A1-7548-11CF-A520-0080C77EF58A}] 1660099897
+#time=1d8ac641bdb929a
+@="Wave Parser"
+
+[Software\\Classes\\CLSID\\{D51BD5A1-7548-11CF-A520-0080C77EF58A}\\InprocServer32] 1660099897
+#time=1d8ac641bdb9358
+@="C:\\windows\\system32\\winegstreamer.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D54EEE56-AAAB-11D0-9E1D-00A0C922E6EC}] 1660099896
+#time=1d8ac641b7c3a3e
+@="Microsoft InfoTech IStorage for Win32 Files"
+
+[Software\\Classes\\CLSID\\{D54EEE56-AAAB-11D0-9E1D-00A0C922E6EC}\\InprocServer32] 1660099896
+#time=1d8ac641b7bfe70
+@="C:\\windows\\system32\\itss.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D54EEE56-AAAB-11D0-9E1D-00A0C922E6EC}\\NotInsertable] 1660099896
+#time=1d8ac641b7c3a3e
+
+[Software\\Classes\\CLSID\\{D54EEE56-AAAB-11D0-9E1D-00A0C922E6EC}\\ProgId] 1660099896
+#time=1d8ac641b7bff88
+@="MSITFS1.0"
+
+[Software\\Classes\\CLSID\\{D54EEE56-AAAB-11D0-9E1D-00A0C922E6EC}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b7c00a0
+@="MSITFS"
+
+[Software\\Classes\\CLSID\\{D66D6F99-CDAA-11D0-B822-00C04FC9B31F}] 1660099896
+#time=1d8ac641b84b0a6
+@="Multi Language ConvertCharset"
+
+[Software\\Classes\\CLSID\\{D66D6F99-CDAA-11D0-B822-00C04FC9B31F}\\InprocServer32] 1660099896
+#time=1d8ac641b84b178
+@="C:\\windows\\system32\\mlang.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D6FEDB1D-CF21-4BD9-AF3B-C5468E9C6684}] 1660099896
+#time=1d8ac641b84ff20
+@="MMCVersionInfo 1.0 Object"
+
+[Software\\Classes\\CLSID\\{D6FEDB1D-CF21-4BD9-AF3B-C5468E9C6684}\\InprocServer32] 1660099896
+#time=1d8ac641b84fac0
+@="C:\\windows\\system32\\mmcndmgr.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{D6FEDB1D-CF21-4BD9-AF3B-C5468E9C6684}\\ProgId] 1660099896
+#time=1d8ac641b84fc6e
+@="NODEMGR.MMCVersionInfo.1"
+
+[Software\\Classes\\CLSID\\{D6FEDB1D-CF21-4BD9-AF3B-C5468E9C6684}\\TypeLib] 1660099896
+#time=1d8ac641b84fd72
+@="{9EECDD85-B715-4188-8A72-61159ABDB8C4}"
+
+[Software\\Classes\\CLSID\\{D6FEDB1D-CF21-4BD9-AF3B-C5468E9C6684}\\Version] 1660099896
+#time=1d8ac641b84fe6c
+@="1.0"
+
+[Software\\Classes\\CLSID\\{D6FEDB1D-CF21-4BD9-AF3B-C5468E9C6684}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b84ff7a
+@="NODEMGR.MMCVersionInfo"
+
+[Software\\Classes\\CLSID\\{D76E2820-1563-11CF-AC98-00AA004C0FA9}] 1660099896
+#time=1d8ac641baaacfc
+@="Audio Capture Filter"
+
+[Software\\Classes\\CLSID\\{D76E2820-1563-11CF-AC98-00AA004C0FA9}\\InprocServer32] 1660099896
+#time=1d8ac641baaadd8
+@="C:\\windows\\system32\\qcap.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D7B70EE0-4340-11CF-B063-0020AFC2CD35}] 1660099896
+#time=1d8ac641b5a07d4
+@="DirectDraw Object"
+
+[Software\\Classes\\CLSID\\{D7B70EE0-4340-11CF-B063-0020AFC2CD35}\\InprocServer32] 1660099896
+#time=1d8ac641b5a08a6
+@="C:\\windows\\system32\\ddraw.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D98C6B95-3EFE-47D6-BB25-EB1748AB0CF1}] 1660099897
+#time=1d8ac641c3334fa
+"Author"="The Wine Project"
+"BitLength"=dword:00000020
+"ChannelCount"=dword:00000003
+"FriendlyName"="32bpp RGB"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{D98C6B95-3EFE-47D6-BB25-EB1748AB0CF1}\\ChannelMasks] 1660099897
+#time=1d8ac641c333612
+"0"=hex:ff,00,00,00
+"1"=hex:00,ff,00,00
+"2"=hex:00,00,ff,00
+
+[Software\\Classes\\CLSID\\{D9F6EE60-58C9-458B-88E1-2F908FD7F87C}] 1660099895
+#time=1d8ac641b0f596e
+@="Data Key"
+
+[Software\\Classes\\CLSID\\{D9F6EE60-58C9-458B-88E1-2F908FD7F87C}\\InprocServer32] 1660099895
+#time=1d8ac641b0f5798
+@="C:\\windows\\system32\\Speech\\Common\\sapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{D9F6EE60-58C9-458B-88E1-2F908FD7F87C}\\ProgId] 1660099895
+#time=1d8ac641b0f58b0
+@="SAPI.SpDataKey.1"
+
+[Software\\Classes\\CLSID\\{D9F6EE60-58C9-458B-88E1-2F908FD7F87C}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0f59d2
+@="SAPI.SpDataKey"
+
+[Software\\Classes\\CLSID\\{DA4E3DA0-D07D-11D0-BD50-00A0C911CE86}] 1660099897
+#time=1d8ac641c25bef6
+@="ActiveMovie Filter Categories"
+
+[Software\\Classes\\CLSID\\{DA4E3DA0-D07D-11D0-BD50-00A0C911CE86}\\InprocServer32] 1660099896
+#time=1d8ac641b5ac084
+@="C:\\windows\\system32\\devenum.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{DA4E3DA0-D07D-11D0-BD50-00A0C911CE86}\\Instance\\{083863F1-70DE-11D0-BD40-00A0C911CE86}] 1660099897
+#time=1d8ac641c25d0d0
+"CLSID"="{083863F1-70DE-11D0-BD40-00A0C911CE86}"
+"FriendlyName"="DirectShow Filters"
+"Merit"=dword:00600000
+
+[Software\\Classes\\CLSID\\{DA4E3DA0-D07D-11D0-BD50-00A0C911CE86}\\Instance\\{33D9A760-90C8-11D0-BD43-00A0C911CE86}] 1660099897
+#time=1d8ac641c25d8a0
+"CLSID"="{33D9A760-90C8-11D0-BD43-00A0C911CE86}"
+"FriendlyName"="Video Compressors"
+"Merit"=dword:00200000
+
+[Software\\Classes\\CLSID\\{DA4E3DA0-D07D-11D0-BD50-00A0C911CE86}\\Instance\\{33D9A761-90C8-11D0-BD43-00A0C911CE86}] 1660099897
+#time=1d8ac641c25c2d4
+"CLSID"="{33D9A761-90C8-11D0-BD43-00A0C911CE86}"
+"FriendlyName"="Audio Compressors"
+"Merit"=dword:00200000
+
+[Software\\Classes\\CLSID\\{DA4E3DA0-D07D-11D0-BD50-00A0C911CE86}\\Instance\\{33D9A762-90C8-11D0-BD43-00A0C911CE86}] 1660099897
+#time=1d8ac641c25c4dc
+"CLSID"="{33D9A762-90C8-11D0-BD43-00A0C911CE86}"
+"FriendlyName"="Audio Capture Sources"
+"Merit"=dword:00200000
+
+[Software\\Classes\\CLSID\\{DA4E3DA0-D07D-11D0-BD50-00A0C911CE86}\\Instance\\{4EFE2452-168A-11D1-BC76-00C04FB9453B}] 1660099897
+#time=1d8ac641c25d2b0
+"CLSID"="{4EFE2452-168A-11D1-BC76-00C04FB9453B}"
+"FriendlyName"="Midi Renderers"
+"Merit"=dword:00600000
+
+[Software\\Classes\\CLSID\\{DA4E3DA0-D07D-11D0-BD50-00A0C911CE86}\\Instance\\{860BB310-5D01-11D0-BD3B-00A0C911CE86}] 1660099897
+#time=1d8ac641c25d6c0
+"CLSID"="{860BB310-5D01-11D0-BD3B-00A0C911CE86}"
+"FriendlyName"="Video Capture Sources"
+"Merit"=dword:00200000
+
+[Software\\Classes\\CLSID\\{DA4E3DA0-D07D-11D0-BD50-00A0C911CE86}\\Instance\\{CC7BFB41-F175-11D1-A392-00E0291F3959}] 1660099897
+#time=1d8ac641c25d4e0
+"CLSID"="{CC7BFB41-F175-11D1-A392-00E0291F3959}"
+"FriendlyName"="External Renderers"
+"Merit"=dword:00200000
+
+[Software\\Classes\\CLSID\\{DA4E3DA0-D07D-11D0-BD50-00A0C911CE86}\\Instance\\{CC7BFB46-F175-11D1-A392-00E0291F3959}] 1660099897
+#time=1d8ac641c25cee6
+"CLSID"="{CC7BFB46-F175-11D1-A392-00E0291F3959}"
+"FriendlyName"="Device Control Filters"
+"Merit"=dword:00200000
+
+[Software\\Classes\\CLSID\\{DA4E3DA0-D07D-11D0-BD50-00A0C911CE86}\\Instance\\{E0F158E1-CB04-11D0-BD4E-00A0C911CE86}] 1660099897
+#time=1d8ac641c25ccfc
+"CLSID"="{E0F158E1-CB04-11D0-BD4E-00A0C911CE86}"
+"FriendlyName"="Audio Renderers"
+"Merit"=dword:00600000
+
+[Software\\Classes\\CLSID\\{DA825E1B-6830-43D7-835D-0B5AD82956A2}] 1660099896
+#time=1d8ac641b643e3e
+@="DirectPlay8Server Object"
+
+[Software\\Classes\\CLSID\\{DA825E1B-6830-43D7-835D-0B5AD82956A2}\\InprocServer32] 1660099896
+#time=1d8ac641b643f10
+@="C:\\windows\\system32\\dpnet.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{DBC85A2C-C0DC-4961-B6E2-D28B62C11AD4}] 1660099896
+#time=1d8ac641b7201e0
+@="GameStatistics Class"
+
+[Software\\Classes\\CLSID\\{DBC85A2C-C0DC-4961-B6E2-D28B62C11AD4}\\InprocServer32] 1660099896
+#time=1d8ac641b71fc5e
+@="C:\\windows\\system32\\gameux.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{DBC85A2C-C0DC-4961-B6E2-D28B62C11AD4}\\ProgId] 1660099896
+#time=1d8ac641b71fd76
+@="gameux.GameStatistics.1"
+
+[Software\\Classes\\CLSID\\{DBC85A2C-C0DC-4961-B6E2-D28B62C11AD4}\\TypeLib] 1660099896
+#time=1d8ac641b71fe84
+@="{4F48A59C-942D-4F3C-83C9-4EFFE84E4959}"
+
+[Software\\Classes\\CLSID\\{DBC85A2C-C0DC-4961-B6E2-D28B62C11AD4}\\Version] 1660099896
+#time=1d8ac641b72006e
+@="1.0"
+
+[Software\\Classes\\CLSID\\{DBC85A2C-C0DC-4961-B6E2-D28B62C11AD4}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b720262
+@="gameux.GameStatistics"
+
+[Software\\Classes\\CLSID\\{DC1C5A9C-E88A-4DDE-A5A1-60F82A20AEF7}] 1660099896
+#time=1d8ac641b4b8826
+@="File Open Dialog"
+
+[Software\\Classes\\CLSID\\{DC1C5A9C-E88A-4DDE-A5A1-60F82A20AEF7}\\InprocServer32] 1660099896
+#time=1d8ac641b4b890c
+@="C:\\windows\\system32\\comdlg32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}] 1660099896
+#time=1d8ac641b9c83ac
+@="NetworkListManager"
+
+[Software\\Classes\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\InprocServer32] 1660099896
+#time=1d8ac641b9c84d8
+@="C:\\windows\\system32\\netprofm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{DF0B3D60-548F-101B-8E65-08002B2BD119}] 1660099896
+#time=1d8ac641ba46bee
+@="PSSupportErrorInfo"
+
+[Software\\Classes\\CLSID\\{DF0B3D60-548F-101B-8E65-08002B2BD119}\\InprocServer] 1660099896
+#time=1d8ac641ba46e32
+@="ole2disp.dll"
+
+[Software\\Classes\\CLSID\\{DF0B3D60-548F-101B-8E65-08002B2BD119}\\InprocServer32] 1660099896
+#time=1d8ac641ba44592
+@="C:\\windows\\system32\\oleaut32.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{DF2FCE13-25EC-45BB-9D4C-CECD47C2430C}] 1660099897
+#time=1d8ac641bcba826
+@="CUri"
+
+[Software\\Classes\\CLSID\\{DF2FCE13-25EC-45BB-9D4C-CECD47C2430C}\\InprocServer32] 1660099897
+#time=1d8ac641bcba920
+@="C:\\windows\\system32\\urlmon.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{DF4FCC34-067A-4E0A-8352-4A1A5095346E}] 1660099897
+#time=1d8ac641c4a368c
+@="InternetExplorerManager"
+
+[Software\\Classes\\CLSID\\{DF4FCC34-067A-4E0A-8352-4A1A5095346E}\\LocalServer32] 1660099897
+#time=1d8ac641c4a3736
+@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" -startmanager"
+
+[Software\\Classes\\CLSID\\{E0F158E1-CB04-11D0-BD4E-00A0C911CE86}] 1660099896
+#time=1d8ac641b5ab8aa
+@="WaveOut and DSound Class Manager"
+
+[Software\\Classes\\CLSID\\{E0F158E1-CB04-11D0-BD4E-00A0C911CE86}\\InprocServer32] 1660099896
+#time=1d8ac641b5ab99a
+@="C:\\windows\\system32\\devenum.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E2510970-F137-11CE-8B67-00AA00A3F1A6}] 1660099896
+#time=1d8ac641baaafc2
+@="AVI mux"
+
+[Software\\Classes\\CLSID\\{E2510970-F137-11CE-8B67-00AA00A3F1A6}\\InprocServer32] 1660099896
+#time=1d8ac641baab09e
+@="C:\\windows\\system32\\qcap.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E2B3C97F-6AE1-41AC-817A-F6F92166D7DD}] 1660099896
+#time=1d8ac641b7610c8
+@="HNetCfg.FwPolicy2"
+
+[Software\\Classes\\CLSID\\{E2B3C97F-6AE1-41AC-817A-F6F92166D7DD}\\InprocServer32] 1660099896
+#time=1d8ac641b760fd8
+@="C:\\windows\\system32\\hnetcfg.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E2B3C97F-6AE1-41AC-817A-F6F92166D7DD}\\ProgId] 1660099896
+#time=1d8ac641b76112c
+@="HNetCfg.FwPolicy2"
+
+[Software\\Classes\\CLSID\\{E30629D1-27E5-11CE-875D-00608CB78066}] 1660099896
+#time=1d8ac641bad0448
+@="Wave Audio Renderer"
+
+[Software\\Classes\\CLSID\\{E30629D1-27E5-11CE-875D-00608CB78066}\\InprocServer32] 1660099896
+#time=1d8ac641bad04fc
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E30629D2-27E5-11CE-875D-00608CB78066}] 1660099896
+#time=1d8ac641baaaa22
+@="Audio Capture Filter"
+
+[Software\\Classes\\CLSID\\{E30629D2-27E5-11CE-875D-00608CB78066}\\InprocServer32] 1660099896
+#time=1d8ac641baaaaf4
+@="C:\\windows\\system32\\qcap.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E3FED78F-E8DB-4ACF-84C1-E97F6136B327}] 1660099897
+#time=1d8ac641c337d7a
+"Author"="The Wine Project"
+"BitLength"=dword:00000060
+"ChannelCount"=dword:00000003
+"FriendlyName"="96bpp RGBFloat"
+"NumericRepresentation"=dword:00000005
+"SupportsTransparency"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{E3FED78F-E8DB-4ACF-84C1-E97F6136B327}\\ChannelMasks] 1660099897
+#time=1d8ac641c337eec
+"0"=hex:ff,ff,ff,ff,00,00,00,00,00,00,00,00
+"1"=hex:00,00,00,00,ff,ff,ff,ff,00,00,00,00
+"2"=hex:00,00,00,00,00,00,00,00,ff,ff,ff,ff
+
+[Software\\Classes\\CLSID\\{E436EBB1-524F-11CE-9F53-0020AF0BA770}] 1660099896
+#time=1d8ac641bacf1ce
+@="System Clock"
+
+[Software\\Classes\\CLSID\\{E436EBB1-524F-11CE-9F53-0020AF0BA770}\\InprocServer32] 1660099896
+#time=1d8ac641bacf2e6
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E436EBB2-524F-11CE-9F53-0020AF0BA770}] 1660099896
+#time=1d8ac641baceb48
+@="Filter Mapper"
+
+[Software\\Classes\\CLSID\\{E436EBB2-524F-11CE-9F53-0020AF0BA770}\\InprocServer32] 1660099896
+#time=1d8ac641bacec6a
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E436EBB3-524F-11CE-9F53-0020AF0BA770}] 1660099896
+#time=1d8ac641bace602
+@="Filter Graph"
+
+[Software\\Classes\\CLSID\\{E436EBB3-524F-11CE-9F53-0020AF0BA770}\\InprocServer32] 1660099896
+#time=1d8ac641bace6ca
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E436EBB5-524F-11CE-9F53-0020AF0BA770}] 1660099896
+#time=1d8ac641bacfc8c
+@="File Source Filter"
+
+[Software\\Classes\\CLSID\\{E436EBB5-524F-11CE-9F53-0020AF0BA770}\\InprocServer32] 1660099896
+#time=1d8ac641bacfd68
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E436EBB8-524F-11CE-9F53-0020AF0BA770}] 1660099896
+#time=1d8ac641bace8aa
+@="Filter Graph no thread"
+
+[Software\\Classes\\CLSID\\{E436EBB8-524F-11CE-9F53-0020AF0BA770}\\InprocServer32] 1660099896
+#time=1d8ac641bace972
+@="C:\\windows\\system32\\quartz.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E474E05A-AB65-4F6A-827C-218B1BAAF31F}] 1660099896
+#time=1d8ac641b69712e
+@="MF Video Mixer"
+
+[Software\\Classes\\CLSID\\{E474E05A-AB65-4F6A-827C-218B1BAAF31F}\\InprocServer32] 1660099896
+#time=1d8ac641b697200
+@="C:\\windows\\system32\\evr.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E4BCAC13-7F99-4908-9A8E-74E3BF24B6E1}] 1660099896
+#time=1d8ac641b668f36
+@="DirectSoundCapture 8.0 Object"
+
+[Software\\Classes\\CLSID\\{E4BCAC13-7F99-4908-9A8E-74E3BF24B6E1}\\InprocServer32] 1660099896
+#time=1d8ac641b66901c
+@="C:\\windows\\system32\\dsound.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E5CB7A31-7512-11D2-89CE-0080C792E5D8}] 1660099896
+#time=1d8ac641b879abe
+@="Microsoft Common Language Runtime Meta Data"
+
+[Software\\Classes\\CLSID\\{E5CB7A31-7512-11D2-89CE-0080C792E5D8}\\InprocServer32] 1660099896
+#time=1d8ac641b8798ca
+@="C:\\windows\\system32\\mscoree.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E5CB7A31-7512-11D2-89CE-0080C792E5D8}\\ProgId] 1660099896
+#time=1d8ac641b8799ce
+@="CLRMetaData.CorMetaDataDispenser.2"
+
+[Software\\Classes\\CLSID\\{E5CB7A31-7512-11D2-89CE-0080C792E5D8}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b879b18
+@="CLRMetaData.CorMetaDataDispenser"
+
+[Software\\Classes\\CLSID\\{E77CC89B-7401-4C04-8CED-149DB35ADD04}] 1660099897
+#time=1d8ac641be62110
+@="WindowsParentalControls class"
+
+[Software\\Classes\\CLSID\\{E77CC89B-7401-4C04-8CED-149DB35ADD04}\\InprocServer32] 1660099897
+#time=1d8ac641be621e2
+@="C:\\windows\\system32\\wpc.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E7FF1300-96A5-11D3-AC85-00C04FC2C602}] 1660099896
+#time=1d8ac641b6816d0
+@="DirectX8"
+
+[Software\\Classes\\CLSID\\{E7FF1300-96A5-11D3-AC85-00C04FC2C602}\\InprocServer32] 1660099896
+#time=1d8ac641b681496
+@="C:\\windows\\system32\\dx8vb.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{E7FF1300-96A5-11D3-AC85-00C04FC2C602}\\ProgId] 1660099896
+#time=1d8ac641b6815fe
+@="DIRECT.DirectX8.0"
+
+[Software\\Classes\\CLSID\\{E7FF1300-96A5-11D3-AC85-00C04FC2C602}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b681928
+@="DIRECT.DirectX8.0"
+
+[Software\\Classes\\CLSID\\{EA678830-235D-11D2-A8B6-0000F8084F96}] 1660099896
+#time=1d8ac641b79f486
+@="CLSID_IPropPatchRequest"
+
+[Software\\Classes\\CLSID\\{EA678830-235D-11D2-A8B6-0000F8084F96}\\InprocServer32] 1660099896
+#time=1d8ac641b79f58a
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{EAB22AC3-30C1-11CF-A7EB-0000C05BAE0B}] 1660099895
+#time=1d8ac641b0d7f9a
+@="Microsoft Web Browser Version 1"
+
+[Software\\Classes\\CLSID\\{EAB22AC3-30C1-11CF-A7EB-0000C05BAE0B}\\InprocServer32] 1660099896
+#time=1d8ac641b780072
+@="C:\\windows\\system32\\ieframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{EAB22AC3-30C1-11CF-A7EB-0000C05BAE0B}\\ProgId] 1660099895
+#time=1d8ac641b0d7cca
+@="Shell.Explorer.1"
+
+[Software\\Classes\\CLSID\\{EAB22AC3-30C1-11CF-A7EB-0000C05BAE0B}\\TypeLib] 1660099895
+#time=1d8ac641b0d7dd8
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+
+[Software\\Classes\\CLSID\\{EAB22AC3-30C1-11CF-A7EB-0000C05BAE0B}\\Version] 1660099895
+#time=1d8ac641b0d7ee6
+@="1.1"
+
+[Software\\Classes\\CLSID\\{EAB22AC3-30C1-11CF-A7EB-0000C05BAE0B}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0d7ff4
+@="Shell.Explorer"
+
+[Software\\Classes\\CLSID\\{EB87E1BD-3233-11D2-AEC9-00C04FB68820}] 1660099895
+#time=1d8ac641b10e4dc
+@="WbemStatusCode"
+
+[Software\\Classes\\CLSID\\{EB87E1BD-3233-11D2-AEC9-00C04FB68820}\\InprocServer32] 1660099895
+#time=1d8ac641b10e590
+@="C:\\windows\\system32\\wbem\\wmiutils.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{EBB08C45-6C4A-4FDC-AE53-4EB8C4C7DB8E}] 1660099896
+#time=1d8ac641b87f72a
+@="TF_LangBarMgr"
+
+[Software\\Classes\\CLSID\\{EBB08C45-6C4A-4FDC-AE53-4EB8C4C7DB8E}\\InprocServer32] 1660099896
+#time=1d8ac641b87f7de
+@="C:\\windows\\system32\\msctf.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{EBF2320A-2502-11D3-8BD1-00600893B1B6}] 1660099896
+#time=1d8ac641b610dd6
+@="DirectMusic Script AutoImp SegmentState"
+
+[Software\\Classes\\CLSID\\{EBF2320A-2502-11D3-8BD1-00600893B1B6}\\InprocServer32] 1660099896
+#time=1d8ac641b610af2
+@="C:\\windows\\system32\\dmscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{EBF2320A-2502-11D3-8BD1-00600893B1B6}\\ProgId] 1660099896
+#time=1d8ac641b610c3c
+@="Microsoft.DirectMusicScriptAutoImpSegmentState.1"
+
+[Software\\Classes\\CLSID\\{EBF2320A-2502-11D3-8BD1-00600893B1B6}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b610e3a
+@="Microsoft.DirectMusicScriptAutoImpSegmentState"
+
+[Software\\Classes\\CLSID\\{EC9846B3-2762-4A6B-A214-6ACB603462D2}] 1660099896
+#time=1d8ac641b760894
+@="HNetCfg.FwAuthorizedApplication"
+
+[Software\\Classes\\CLSID\\{EC9846B3-2762-4A6B-A214-6ACB603462D2}\\InprocServer32] 1660099896
+#time=1d8ac641b7607d6
+@="C:\\windows\\system32\\hnetcfg.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{EC9846B3-2762-4A6B-A214-6ACB603462D2}\\ProgId] 1660099896
+#time=1d8ac641b760902
+@="HNetCfg.FwAuthorizedApplication"
+
+[Software\\Classes\\CLSID\\{ECABAFC6-7F19-11D2-978E-0000F8757E2A}] 1660099896
+#time=1d8ac641b4c78d0
+@="New Moniker"
+
+[Software\\Classes\\CLSID\\{ECABAFC6-7F19-11D2-978E-0000F8757E2A}\\InprocServer32] 1660099896
+#time=1d8ac641b4c7808
+@="C:\\windows\\system32\\comsvcs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{ECABAFC6-7F19-11D2-978E-0000F8757E2A}\\ProgId] 1660099896
+#time=1d8ac641b4c792a
+@="new"
+
+[Software\\Classes\\CLSID\\{ECABB0C0-7F19-11D2-978E-0000F8757E2A}] 1660099896
+#time=1d8ac641b4c8ac8
+@="DispenserManager"
+
+[Software\\Classes\\CLSID\\{ECABB0C0-7F19-11D2-978E-0000F8757E2A}\\InprocServer32] 1660099896
+#time=1d8ac641b4c88a2
+@="C:\\windows\\system32\\comsvcs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{ECABB0C0-7F19-11D2-978E-0000F8757E2A}\\TypeLib] 1660099896
+#time=1d8ac641b4c89ec
+@="{2A005C00-A5DE-11CF-9E66-00AA00A3F464}"
+
+[Software\\Classes\\CLSID\\{ECABB0C0-7F19-11D2-978E-0000F8757E2A}\\Version] 1660099896
+#time=1d8ac641b4c8b36
+@="1.0"
+
+[Software\\Classes\\CLSID\\{ED8C108E-4349-11D2-91A4-00C04F7969E8}] 1660099895
+#time=1d8ac641b02e2f6
+@="XML HTTP Request"
+
+[Software\\Classes\\CLSID\\{ED8C108E-4349-11D2-91A4-00C04F7969E8}\\InprocServer32] 1660099895
+#time=1d8ac641b02defa
+@="C:\\windows\\system32\\msxml.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{ED8C108E-4349-11D2-91A4-00C04F7969E8}\\ProgId] 1660099895
+#time=1d8ac641b02e012
+@="Microsoft.XMLHTTP.1.0"
+
+[Software\\Classes\\CLSID\\{ED8C108E-4349-11D2-91A4-00C04F7969E8}\\TypeLib] 1660099895
+#time=1d8ac641b02e120
+@="{D63E0CE2-A0A2-11D0-9C02-00C04FC99C8E}"
+
+[Software\\Classes\\CLSID\\{ED8C108E-4349-11D2-91A4-00C04F7969E8}\\Version] 1660099895
+#time=1d8ac641b02e242
+@="1.0"
+
+[Software\\Classes\\CLSID\\{ED8C108E-4349-11D2-91A4-00C04F7969E8}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b02e35a
+@="Microsoft.XMLHTTP"
+
+[Software\\Classes\\CLSID\\{EE09B103-97E0-11CF-978F-00A02463E06F}] 1660099896
+#time=1d8ac641bb5781c
+@="Scripting.Dictionary"
+
+[Software\\Classes\\CLSID\\{EE09B103-97E0-11CF-978F-00A02463E06F}\\InprocServer32] 1660099896
+#time=1d8ac641bb57510
+@="C:\\windows\\system32\\scrrun.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{EE09B103-97E0-11CF-978F-00A02463E06F}\\ProgId] 1660099896
+#time=1d8ac641bb57646
+@="Scripting.Dictionary"
+
+[Software\\Classes\\CLSID\\{EE09B103-97E0-11CF-978F-00A02463E06F}\\TypeLib] 1660099896
+#time=1d8ac641bb57768
+@="{420B2830-E718-11CF-893D-00A0C9054228}"
+
+[Software\\Classes\\CLSID\\{EE09B103-97E0-11CF-978F-00A02463E06F}\\Version] 1660099896
+#time=1d8ac641bb5789e
+@="1.0"
+
+[Software\\Classes\\CLSID\\{EE0B9CA0-A81E-11D3-9BD1-0080C7150A74}] 1660099896
+#time=1d8ac641b5fd6be
+@="DirectMusicAudioPath"
+
+[Software\\Classes\\CLSID\\{EE0B9CA0-A81E-11D3-9BD1-0080C7150A74}\\InprocServer32] 1660099896
+#time=1d8ac641b5fd4b6
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{EE0B9CA0-A81E-11D3-9BD1-0080C7150A74}\\ProgId] 1660099896
+#time=1d8ac641b5fd5f6
+@="Microsoft.DirectMusicAudioPath.1"
+
+[Software\\Classes\\CLSID\\{EE0B9CA0-A81E-11D3-9BD1-0080C7150A74}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5fd72c
+@="Microsoft.DirectMusicAudioPath"
+
+[Software\\Classes\\CLSID\\{EED36461-9EA5-11D3-9BD1-0080C7150A74}] 1660099896
+#time=1d8ac641b5fdefc
+@="DirectMusicWaveTrack"
+
+[Software\\Classes\\CLSID\\{EED36461-9EA5-11D3-9BD1-0080C7150A74}\\InprocServer32] 1660099896
+#time=1d8ac641b5fdb6e
+@="C:\\windows\\system32\\dmime.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{EED36461-9EA5-11D3-9BD1-0080C7150A74}\\ProgId] 1660099896
+#time=1d8ac641b5fde34
+@="Microsoft.DirectMusicWaveTrack.1"
+
+[Software\\Classes\\CLSID\\{EED36461-9EA5-11D3-9BD1-0080C7150A74}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5fdf6a
+@="Microsoft.DirectMusicWaveTrack"
+
+[Software\\Classes\\CLSID\\{EF411752-3736-4CB4-9C8C-8EF4CCB58EFE}] 1660099895
+#time=1d8ac641b0f2a34
+@="Object Token"
+
+[Software\\Classes\\CLSID\\{EF411752-3736-4CB4-9C8C-8EF4CCB58EFE}\\InprocServer32] 1660099895
+#time=1d8ac641b0f2584
+@="C:\\windows\\system32\\Speech\\Common\\sapi.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{EF411752-3736-4CB4-9C8C-8EF4CCB58EFE}\\ProgId] 1660099895
+#time=1d8ac641b0f26ba
+@="SAPI.SpObjectToken.1"
+
+[Software\\Classes\\CLSID\\{EF411752-3736-4CB4-9C8C-8EF4CCB58EFE}\\TypeLib] 1660099895
+#time=1d8ac641b0f2822
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+
+[Software\\Classes\\CLSID\\{EF411752-3736-4CB4-9C8C-8EF4CCB58EFE}\\Version] 1660099895
+#time=1d8ac641b0f2962
+@="5.4"
+
+[Software\\Classes\\CLSID\\{EF411752-3736-4CB4-9C8C-8EF4CCB58EFE}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0f2aa2
+@="SAPI.SpObjectToken"
+
+[Software\\Classes\\CLSID\\{EF985E71-D5C7-42D4-BA4D-2D073E2E96F4}] 1660099896
+#time=1d8ac641b663928
+@="DirectSoundI3DL2ReverbDMO"
+
+[Software\\Classes\\CLSID\\{EF985E71-D5C7-42D4-BA4D-2D073E2E96F4}\\InprocServer32] 1660099896
+#time=1d8ac641b663734
+@="C:\\windows\\system32\\dsdmo.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{EF985E71-D5C7-42D4-BA4D-2D073E2E96F4}\\ProgId] 1660099896
+#time=1d8ac641b663860
+@="Microsoft.DirectSoundI3DL2ReverbDMO.1"
+
+[Software\\Classes\\CLSID\\{EF985E71-D5C7-42D4-BA4D-2D073E2E96F4}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b663996
+@="Microsoft.DirectSoundI3DL2ReverbDMO"
+
+[Software\\Classes\\CLSID\\{F17E8672-C3B4-11D1-870B-00600893B1BD}] 1660099896
+#time=1d8ac641b5ee70e
+@="DirectMusicSignPostTrack"
+
+[Software\\Classes\\CLSID\\{F17E8672-C3B4-11D1-870B-00600893B1BD}\\InprocServer32] 1660099896
+#time=1d8ac641b5ee4e8
+@="C:\\windows\\system32\\dmcompos.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F17E8672-C3B4-11D1-870B-00600893B1BD}\\ProgId] 1660099896
+#time=1d8ac641b5ee61e
+@="Microsoft.DirectMusicSignPostTrack.1"
+
+[Software\\Classes\\CLSID\\{F17E8672-C3B4-11D1-870B-00600893B1BD}\\VersionIndependentProgId] 1660099896
+#time=1d8ac641b5ee790
+@="Microsoft.DirectMusicSignPostTrack"
+
+[Software\\Classes\\CLSID\\{F20DA720-C02F-11CE-927B-0800095AE340}] 1660099896
+#time=1d8ac641ba7502a
+@="Package"
+
+[Software\\Classes\\CLSID\\{F20DA720-C02F-11CE-927B-0800095AE340}\\InprocServer32] 1660099896
+#time=1d8ac641ba7460c
+@="C:\\windows\\system32\\packager.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{F20DA720-C02F-11CE-927B-0800095AE340}\\Insertable] 1660099896
+#time=1d8ac641ba7502a
+
+[Software\\Classes\\CLSID\\{F20DA720-C02F-11CE-927B-0800095AE340}\\ProgId] 1660099896
+#time=1d8ac641ba74788
+@="Package"
+
+[Software\\Classes\\CLSID\\{F2468580-AF8A-11D0-8212-00C04FC32C45}] 1660099896
+#time=1d8ac641b319a92
+@="AuStream Class"
+
+[Software\\Classes\\CLSID\\{F2468580-AF8A-11D0-8212-00C04FC32C45}\\InprocServer32] 1660099896
+#time=1d8ac641b319b78
+@="C:\\windows\\system32\\amstream.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F3364BA0-65B9-11CE-A9BA-00AA004AE837}] 1660099896
+#time=1d8ac641bbcb370
+@="Shell File System Folder"
+
+[Software\\Classes\\CLSID\\{F3364BA0-65B9-11CE-A9BA-00AA004AE837}\\InprocServer32] 1660099896
+#time=1d8ac641bbcb438
+@="C:\\windows\\system32\\shell32.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}] 1660099896
+#time=1d8ac641b7d2e76
+@="JScript Language"
+
+[Software\\Classes\\CLSID\\{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}\\Implemented Categories\\{f0b7a1a1-9847-11cf-8f20-00805f2cd064}] 1660099896
+#time=1d8ac641b7d2cb4
+
+[Software\\Classes\\CLSID\\{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}\\Implemented Categories\\{f0b7a1a2-9847-11cf-8f20-00805f2cd064}] 1660099896
+#time=1d8ac641b7d2d68
+
+[Software\\Classes\\CLSID\\{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}\\InprocServer32] 1660099896
+#time=1d8ac641b7d1a76
+@="C:\\windows\\system32\\jscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}\\OLEScript] 1660099896
+#time=1d8ac641b7d2e76
+
+[Software\\Classes\\CLSID\\{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}\\ProgId] 1660099896
+#time=1d8ac641b7d1b8e
+@="JScript"
+
+[Software\\Classes\\CLSID\\{F414C261-6AC0-11CF-B6D1-00AA00BBBB58}] 1660099896
+#time=1d8ac641b7d315a
+@="JScript Language Authoring"
+
+[Software\\Classes\\CLSID\\{F414C261-6AC0-11CF-B6D1-00AA00BBBB58}\\Implemented Categories\\{0aee2a92-bcbb-11d0-8c72-00c04fc2b085}] 1660099896
+#time=1d8ac641b7d3056
+
+[Software\\Classes\\CLSID\\{F414C261-6AC0-11CF-B6D1-00AA00BBBB58}\\InprocServer32] 1660099896
+#time=1d8ac641b7d1e40
+@="C:\\windows\\system32\\jscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F414C261-6AC0-11CF-B6D1-00AA00BBBB58}\\OLEScript] 1660099896
+#time=1d8ac641b7d315a
+
+[Software\\Classes\\CLSID\\{F414C261-6AC0-11CF-B6D1-00AA00BBBB58}\\ProgId] 1660099896
+#time=1d8ac641b7d1f4e
+@="JScript Author"
+
+[Software\\Classes\\CLSID\\{F414C262-6AC0-11CF-B6D1-00AA00BBBB58}] 1660099896
+#time=1d8ac641b7d35e2
+@="JScript Language Encoding"
+
+[Software\\Classes\\CLSID\\{F414C262-6AC0-11CF-B6D1-00AA00BBBB58}\\Implemented Categories\\{f0b7a1a1-9847-11cf-8f20-00805f2cd064}] 1660099896
+#time=1d8ac641b7d336c
+
+[Software\\Classes\\CLSID\\{F414C262-6AC0-11CF-B6D1-00AA00BBBB58}\\Implemented Categories\\{f0b7a1a2-9847-11cf-8f20-00805f2cd064}] 1660099896
+#time=1d8ac641b7d3420
+
+[Software\\Classes\\CLSID\\{F414C262-6AC0-11CF-B6D1-00AA00BBBB58}\\Implemented Categories\\{f0b7a1a3-9847-11cf-8f20-00805f2cd064}] 1660099896
+#time=1d8ac641b7d34d4
+
+[Software\\Classes\\CLSID\\{F414C262-6AC0-11CF-B6D1-00AA00BBBB58}\\InprocServer32] 1660099896
+#time=1d8ac641b7d21ec
+@="C:\\windows\\system32\\jscript.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F414C262-6AC0-11CF-B6D1-00AA00BBBB58}\\OLEScript] 1660099896
+#time=1d8ac641b7d35e2
+
+[Software\\Classes\\CLSID\\{F414C262-6AC0-11CF-B6D1-00AA00BBBB58}\\ProgId] 1660099896
+#time=1d8ac641b7d2304
+@="JScript.Encode"
+
+[Software\\Classes\\CLSID\\{F5078F19-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b076696
+@="XML Parser"
+
+[Software\\Classes\\CLSID\\{F5078F19-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b076380
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F5078F19-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b0764ac
+@="Msxml2.XMLParser"
+
+[Software\\Classes\\CLSID\\{F5078F19-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b0765ce
+@="3.0"
+
+[Software\\Classes\\CLSID\\{F5078F19-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0766fa
+@="Msxml2.XMLParser"
+
+[Software\\Classes\\CLSID\\{F5078F1B-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b03e7e6
+@="XML DOM Document 2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1B-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b03e2c8
+@="C:\\windows\\system32\\msxml2.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F5078F1B-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b03e3ea
+@="Msxml2.DOMDocument.2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1B-C551-11D3-89B9-0000F81FE221}\\TypeLib] 1660099895
+#time=1d8ac641b03e50c
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F5078F1B-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b03e62e
+@="2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1B-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b03e890
+@="Msxml2.DOMDocument"
+
+[Software\\Classes\\CLSID\\{F5078F1C-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b03fa9c
+@="Free Threaded XML DOM Document 2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1C-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b03ef66
+@="C:\\windows\\system32\\msxml2.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F5078F1C-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b03f236
+@="Msxml2.FreeThreadedDOMDocument.2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1C-C551-11D3-89B9-0000F81FE221}\\TypeLib] 1660099895
+#time=1d8ac641b03f600
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F5078F1C-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b03f9d4
+@="2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1C-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b04000a
+@="Msxml2.FreeThreadedDOMDocument"
+
+[Software\\Classes\\CLSID\\{F5078F1D-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b0429b8
+@="XML Schema Cache 2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1D-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b042530
+@="C:\\windows\\system32\\msxml2.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F5078F1D-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b042698
+@="Msxml2.XMLSchemaCache.2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1D-C551-11D3-89B9-0000F81FE221}\\TypeLib] 1660099895
+#time=1d8ac641b0427c4
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F5078F1D-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b0428e6
+@="2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1D-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b042a1c
+@="Msxml2.XMLSchemaCache"
+
+[Software\\Classes\\CLSID\\{F5078F1E-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b04195a
+@="XML HTTP 2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1E-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b0412a2
+@="C:\\windows\\system32\\msxml2.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{F5078F1E-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b04155e
+@="Msxml2.XMLHTTP.2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1E-C551-11D3-89B9-0000F81FE221}\\TypeLib] 1660099895
+#time=1d8ac641b0416b2
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F5078F1E-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b0417fc
+@="2.6"
+
+[Software\\Classes\\CLSID\\{F5078F1E-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b041c7a
+@="Msxml2.XMLHTTP"
+
+[Software\\Classes\\CLSID\\{F5078F20-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b076d26
+@="XML Parser 2.6"
+
+[Software\\Classes\\CLSID\\{F5078F20-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b0769d4
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F5078F20-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b076b00
+@="Msxml2.XMLParser.2.6"
+
+[Software\\Classes\\CLSID\\{F5078F20-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b076c22
+@="2.6"
+
+[Software\\Classes\\CLSID\\{F5078F20-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b076d94
+@="Msxml2.XMLParser"
+
+[Software\\Classes\\CLSID\\{F5078F21-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b043174
+@="XSL Template 2.6"
+
+[Software\\Classes\\CLSID\\{F5078F21-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b042d28
+@="C:\\windows\\system32\\msxml2.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F5078F21-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b042e54
+@="Msxml2.XSLTemplate.2.6"
+
+[Software\\Classes\\CLSID\\{F5078F21-C551-11D3-89B9-0000F81FE221}\\TypeLib] 1660099895
+#time=1d8ac641b042f76
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F5078F21-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b0430a2
+@="2.6"
+
+[Software\\Classes\\CLSID\\{F5078F21-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0431e2
+@="Msxml2.XSLTemplate"
+
+[Software\\Classes\\CLSID\\{F5078F31-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b0774d8
+@="XML Parser 3.0"
+
+[Software\\Classes\\CLSID\\{F5078F31-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b0771ea
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F5078F31-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b07730c
+@="Msxml2.XMLParser.3.0"
+
+[Software\\Classes\\CLSID\\{F5078F31-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b07741a
+@="3.0"
+
+[Software\\Classes\\CLSID\\{F5078F31-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b077532
+@="Msxml2.XMLParser"
+
+[Software\\Classes\\CLSID\\{F5078F32-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b065e90
+@="XML DOM Document 3.0"
+
+[Software\\Classes\\CLSID\\{F5078F32-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b065a94
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F5078F32-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b065bc0
+@="Msxml2.DOMDocument.3.0"
+
+[Software\\Classes\\CLSID\\{F5078F32-C551-11D3-89B9-0000F81FE221}\\TypeLib] 1660099895
+#time=1d8ac641b065cce
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F5078F32-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b065ddc
+@="3.0"
+
+[Software\\Classes\\CLSID\\{F5078F32-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b065ef4
+@="Msxml2.DOMDocument"
+
+[Software\\Classes\\CLSID\\{F5078F33-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b066c64
+@="Free threaded XML DOM Document 3.0"
+
+[Software\\Classes\\CLSID\\{F5078F33-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b066872
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F5078F33-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b066980
+@="Msxml2.FreeThreadedDOMDocument.3.0"
+
+[Software\\Classes\\CLSID\\{F5078F33-C551-11D3-89B9-0000F81FE221}\\TypeLib] 1660099895
+#time=1d8ac641b066a8e
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F5078F33-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b066bb0
+@="3.0"
+
+[Software\\Classes\\CLSID\\{F5078F33-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b066cc8
+@="Msxml2.FreeThreadedDOMDocument"
+
+[Software\\Classes\\CLSID\\{F5078F34-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b06afb2
+@="XML Schema Cache 3.0"
+
+[Software\\Classes\\CLSID\\{F5078F34-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b06abac
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F5078F34-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b06ace2
+@="Msxml2.XMLSchemaCache.3.0"
+
+[Software\\Classes\\CLSID\\{F5078F34-C551-11D3-89B9-0000F81FE221}\\TypeLib] 1660099895
+#time=1d8ac641b06adf0
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F5078F34-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b06aefe
+@="3.0"
+
+[Software\\Classes\\CLSID\\{F5078F34-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b06b016
+@="Msxml2.XMLSchemaCache"
+
+[Software\\Classes\\CLSID\\{F5078F35-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b068d66
+@="XML HTTP 3.0"
+
+[Software\\Classes\\CLSID\\{F5078F35-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b06829e
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{F5078F35-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b0684f6
+@="Msxml2.XMLHTTP.3.0"
+
+[Software\\Classes\\CLSID\\{F5078F35-C551-11D3-89B9-0000F81FE221}\\TypeLib] 1660099895
+#time=1d8ac641b06864a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F5078F35-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b0687da
+@="3.0"
+
+[Software\\Classes\\CLSID\\{F5078F35-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b068ffa
+@="Msxml2.XMLHTTP"
+
+[Software\\Classes\\CLSID\\{F5078F36-C551-11D3-89B9-0000F81FE221}] 1660099895
+#time=1d8ac641b06be8a
+@="XSL Template 3.0"
+
+[Software\\Classes\\CLSID\\{F5078F36-C551-11D3-89B9-0000F81FE221}\\InprocServer32] 1660099895
+#time=1d8ac641b06ba84
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F5078F36-C551-11D3-89B9-0000F81FE221}\\ProgId] 1660099895
+#time=1d8ac641b06bb9c
+@="Msxml2.XSLTemplate.3.0"
+
+[Software\\Classes\\CLSID\\{F5078F36-C551-11D3-89B9-0000F81FE221}\\TypeLib] 1660099895
+#time=1d8ac641b06bcaa
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F5078F36-C551-11D3-89B9-0000F81FE221}\\Version] 1660099895
+#time=1d8ac641b06bdcc
+@="3.0"
+
+[Software\\Classes\\CLSID\\{F5078F36-C551-11D3-89B9-0000F81FE221}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b06bee4
+@="Msxml2.XSLTemplate"
+
+[Software\\Classes\\CLSID\\{F5C7AD2D-6A8D-43DD-A7A8-A29935261AE9}] 1660099897
+#time=1d8ac641c334238
+"Author"="The Wine Project"
+"BitLength"=dword:00000020
+"ChannelCount"=dword:00000004
+"FriendlyName"="32bpp RGBA"
+"NumericRepresentation"=dword:00000002
+"SupportsTransparency"=dword:00000001
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+
+[Software\\Classes\\CLSID\\{F5C7AD2D-6A8D-43DD-A7A8-A29935261AE9}\\ChannelMasks] 1660099897
+#time=1d8ac641c3343a0
+"0"=hex:ff,00,00,00
+"1"=hex:00,ff,00,00
+"2"=hex:00,00,ff,00
+"3"=hex:00,00,00,ff
+
+[Software\\Classes\\CLSID\\{F6D90F11-9C73-11D3-B32E-00C04F990BB4}] 1660099895
+#time=1d8ac641b06657a
+@="XML DOM Document"
+
+[Software\\Classes\\CLSID\\{F6D90F11-9C73-11D3-B32E-00C04F990BB4}\\InprocServer32] 1660099895
+#time=1d8ac641b066188
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F6D90F11-9C73-11D3-B32E-00C04F990BB4}\\ProgId] 1660099895
+#time=1d8ac641b066296
+@="Msxml2.DOMDocument"
+
+[Software\\Classes\\CLSID\\{F6D90F11-9C73-11D3-B32E-00C04F990BB4}\\TypeLib] 1660099895
+#time=1d8ac641b0663b8
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F6D90F11-9C73-11D3-B32E-00C04F990BB4}\\Version] 1660099895
+#time=1d8ac641b0664c6
+@="3.0"
+
+[Software\\Classes\\CLSID\\{F6D90F11-9C73-11D3-B32E-00C04F990BB4}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0665de
+@="Msxml2.DOMDocument"
+
+[Software\\Classes\\CLSID\\{F6D90F12-9C73-11D3-B32E-00C04F990BB4}] 1660099895
+#time=1d8ac641b067d80
+@="Free threaded XML DOM Document"
+
+[Software\\Classes\\CLSID\\{F6D90F12-9C73-11D3-B32E-00C04F990BB4}\\InprocServer32] 1660099895
+#time=1d8ac641b066f5c
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F6D90F12-9C73-11D3-B32E-00C04F990BB4}\\ProgId] 1660099895
+#time=1d8ac641b06706a
+@="Msxml2.FreeThreadedDOMDocument"
+
+[Software\\Classes\\CLSID\\{F6D90F12-9C73-11D3-B32E-00C04F990BB4}\\TypeLib] 1660099895
+#time=1d8ac641b067178
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F6D90F12-9C73-11D3-B32E-00C04F990BB4}\\Version] 1660099895
+#time=1d8ac641b067286
+@="3.0"
+
+[Software\\Classes\\CLSID\\{F6D90F12-9C73-11D3-B32E-00C04F990BB4}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b067f74
+@="Msxml2.FreeThreadedDOMDocument"
+
+[Software\\Classes\\CLSID\\{F6D90F16-9C73-11D3-B32E-00C04F990BB4}] 1660099895
+#time=1d8ac641b069748
+@="XML HTTP"
+
+[Software\\Classes\\CLSID\\{F6D90F16-9C73-11D3-B32E-00C04F990BB4}\\InprocServer32] 1660099895
+#time=1d8ac641b069338
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{F6D90F16-9C73-11D3-B32E-00C04F990BB4}\\ProgId] 1660099895
+#time=1d8ac641b06945a
+@="Msxml2.XMLHTTP"
+
+[Software\\Classes\\CLSID\\{F6D90F16-9C73-11D3-B32E-00C04F990BB4}\\TypeLib] 1660099895
+#time=1d8ac641b069572
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{F6D90F16-9C73-11D3-B32E-00C04F990BB4}\\Version] 1660099895
+#time=1d8ac641b06968a
+@="3.0"
+
+[Software\\Classes\\CLSID\\{F6D90F16-9C73-11D3-B32E-00C04F990BB4}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b0697ac
+@="Msxml2.XMLHTTP"
+
+[Software\\Classes\\CLSID\\{F8383852-FCD3-11D1-A6B9-006097DF5BD4}] 1660099896
+#time=1d8ac641b48161e
+@="Progress Dialog"
+
+[Software\\Classes\\CLSID\\{F8383852-FCD3-11D1-A6B9-006097DF5BD4}\\InprocServer32] 1660099896
+#time=1d8ac641b4816f0
+@="C:\\windows\\system32\\browseui.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F90B5F36-367B-402A-9DD1-BC0FD59D8F62}] 1660099897
+#time=1d8ac641c321606
+@="WIC Png cHRM Metadata Reader"
+"Author"="The Wine Project"
+"FriendlyName"="Chunk cHRM Reader"
+"MetadataFormat"="{9DB3655B-2842-44B3-8067-12E9B375556A}"
+"RequiresFullStream"=dword:00000000
+"SpecVersion"="1.0.0.0"
+"SupportsPadding"=dword:00000000
+"Vendor"="{F0E749CA-EDEF-4589-A73A-EE0E626A2A2B}"
+"Version"="1.0.0.0"
+
+[Software\\Classes\\CLSID\\{F90B5F36-367B-402A-9DD1-BC0FD59D8F62}\\Containers\\{1B7CFAF4-713F-473C-BBCD-6137425FAEAF}\\0] 1660099897
+#time=1d8ac641c321912
+"DataOffset"=dword:00000004
+"Mask"=hex:ff,ff,ff,ff
+"Pattern"=hex:63,48,52,4d
+"Position"=dword:00000004
+
+[Software\\Classes\\CLSID\\{F90B5F36-367B-402A-9DD1-BC0FD59D8F62}\\InprocServer32] 1660099897
+#time=1d8ac641bd8a2ec
+@="C:\\windows\\system32\\windowscodecs.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}] 1660099897
+#time=1d8ac641be897c4
+@="Windows Script Host Shell Object"
+
+[Software\\Classes\\CLSID\\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\\Implemented Categories\\{40fc6ed5-2438-11cf-a3db-080036f12502}] 1660099897
+#time=1d8ac641be89832
+
+[Software\\Classes\\CLSID\\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\\InprocServer32] 1660099897
+#time=1d8ac641be8492c
+@="C:\\windows\\system32\\wshom.ocx"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\\ProgId] 1660099897
+#time=1d8ac641be84a4e
+@="WScript.Shell.1"
+
+[Software\\Classes\\CLSID\\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\\TypeLib] 1660099897
+#time=1d8ac641be84b66
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+
+[Software\\Classes\\CLSID\\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\\Version] 1660099897
+#time=1d8ac641be84c74
+@="1.0"
+
+[Software\\Classes\\CLSID\\{F935DC22-1CF0-11D0-ADB9-00C04FD58A0B}\\VersionIndependentProgId] 1660099897
+#time=1d8ac641be84d96
+@="WScript.Shell"
+
+[Software\\Classes\\CLSID\\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}] 1660099897
+#time=1d8ac641be89e54
+@="Windows Script Host Network Object"
+
+[Software\\Classes\\CLSID\\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\\Implemented Categories\\{40fc6ed5-2438-11cf-a3db-080036f12502}] 1660099897
+#time=1d8ac641be89ef4
+
+[Software\\Classes\\CLSID\\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\\InprocServer32] 1660099897
+#time=1d8ac641be857d2
+@="C:\\windows\\system32\\wshom.ocx"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\\ProgId] 1660099897
+#time=1d8ac641be8591c
+@="WScript.Network.1"
+
+[Software\\Classes\\CLSID\\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\\TypeLib] 1660099897
+#time=1d8ac641be85a84
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+
+[Software\\Classes\\CLSID\\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\\Version] 1660099897
+#time=1d8ac641be85bc4
+@="1.0"
+
+[Software\\Classes\\CLSID\\{F935DC26-1CF0-11D0-ADB9-00C04FD58A0B}\\VersionIndependentProgId] 1660099897
+#time=1d8ac641be86cea
+@="WScript.Network"
+
+[Software\\Classes\\CLSID\\{F9D8D64E-A144-47DC-8EE0-F53498372C29}] 1660099897
+#time=1d8ac641bdb9538
+@="GStreamer splitter"
+
+[Software\\Classes\\CLSID\\{F9D8D64E-A144-47DC-8EE0-F53498372C29}\\InprocServer32] 1660099897
+#time=1d8ac641bdb9600
+@="C:\\windows\\system32\\winegstreamer.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FA10746C-9B63-4B6C-BC49-FC300EA5F256}] 1660099896
+#time=1d8ac641b696e72
+@="Enhanced Video Renderer"
+
+[Software\\Classes\\CLSID\\{FA10746C-9B63-4B6C-BC49-FC300EA5F256}\\InprocServer32] 1660099896
+#time=1d8ac641b696f44
+@="C:\\windows\\system32\\evr.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FAE3D380-FEA4-4623-8C75-C6B61110B681}\\Instance\\{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}] 1660099897
+#time=1d8ac641c30f33e
+"CLSID"="{05AF94D8-7174-4CD2-BE4A-4124B80EE4B8}"
+
+[Software\\Classes\\CLSID\\{FAE3D380-FEA4-4623-8C75-C6B61110B681}\\Instance\\{2B46E70F-CDA7-473E-89F6-DC9630A2390B}] 1660099897
+#time=1d8ac641c30f460
+"CLSID"="{2B46E70F-CDA7-473E-89F6-DC9630A2390B}"
+
+[Software\\Classes\\CLSID\\{FAE3D380-FEA4-4623-8C75-C6B61110B681}\\Instance\\{7835EAE8-BF14-49D1-93CE-533A407B2248}] 1660099897
+#time=1d8ac641c30f226
+"CLSID"="{7835EAE8-BF14-49D1-93CE-533A407B2248}"
+
+[Software\\Classes\\CLSID\\{FAE3D380-FEA4-4623-8C75-C6B61110B681}\\Instance\\{7ED96837-96F0-4812-B211-F13C24117ED3}] 1660099897
+#time=1d8ac641c30efec
+"CLSID"="{7ED96837-96F0-4812-B211-F13C24117ED3}"
+
+[Software\\Classes\\CLSID\\{FAE3D380-FEA4-4623-8C75-C6B61110B681}\\Instance\\{AC757296-3522-4E11-9862-C17BE5A1767E}] 1660099897
+#time=1d8ac641c30f104
+"CLSID"="{AC757296-3522-4E11-9862-C17BE5A1767E}"
+
+[Software\\Classes\\CLSID\\{FBF23B40-E3F0-101B-8488-00AA003E56F8}] 1660099896
+#time=1d8ac641b787ba6
+@="Internet Shortcut"
+
+[Software\\Classes\\CLSID\\{FBF23B40-E3F0-101B-8488-00AA003E56F8}\\InprocServer32] 1660099896
+#time=1d8ac641b786dbe
+@="C:\\windows\\system32\\ieframe.dll"
+"ThreadingModel"="Apartment"
+
+[Software\\Classes\\CLSID\\{FBF23B40-E3F0-101B-8488-00AA003E56F8}\\ProgId] 1660099896
+#time=1d8ac641b786ed6
+@="InternetShortcut"
+
+[Software\\Classes\\CLSID\\{FBF23B40-E3F0-101B-8488-00AA003E56F8}\\shellex\\MayChangeDefaultMenu] 1660099896
+#time=1d8ac641b787c14
+
+[Software\\Classes\\CLSID\\{FC220AD8-A72A-4EE8-926E-0B7AD152A020}] 1660099895
+#time=1d8ac641b06f152
+@="MXXMLWriter"
+
+[Software\\Classes\\CLSID\\{FC220AD8-A72A-4EE8-926E-0B7AD152A020}\\InprocServer32] 1660099895
+#time=1d8ac641b06ed56
+@="C:\\windows\\system32\\msxml3.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FC220AD8-A72A-4EE8-926E-0B7AD152A020}\\ProgId] 1660099895
+#time=1d8ac641b06ee82
+@="Msxml2.MXXMLWriter"
+
+[Software\\Classes\\CLSID\\{FC220AD8-A72A-4EE8-926E-0B7AD152A020}\\TypeLib] 1660099895
+#time=1d8ac641b06ef90
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\CLSID\\{FC220AD8-A72A-4EE8-926E-0B7AD152A020}\\Version] 1660099895
+#time=1d8ac641b06f09e
+@="3.0"
+
+[Software\\Classes\\CLSID\\{FC220AD8-A72A-4EE8-926E-0B7AD152A020}\\VersionIndependentProgId] 1660099895
+#time=1d8ac641b06f1ac
+@="Msxml2.MXXMLWriter"
+
+[Software\\Classes\\CLSID\\{FC47060E-6153-4B34-B975-8E4121EB7F3C}] 1660099896
+#time=1d8ac641b6454c8
+@="DirectPlay8 Thread Pool Object"
+
+[Software\\Classes\\CLSID\\{FC47060E-6153-4B34-B975-8E4121EB7F3C}\\InprocServer32] 1660099896
+#time=1d8ac641b6455ae
+@="C:\\windows\\system32\\dpnet.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FCC152B7-F372-11D0-8E00-00C04FD7C08B}] 1660099896
+#time=1d8ac641bab092c
+@="DVD Graph Builder"
+
+[Software\\Classes\\CLSID\\{FCC152B7-F372-11D0-8E00-00C04FD7C08B}\\InprocServer32] 1660099896
+#time=1d8ac641bab0a58
+@="C:\\windows\\system32\\qdvd.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FD853CDB-7F86-11D0-8252-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79c394
+@="CLSID_IMimeBody"
+
+[Software\\Classes\\CLSID\\{FD853CDB-7F86-11D0-8252-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79c466
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FD853CDD-7F86-11D0-8252-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79c63c
+@="CLSID_IMimeAllocator"
+
+[Software\\Classes\\CLSID\\{FD853CDD-7F86-11D0-8252-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79c704
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FD853CDE-7F86-11D0-8252-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79c8da
+@="CLSID_IMimeSecurity"
+
+[Software\\Classes\\CLSID\\{FD853CDE-7F86-11D0-8252-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79c9a2
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FD853CDF-7F86-11D0-8252-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79cd1c
+@="CLSID_IVirtualStream"
+
+[Software\\Classes\\CLSID\\{FD853CDF-7F86-11D0-8252-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79cdf8
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FD853CE3-7F86-11D0-8252-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79d01e
+@="CLSID_IMimeMessage"
+
+[Software\\Classes\\CLSID\\{FD853CE3-7F86-11D0-8252-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79d0e6
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FD853CE6-7F86-11D0-8252-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79d2bc
+@="CLSID_ISMTPTransport"
+
+[Software\\Classes\\CLSID\\{FD853CE6-7F86-11D0-8252-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79d384
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FD853CE7-7F86-11D0-8252-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79d884
+@="CLSID_IPOP3Transport"
+
+[Software\\Classes\\CLSID\\{FD853CE7-7F86-11D0-8252-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79d9ba
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FD853CE8-7F86-11D0-8252-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79dc58
+@="CLSID_INNTPTransport"
+
+[Software\\Classes\\CLSID\\{FD853CE8-7F86-11D0-8252-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79dd3e
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FD853CE9-7F86-11D0-8252-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79df64
+@="CLSID_IRASTransport"
+
+[Software\\Classes\\CLSID\\{FD853CE9-7F86-11D0-8252-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79e04a
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FD853CEA-7F86-11D0-8252-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79e266
+@="CLSID_IRangeList"
+
+[Software\\Classes\\CLSID\\{FD853CEA-7F86-11D0-8252-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79e34c
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FD853CEB-7F86-11D0-8252-00C04FD85AB4}] 1660099896
+#time=1d8ac641b79e680
+@="CLSID_IIMAPTransport"
+
+[Software\\Classes\\CLSID\\{FD853CEB-7F86-11D0-8252-00C04FD85AB4}\\InprocServer32] 1660099896
+#time=1d8ac641b79e7de
+@="C:\\windows\\system32\\inetcomm.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\CLSID\\{FEA4300C-7959-4147-B26A-2377B9E7A91D}] 1660099896
+#time=1d8ac641b669440
+@="DirectSoundFullDuplex Object"
+
+[Software\\Classes\\CLSID\\{FEA4300C-7959-4147-B26A-2377B9E7A91D}\\InprocServer32] 1660099896
+#time=1d8ac641b66951c
+@="C:\\windows\\system32\\dsound.dll"
+"ThreadingModel"="Both"
+
+[Software\\Classes\\Component Categories\\{0aee2a92-bcbb-11d0-8c72-00c04fc2b085}] 1660099896
+#time=1d8ac641b7d3d12
+"409"="Active Scripting Engine with Authoring"
+
+[Software\\Classes\\Component Categories\\{f0b7a1a1-9847-11cf-8f20-00805f2cd064}] 1660099896
+#time=1d8ac641b7d3880
+"409"="Active Scripting Engine"
+
+[Software\\Classes\\Component Categories\\{f0b7a1a2-9847-11cf-8f20-00805f2cd064}] 1660099896
+#time=1d8ac641b7d3a06
+"409"="Active Scripting Engine with Parsing"
+
+[Software\\Classes\\Component Categories\\{f0b7a1a3-9847-11cf-8f20-00805f2cd064}] 1660099896
+#time=1d8ac641b7d3b8c
+"409"="Active Scripting Engine with Encoding"
+
+[Software\\Classes\\cplfile] 1660099897
+#time=1d8ac641c4b8b4a
+@="Control Panel Item"
+
+[Software\\Classes\\cplfile\\shell\\cplopen] 1660099897
+#time=1d8ac641c4b8dde
+@="Open with Control Panel"
+
+[Software\\Classes\\cplfile\\shell\\cplopen\\command] 1660099897
+#time=1d8ac641c4b8ec4
+@="rundll32.exe shell32.dll,Control_RunDLL \"%1\",%*"
+
+[Software\\Classes\\CrSource] 1660099896
+#time=1d8ac641b8ac130
+@="Microsoft CrSource 4.0"
+
+[Software\\Classes\\CrSource\\CLSID] 1660099896
+#time=1d8ac641b8ac194
+@="{65014010-9F62-11D1-A651-00600811D5CE}"
+
+[Software\\Classes\\DataLinks] 1660099895
+#time=1d8ac641b14a93c
+@="DataLinks"
+
+[Software\\Classes\\DataLinks\\CLSID] 1660099895
+#time=1d8ac641b14a9a0
+@="{2206CDB2-19C1-11D1-89E0-00C04FD7A829}"
+
+[Software\\Classes\\device] 1660099896
+#time=1d8ac641b5ac5f2
+@="DeviceMoniker"
+
+[Software\\Classes\\device\\CLSID] 1660099896
+#time=1d8ac641b5ac53e
+@="{4315D437-5B8C-11D0-BD3B-00A0C911CE86}"
+
+[Software\\Classes\\device\\CurVer] 1660099896
+#time=1d8ac641b5ac64c
+@="device.1"
+
+[Software\\Classes\\device.1] 1660099896
+#time=1d8ac641b5ac2b4
+@="DeviceMoniker"
+
+[Software\\Classes\\device.1\\CLSID] 1660099896
+#time=1d8ac641b5ac30e
+@="{4315D437-5B8C-11D0-BD3B-00A0C911CE86}"
+
+[Software\\Classes\\DHTMLEdit.DHTMLEdit] 1660099896
+#time=1d8ac641b5c4aee
+@="DHTMLEdit"
+
+[Software\\Classes\\DHTMLEdit.DHTMLEdit\\CLSID] 1660099896
+#time=1d8ac641b5c4a44
+@="{2D360200-FFF5-11D1-8D03-00A0C959BC0A}"
+
+[Software\\Classes\\DHTMLEdit.DHTMLEdit\\CurVer] 1660099896
+#time=1d8ac641b5c4b52
+@="DHTMLEdit.DHTMLEdit.1"
+
+[Software\\Classes\\DHTMLEdit.DHTMLEdit.1] 1660099896
+#time=1d8ac641b5c479c
+@="DHTMLEdit"
+
+[Software\\Classes\\DHTMLEdit.DHTMLEdit.1\\CLSID] 1660099896
+#time=1d8ac641b5c47f6
+@="{2D360200-FFF5-11D1-8D03-00A0C959BC0A}"
+
+[Software\\Classes\\DHTMLSafe.DHTMLSafe] 1660099896
+#time=1d8ac641b5c44e0
+@="DHTMLSafe"
+
+[Software\\Classes\\DHTMLSafe.DHTMLSafe\\CLSID] 1660099896
+#time=1d8ac641b5c442c
+@="{2D360201-FFF5-11D1-8D03-00A0C959BC0A}"
+
+[Software\\Classes\\DHTMLSafe.DHTMLSafe\\CurVer] 1660099896
+#time=1d8ac641b5c453a
+@="DHTMLSafe.DHTMLSafe.1"
+
+[Software\\Classes\\DHTMLSafe.DHTMLSafe.1] 1660099896
+#time=1d8ac641b5c4198
+@="DHTMLSafe"
+
+[Software\\Classes\\DHTMLSafe.DHTMLSafe.1\\CLSID] 1660099896
+#time=1d8ac641b5c41fc
+@="{2D360201-FFF5-11D1-8D03-00A0C959BC0A}"
+
+[Software\\Classes\\DIRECT.D3DX8.0] 1660099896
+#time=1d8ac641b682d6e
+@="D3DX8"
+
+[Software\\Classes\\DIRECT.D3DX8.0\\CLSID] 1660099896
+#time=1d8ac641b682dd2
+@="{58356C5D-0BFD-48ED-93C5-F4520B6233DE}"
+
+[Software\\Classes\\DIRECT.DirectX8.0] 1660099896
+#time=1d8ac641b6831ec
+@="DirectX8"
+
+[Software\\Classes\\DIRECT.DirectX8.0\\CLSID] 1660099896
+#time=1d8ac641b683246
+@="{E7FF1300-96A5-11D3-AC85-00C04FC2C602}"
+
+[Software\\Classes\\DirectPlay8Lobby.LobbyClient] 1660099896
+#time=1d8ac641b645bc6
+@="DirectPlay8LobbyClient Object"
+
+[Software\\Classes\\DirectPlay8Lobby.LobbyClient\\CLSID] 1660099896
+#time=1d8ac641b645b08
+@="{3B2B6775-70B6-45AF-8DEA-A209C69559F3}"
+
+[Software\\Classes\\DirectPlay8Lobby.LobbyClient\\CurVer] 1660099896
+#time=1d8ac641b645c48
+@="DirectPlay8Lobby.LobbyClient.1"
+
+[Software\\Classes\\DirectPlay8Lobby.LobbyClient.1] 1660099896
+#time=1d8ac641b645842
+@="DirectPlay8LobbyClient Object"
+
+[Software\\Classes\\DirectPlay8Lobby.LobbyClient.1\\CLSID] 1660099896
+#time=1d8ac641b6458a6
+@="{3B2B6775-70B6-45AF-8DEA-A209C69559F3}"
+
+[Software\\Classes\\DirectPlayVoice.Client] 1660099896
+#time=1d8ac641b655684
+@="DirectPlayVoice Client Object"
+
+[Software\\Classes\\DirectPlayVoice.Client\\CLSID] 1660099896
+#time=1d8ac641b6555c6
+@="{B9F3EB85-B781-4AC1-8D90-93A05EE37D7D}"
+
+[Software\\Classes\\DirectPlayVoice.Client\\CurVer] 1660099896
+#time=1d8ac641b6556f2
+@="DirectPlayVoice.Client.1"
+
+[Software\\Classes\\DirectPlayVoice.Client.1] 1660099896
+#time=1d8ac641b6552f6
+@="DirectPlayVoice Client Object"
+
+[Software\\Classes\\DirectPlayVoice.Client.1\\CLSID] 1660099896
+#time=1d8ac641b65535a
+@="{B9F3EB85-B781-4AC1-8D90-93A05EE37D7D}"
+
+[Software\\Classes\\DirectPlayVoice.Server] 1660099896
+#time=1d8ac641b655c9c
+@="DirectPlayVoice Server Object"
+
+[Software\\Classes\\DirectPlayVoice.Server\\CLSID] 1660099896
+#time=1d8ac641b655bca
+@="{D3F5B8E6-9B78-4A4C-94EA-CA2397B663D3}"
+
+[Software\\Classes\\DirectPlayVoice.Server\\CurVer] 1660099896
+#time=1d8ac641b655d14
+@="DirectPlayVoice.Server.1"
+
+[Software\\Classes\\DirectPlayVoice.Server.1] 1660099896
+#time=1d8ac641b655904
+@="DirectPlayVoice Server Object"
+
+[Software\\Classes\\DirectPlayVoice.Server.1\\CLSID] 1660099896
+#time=1d8ac641b655968
+@="{D3F5B8E6-9B78-4A4C-94EA-CA2397B663D3}"
+
+[Software\\Classes\\DirectPlayVoice.Test] 1660099896
+#time=1d8ac641b6562c8
+@="DirectPlayVoice Test Object"
+
+[Software\\Classes\\DirectPlayVoice.Test\\CLSID] 1660099896
+#time=1d8ac641b65620a
+@="{0F0F094B-B01C-4091-A14D-DD0CD807711A}"
+
+[Software\\Classes\\DirectPlayVoice.Test\\CurVer] 1660099896
+#time=1d8ac641b65632c
+@="DirectPlayVoice.Test.1"
+
+[Software\\Classes\\DirectPlayVoice.Test.1] 1660099896
+#time=1d8ac641b655f26
+@="DirectPlayVoice Test Object"
+
+[Software\\Classes\\DirectPlayVoice.Test.1\\CLSID] 1660099896
+#time=1d8ac641b655f8a
+@="{0F0F094B-B01C-4091-A14D-DD0CD807711A}"
+
+[Software\\Classes\\DirectShow\\MediaObjects\\BBEEA841-0A63-4F52-A7AB-A9B3A84ED38A] 1660099897
+#time=1d8ac641c26ae92
+@="MP3 Decoder DMO"
+"InputTypes"=hex:61,75,64,73,00,00,10,00,80,00,00,aa,00,38,9b,71,55,00,00,00,\
+  00,00,10,00,80,00,00,aa,00,38,9b,71
+"OutputTypes"=hex:61,75,64,73,00,00,10,00,80,00,00,aa,00,38,9b,71,01,00,00,00,\
+  00,00,10,00,80,00,00,aa,00,38,9b,71
+
+[Software\\Classes\\DirectShow\\MediaObjects\\Categories\\57F2DB8B-E6BB-4513-9D43-DCD2A6593125\\BBEEA841-0A63-4F52-A7AB-A9B3A84ED38A] 1660099897
+#time=1d8ac641c26b02c
+
+[Software\\Classes\\DxDiag.DxDiagProvider] 1660099896
+#time=1d8ac641b68b0b8
+@="DxDiagProvider Class"
+
+[Software\\Classes\\DxDiag.DxDiagProvider\\CLSID] 1660099896
+#time=1d8ac641b68af46
+@="{A65B8071-3BFE-4213-9A5B-491DA4461CA7}"
+
+[Software\\Classes\\DxDiag.DxDiagProvider\\CurVer] 1660099896
+#time=1d8ac641b68b130
+@="DxDiag.DxDiagProvider.1"
+
+[Software\\Classes\\DxDiag.DxDiagProvider.1] 1660099896
+#time=1d8ac641b68ac76
+@="DxDiagProvider Class"
+
+[Software\\Classes\\DxDiag.DxDiagProvider.1\\CLSID] 1660099896
+#time=1d8ac641b68acee
+@="{A65B8071-3BFE-4213-9A5B-491DA4461CA7}"
+
+[Software\\Classes\\ECMAScript] 1660099896
+#time=1d8ac641b7d400a
+@="JScript Language"
+
+[Software\\Classes\\ECMAScript\\CLSID] 1660099896
+#time=1d8ac641b7d3f60
+@="{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\ECMAScript\\OLEScript] 1660099896
+#time=1d8ac641b7d400a
+
+[Software\\Classes\\exefile] 1660099897
+#time=1d8ac641c4b93c4
+@="Application"
+
+[Software\\Classes\\exefile\\DefaultIcon] 1660099897
+#time=1d8ac641c4b925c
+@="%1"
+
+[Software\\Classes\\exefile\\shell\\open\\command] 1660099897
+#time=1d8ac641c4b9644
+@="\"%1\" %*"
+
+[Software\\Classes\\file] 1660099896
+#time=1d8ac641ba1772c
+@="FileMoniker"
+
+[Software\\Classes\\file\\CLSID] 1660099896
+#time=1d8ac641ba1777c
+@="{00000303-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\folder\\shell\\open\\ddeexec] 1660099897
+#time=1d8ac641c4b9c52
+@="[ViewFolder(%l, %I, %S)]"
+"NoActivateHandler"=""
+
+[Software\\Classes\\folder\\shell\\open\\ddeexec\\application] 1660099897
+#time=1d8ac641c4b9d24
+@="Folders"
+
+[Software\\Classes\\folder\\shellex\\ContextMenuHandlers] 1660099897
+#time=1d8ac641c4b9f40
+
+[Software\\Classes\\ftp] 1660099897
+#time=1d8ac641c4c4594
+"URL Protocol"=""
+
+[Software\\Classes\\ftp\\shell\\open\\command] 1660099897
+#time=1d8ac641c4c4814
+@="\"C:\\windows\\system32\\winebrowser.exe\" -nohome"
+
+[Software\\Classes\\ftp\\shell\\open\\ddeexec] 1660099897
+#time=1d8ac641c4c4daa
+@="\"%1\",,-1,0,,,,"
+"NoActivateHandler"=""
+
+[Software\\Classes\\ftp\\shell\\open\\ddeexec\\Application] 1660099897
+#time=1d8ac641c4c4c7e
+@="IExplore"
+
+[Software\\Classes\\ftp\\shell\\open\\ddeexec\\Topic] 1660099897
+#time=1d8ac641c4c4e90
+@="WWW_OpenURL"
+
+[Software\\Classes\\gameux.GameExplorer] 1660099896
+#time=1d8ac641b7208e8
+@="GameExplorer Class"
+
+[Software\\Classes\\gameux.GameExplorer\\CLSID] 1660099896
+#time=1d8ac641b72082a
+@="{9A5EA990-3034-4D6F-9128-01F3C61022BC}"
+
+[Software\\Classes\\gameux.GameExplorer\\CurVer] 1660099896
+#time=1d8ac641b72094c
+@="gameux.GameExplorer.1"
+
+[Software\\Classes\\gameux.GameExplorer.1] 1660099896
+#time=1d8ac641b7204ce
+@="GameExplorer Class"
+
+[Software\\Classes\\gameux.GameExplorer.1\\CLSID] 1660099896
+#time=1d8ac641b7205a0
+@="{9A5EA990-3034-4D6F-9128-01F3C61022BC}"
+
+[Software\\Classes\\gameux.GameStatistics] 1660099896
+#time=1d8ac641b721090
+@="GameStatistics Class"
+
+[Software\\Classes\\gameux.GameStatistics\\CLSID] 1660099896
+#time=1d8ac641b720f32
+@="{DBC85A2C-C0DC-4961-B6E2-D28B62C11AD4}"
+
+[Software\\Classes\\gameux.GameStatistics\\CurVer] 1660099896
+#time=1d8ac641b7210fe
+@="gameux.GameStatistics.1"
+
+[Software\\Classes\\gameux.GameStatistics.1] 1660099896
+#time=1d8ac641b720c3a
+@="GameStatistics Class"
+
+[Software\\Classes\\gameux.GameStatistics.1\\CLSID] 1660099896
+#time=1d8ac641b720cd0
+@="{DBC85A2C-C0DC-4961-B6E2-D28B62C11AD4}"
+
+[Software\\Classes\\GIFFilter.CoGIFFilter] 1660099896
+#time=1d8ac641b8ad882
+@="CoGIFFilter Class"
+
+[Software\\Classes\\GIFFilter.CoGIFFilter\\CLSID] 1660099896
+#time=1d8ac641b8ad7d8
+@="{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}"
+
+[Software\\Classes\\GIFFilter.CoGIFFilter\\CurVer] 1660099896
+#time=1d8ac641b8ad8d2
+@="GIFFilter.CoGIFFilter.1"
+
+[Software\\Classes\\GIFFilter.CoGIFFilter.1] 1660099896
+#time=1d8ac641b8ad580
+@="CoGIFFilter Class"
+
+[Software\\Classes\\GIFFilter.CoGIFFilter.1\\CLSID] 1660099896
+#time=1d8ac641b8ad5da
+@="{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}"
+
+[Software\\Classes\\hlpfile] 1660099897
+#time=1d8ac641c4ba260
+@="Help File"
+
+[Software\\Classes\\hlpfile\\shell\\open\\command] 1660099897
+#time=1d8ac641c4ba4e0
+@="C:\\windows\\system32\\winhlp32.exe %1"
+
+[Software\\Classes\\HNetCfg.FwAuthorizedApplication] 1660099896
+#time=1d8ac641b762248
+@="HNetCfg.FwAuthorizedApplication"
+
+[Software\\Classes\\HNetCfg.FwAuthorizedApplication\\CLSID] 1660099896
+#time=1d8ac641b7622ac
+@="{EC9846B3-2762-4A6B-A214-6ACB603462D2}"
+
+[Software\\Classes\\HNetCfg.FwMgr] 1660099896
+#time=1d8ac641b761ff0
+@="HNetCfg.FwMgr"
+
+[Software\\Classes\\HNetCfg.FwMgr\\CLSID] 1660099896
+#time=1d8ac641b762054
+@="{304CE942-6E39-40D8-943A-B913C40C9CD4}"
+
+[Software\\Classes\\HNetCfg.FwOpenPort] 1660099896
+#time=1d8ac641b762496
+@="HNetCfg.FwOpenPort"
+
+[Software\\Classes\\HNetCfg.FwOpenPort\\CLSID] 1660099896
+#time=1d8ac641b762522
+@="{0CA545C6-37AD-4A6C-BF92-9F7610067EF5}"
+
+[Software\\Classes\\HNetCfg.FwPolicy2] 1660099896
+#time=1d8ac641b762716
+@="HNetCfg.FwPolicy2"
+
+[Software\\Classes\\HNetCfg.FwPolicy2\\CLSID] 1660099896
+#time=1d8ac641b76277a
+@="{E2B3C97F-6AE1-41AC-817A-F6F92166D7DD}"
+
+[Software\\Classes\\HNetCfg.FwProduct] 1660099896
+#time=1d8ac641b762bbc
+@="HNetCfg.FwProduct"
+
+[Software\\Classes\\HNetCfg.FwProduct\\CLSID] 1660099896
+#time=1d8ac641b762c2a
+@="{9D745ED8-C514-4D1D-BF42-751FED2D5AC7}"
+
+[Software\\Classes\\HNetCfg.FwProducts] 1660099896
+#time=1d8ac641b762e5a
+@="HNetCfg.FwProducts"
+
+[Software\\Classes\\HNetCfg.FwProducts\\CLSID] 1660099896
+#time=1d8ac641b762ebe
+@="{CC19079B-8272-4D73-BB70-CDB533527B61}"
+
+[Software\\Classes\\HNetCfg.FwRule] 1660099896
+#time=1d8ac641b76296e
+@="HNetCfg.FwRule"
+
+[Software\\Classes\\HNetCfg.FwRule\\CLSID] 1660099896
+#time=1d8ac641b7629dc
+@="{2C5BC43E-3369-4C33-AB0C-BE9469677AF4}"
+
+[Software\\Classes\\HNetCfg.NATUPnP] 1660099896
+#time=1d8ac641b75fde0
+@="UPnPNAT"
+
+[Software\\Classes\\HNetCfg.NATUPnP\\CLSID] 1660099896
+#time=1d8ac641b75fd18
+@="{AE1E00AA-3FD5-403C-8A27-2BBDC30CD0E1}"
+
+[Software\\Classes\\HNetCfg.NATUPnP\\CurVer] 1660099896
+#time=1d8ac641b75fe44
+@="HNetCfg.NATUPnP.1"
+
+[Software\\Classes\\HNetCfg.NATUPnP.1] 1660099896
+#time=1d8ac641b75fa2a
+@="UPnPNAT"
+
+[Software\\Classes\\HNetCfg.NATUPnP.1\\CLSID] 1660099896
+#time=1d8ac641b75faa2
+@="{AE1E00AA-3FD5-403C-8A27-2BBDC30CD0E1}"
+
+[Software\\Classes\\htmlfile] 1660099897
+#time=1d8ac641c4ba670
+@="HTML Document"
+
+[Software\\Classes\\htmlfile\\CLSID] 1660099896
+#time=1d8ac641b8aca0e
+@="{25336920-03F9-11CF-8FD0-00AA00686F13}"
+
+[Software\\Classes\\htmlfile\\shell\\open\\command] 1660099897
+#time=1d8ac641c4ba8e6
+@="\"C:\\windows\\system32\\winebrowser.exe\" -nohome"
+
+[Software\\Classes\\htmlfile\\shell\\open\\ddeexec] 1660099897
+#time=1d8ac641c4badf0
+@="\"%1\",,-1,0,,,,"
+"NoActivateHandler"=""
+
+[Software\\Classes\\htmlfile\\shell\\open\\ddeexec\\Application] 1660099897
+#time=1d8ac641c4bad3c
+@="IExplore"
+
+[Software\\Classes\\htmlfile\\shell\\open\\ddeexec\\Topic] 1660099897
+#time=1d8ac641c4baec2
+@="WWW_OpenURL"
+
+[Software\\Classes\\htmlfile_FullWindowEmbed] 1660099896
+#time=1d8ac641b8acc16
+@="Microsoft HTML Document 6.0"
+
+[Software\\Classes\\htmlfile_FullWindowEmbed\\CLSID] 1660099896
+#time=1d8ac641b8acc70
+@="{25336921-03F9-11CF-8FD0-00AA00686F13}"
+
+[Software\\Classes\\http] 1660099897
+#time=1d8ac641c4c5048
+"URL Protocol"=""
+
+[Software\\Classes\\http\\shell\\open\\command] 1660099897
+#time=1d8ac641c4c52aa
+@="\"C:\\windows\\system32\\winebrowser.exe\" -nohome"
+
+[Software\\Classes\\http\\shell\\open\\ddeexec] 1660099897
+#time=1d8ac641c4c5750
+@="\"%1\",,-1,0,,,,"
+"NoActivateHandler"=""
+
+[Software\\Classes\\http\\shell\\open\\ddeexec\\Application] 1660099897
+#time=1d8ac641c4c56a6
+@="IExplore"
+
+[Software\\Classes\\http\\shell\\open\\ddeexec\\Topic] 1660099897
+#time=1d8ac641c4c57f0
+@="WWW_OpenURL"
+
+[Software\\Classes\\https] 1660099897
+#time=1d8ac641c4c5930
+"URL Protocol"=""
+
+[Software\\Classes\\https\\shell\\open\\command] 1660099897
+#time=1d8ac641c4c5be2
+@="\"C:\\windows\\system32\\winebrowser.exe\" -nohome"
+
+[Software\\Classes\\https\\shell\\open\\ddeexec] 1660099897
+#time=1d8ac641c4c6092
+@="\"%1\",,-1,0,,,,"
+"NoActivateHandler"=""
+
+[Software\\Classes\\https\\shell\\open\\ddeexec\\Application] 1660099897
+#time=1d8ac641c4c5fde
+@="IExplore"
+
+[Software\\Classes\\https\\shell\\open\\ddeexec\\Topic] 1660099897
+#time=1d8ac641c4c6132
+@="WWW_OpenURL"
+
+[Software\\Classes\\ICOFilter.CoICOFilter] 1660099896
+#time=1d8ac641b8ae7aa
+@="CoICOFilter Class"
+
+[Software\\Classes\\ICOFilter.CoICOFilter\\CLSID] 1660099896
+#time=1d8ac641b8ae70a
+@="{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}"
+
+[Software\\Classes\\ICOFilter.CoICOFilter\\CurVer] 1660099896
+#time=1d8ac641b8ae7fa
+@="ICOFilter.CoICOFilter.1"
+
+[Software\\Classes\\ICOFilter.CoICOFilter.1] 1660099896
+#time=1d8ac641b8ae4b2
+@="CoICOFilter Class"
+
+[Software\\Classes\\ICOFilter.CoICOFilter.1\\CLSID] 1660099896
+#time=1d8ac641b8ae502
+@="{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}"
+
+[Software\\Classes\\IImgCtx] 1660099896
+#time=1d8ac641b8ae9b2
+@="IImgCtx"
+
+[Software\\Classes\\IImgCtx\\CLSID] 1660099896
+#time=1d8ac641b8aea0c
+@="{3050F3D6-98B5-11CF-BB82-00AA00BDCE0B}"
+
+[Software\\Classes\\IMsiServer] 1660099896
+#time=1d8ac641b929d2e
+@="Msi install server"
+
+[Software\\Classes\\IMsiServer\\CLSID] 1660099896
+#time=1d8ac641b929d92
+@="{000C101C-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\inffile] 1660099897
+#time=1d8ac641c4bb192
+@="Setup Information"
+
+[Software\\Classes\\inffile\\shell\\install\\command] 1660099897
+#time=1d8ac641c4bb412
+@="C:\\windows\\system32\\rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %1"
+
+[Software\\Classes\\inifile] 1660099897
+#time=1d8ac641c4bb6e2
+@="Configuration Settings"
+
+[Software\\Classes\\inifile\\shell\\open\\command] 1660099897
+#time=1d8ac641c4bb962
+@="C:\\windows\\system32\\notepad.exe %1"
+
+[Software\\Classes\\inifile\\shell\\print\\command] 1660099897
+#time=1d8ac641c4bbd36
+@="C:\\windows\\system32\\notepad.exe /p %1"
+
+[Software\\Classes\\Interface\\{00000000-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba29b3e
+@="IUnknown"
+
+[Software\\Classes\\Interface\\{00000001-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba2a07a
+@="IClassFactory"
+
+[Software\\Classes\\Interface\\{00000001-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba29f6c
+@="5"
+
+[Software\\Classes\\Interface\\{00000001-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba2a0fc
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000000A-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba123c6
+@="ILockBytes"
+
+[Software\\Classes\\Interface\\{0000000A-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba12326
+@="10"
+
+[Software\\Classes\\Interface\\{0000000A-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba12416
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000000B-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba11732
+@="IStorage"
+
+[Software\\Classes\\Interface\\{0000000B-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba1166a
+@="18"
+
+[Software\\Classes\\Interface\\{0000000B-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba11796
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000000C-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba0ecda
+@="IStream"
+
+[Software\\Classes\\Interface\\{0000000C-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba0ec30
+@="14"
+
+[Software\\Classes\\Interface\\{0000000C-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0ed34
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000000D-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba1132c
+@="IEnumSTATSTG"
+
+[Software\\Classes\\Interface\\{0000000D-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba1126e
+@="7"
+
+[Software\\Classes\\Interface\\{0000000D-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba11386
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000000E-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba0f676
+@="IBindCtx"
+
+[Software\\Classes\\Interface\\{0000000E-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba0f5cc
+@="13"
+
+[Software\\Classes\\Interface\\{0000000E-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0f6d0
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000000F-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba10940
+@="IMoniker"
+
+[Software\\Classes\\Interface\\{0000000F-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba108a0
+@="23"
+
+[Software\\Classes\\Interface\\{0000000F-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba10990
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000010-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba10026
+@="IRunningObjectTable"
+
+[Software\\Classes\\Interface\\{00000010-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba0ff72
+@="10"
+
+[Software\\Classes\\Interface\\{00000010-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba10076
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000012-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba120a6
+@="IRootStorage"
+
+[Software\\Classes\\Interface\\{00000012-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba12006
+@="4"
+
+[Software\\Classes\\Interface\\{00000012-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba120f6
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000022-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba0e37a
+@="ISurrogate"
+
+[Software\\Classes\\Interface\\{00000022-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba0e2da
+@="5"
+
+[Software\\Classes\\Interface\\{00000022-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0e3d4
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000026-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba149d2
+@="IUrlMon"
+
+[Software\\Classes\\Interface\\{00000026-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba14932
+@="4"
+
+[Software\\Classes\\Interface\\{00000026-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba14a36
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000002E-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba38b2a
+@="ITypeFactory"
+
+[Software\\Classes\\Interface\\{0000002E-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba38a76
+@="4"
+
+[Software\\Classes\\Interface\\{0000002E-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba4726a
+@="{00020420-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000030-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba0f040
+@="ISynchronize"
+
+[Software\\Classes\\Interface\\{00000030-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba0ef96
+@="6"
+
+[Software\\Classes\\Interface\\{00000030-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0f090
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000040-A8F2-4877-BA0A-FD2B6645FB94}] 1660099897
+#time=1d8ac641bd79e1a
+@="IWICPalette"
+
+[Software\\Classes\\Interface\\{00000040-A8F2-4877-BA0A-FD2B6645FB94}\\NumMethods] 1660099897
+#time=1d8ac641bd79d34
+@="13"
+
+[Software\\Classes\\Interface\\{00000040-A8F2-4877-BA0A-FD2B6645FB94}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd79e92
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{00000100-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba0e06e
+@="IEnumUnknown"
+
+[Software\\Classes\\Interface\\{00000100-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba0dfc4
+@="7"
+
+[Software\\Classes\\Interface\\{00000100-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0e0c8
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000101-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba0e69a
+@="IEnumString"
+
+[Software\\Classes\\Interface\\{00000101-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba0e5e6
+@="7"
+
+[Software\\Classes\\Interface\\{00000101-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0e6fe
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000102-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba0f996
+@="IEnumMoniker"
+
+[Software\\Classes\\Interface\\{00000102-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba0f8ec
+@="7"
+
+[Software\\Classes\\Interface\\{00000102-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0f9f0
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000103-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba13690
+@="IEnumFORMATETC"
+
+[Software\\Classes\\Interface\\{00000103-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba135e6
+@="7"
+
+[Software\\Classes\\Interface\\{00000103-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba136e0
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000103-A8F2-4877-BA0A-FD2B6645FB94}] 1660099897
+#time=1d8ac641bd7e7e4
+@="IWICBitmapEncoder"
+
+[Software\\Classes\\Interface\\{00000103-A8F2-4877-BA0A-FD2B6645FB94}\\NumMethods] 1660099897
+#time=1d8ac641bd7e6ea
+@="13"
+
+[Software\\Classes\\Interface\\{00000103-A8F2-4877-BA0A-FD2B6645FB94}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7e87a
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{00000104-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba244e0
+@="IEnumOLEVERB"
+
+[Software\\Classes\\Interface\\{00000104-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba243be
+@="7"
+
+[Software\\Classes\\Interface\\{00000104-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba245b2
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000105-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba139b0
+@="IEnumSTATDATA"
+
+[Software\\Classes\\Interface\\{00000105-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba13906
+@="7"
+
+[Software\\Classes\\Interface\\{00000105-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba13a14
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000105-A8F2-4877-BA0A-FD2B6645FB94}] 1660099897
+#time=1d8ac641bd7d678
+@="IWICBitmapFrameEncode"
+
+[Software\\Classes\\Interface\\{00000105-A8F2-4877-BA0A-FD2B6645FB94}\\NumMethods] 1660099897
+#time=1d8ac641bd7d506
+@="14"
+
+[Software\\Classes\\Interface\\{00000105-A8F2-4877-BA0A-FD2B6645FB94}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7d704
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{00000109-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba1063e
+@="IPersistStream"
+
+[Software\\Classes\\Interface\\{00000109-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba1059e
+@="8"
+
+[Software\\Classes\\Interface\\{00000109-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba10698
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000010A-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba11d86
+@="IPersistStorage"
+
+[Software\\Classes\\Interface\\{0000010A-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba11cdc
+@="10"
+
+[Software\\Classes\\Interface\\{0000010A-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba11de0
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000010B-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba11a52
+@="IPersistFile"
+
+[Software\\Classes\\Interface\\{0000010B-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba119b2
+@="9"
+
+[Software\\Classes\\Interface\\{0000010B-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba11aac
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000010C-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba1031e
+@="IPersist"
+
+[Software\\Classes\\Interface\\{0000010C-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba1027e
+@="4"
+
+[Software\\Classes\\Interface\\{0000010C-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba10378
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000010D-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba26970
+@="IViewObject"
+
+[Software\\Classes\\Interface\\{0000010D-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba26858
+@="9"
+
+[Software\\Classes\\Interface\\{0000010D-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba269f2
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000010E-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba143b0
+@="IDataObject"
+
+[Software\\Classes\\Interface\\{0000010E-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba14310
+@="12"
+
+[Software\\Classes\\Interface\\{0000010E-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba14400
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000010F-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba13d20
+@="IAdviseSink"
+
+[Software\\Classes\\Interface\\{0000010F-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba13c58
+@="8"
+
+[Software\\Classes\\Interface\\{0000010F-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba13d98
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000112-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba25f70
+@="IOleObject"
+
+[Software\\Classes\\Interface\\{00000112-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba25e62
+@="24"
+
+[Software\\Classes\\Interface\\{00000112-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba25ffc
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000113-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba1847e
+@="IOleInPlaceObject"
+
+[Software\\Classes\\Interface\\{00000113-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba183de
+@="9"
+
+[Software\\Classes\\Interface\\{00000113-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba184ce
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000114-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba18186
+@="IOleWindow"
+
+[Software\\Classes\\Interface\\{00000114-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba180dc
+@="5"
+
+[Software\\Classes\\Interface\\{00000114-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba181e0
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000115-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba1878a
+@="IOleInPlaceUIWindow"
+
+[Software\\Classes\\Interface\\{00000115-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba186d6
+@="9"
+
+[Software\\Classes\\Interface\\{00000115-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba187e4
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000116-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba18a96
+@="IOleInPlaceFrame"
+
+[Software\\Classes\\Interface\\{00000116-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba189ec
+@="15"
+
+[Software\\Classes\\Interface\\{00000116-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba18af0
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000117-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba18d98
+@="IOleInPlaceActiveObject"
+
+[Software\\Classes\\Interface\\{00000117-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba18cee
+@="10"
+
+[Software\\Classes\\Interface\\{00000117-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba18de8
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000118-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba1a102
+@="IOleClientSite"
+
+[Software\\Classes\\Interface\\{00000118-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba19fcc
+@="9"
+
+[Software\\Classes\\Interface\\{00000118-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba1a170
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000119-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba190ae
+@="IOleInPlaceSite"
+
+[Software\\Classes\\Interface\\{00000119-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba19018
+@="15"
+
+[Software\\Classes\\Interface\\{00000119-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba19108
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000011A-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba193a6
+@="IParseDisplayName"
+
+[Software\\Classes\\Interface\\{0000011A-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba19306
+@="4"
+
+[Software\\Classes\\Interface\\{0000011A-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba1940a
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000011B-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba196bc
+@="IOleContainer"
+
+[Software\\Classes\\Interface\\{0000011B-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba19612
+@="6"
+
+[Software\\Classes\\Interface\\{0000011B-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba1970c
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000011C-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba199b4
+@="IOleItemContainer"
+
+[Software\\Classes\\Interface\\{0000011C-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba19914
+@="9"
+
+[Software\\Classes\\Interface\\{0000011C-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba19a18
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000011D-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba19cd4
+@="IOleLink"
+
+[Software\\Classes\\Interface\\{0000011D-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba19c0c
+@="14"
+
+[Software\\Classes\\Interface\\{0000011D-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba19d2e
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000011E-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba1a9e0
+@="IOleCache"
+
+[Software\\Classes\\Interface\\{0000011E-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba1a86e
+@="8"
+
+[Software\\Classes\\Interface\\{0000011E-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba1ac9c
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000120-A8F2-4877-BA0A-FD2B6645FB94}] 1660099897
+#time=1d8ac641bd7856a
+@="IWICBitmapSource"
+
+[Software\\Classes\\Interface\\{00000120-A8F2-4877-BA0A-FD2B6645FB94}\\NumMethods] 1660099897
+#time=1d8ac641bd783ee
+@="8"
+
+[Software\\Classes\\Interface\\{00000120-A8F2-4877-BA0A-FD2B6645FB94}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7860a
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{00000121-A8F2-4877-BA0A-FD2B6645FB94}] 1660099897
+#time=1d8ac641bd79942
+@="IWICBitmap"
+
+[Software\\Classes\\Interface\\{00000121-A8F2-4877-BA0A-FD2B6645FB94}\\NumMethods] 1660099897
+#time=1d8ac641bd79848
+@="11"
+
+[Software\\Classes\\Interface\\{00000121-A8F2-4877-BA0A-FD2B6645FB94}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd799d8
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{00000122-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba27262
+@="IDropTarget"
+
+[Software\\Classes\\Interface\\{00000122-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba2717c
+@="7"
+
+[Software\\Classes\\Interface\\{00000122-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba272e4
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000123-A8F2-4877-BA0A-FD2B6645FB94}] 1660099897
+#time=1d8ac641bd78f92
+@="IWICBitmapLock"
+
+[Software\\Classes\\Interface\\{00000123-A8F2-4877-BA0A-FD2B6645FB94}\\NumMethods] 1660099897
+#time=1d8ac641bd78ea2
+@="7"
+
+[Software\\Classes\\Interface\\{00000123-A8F2-4877-BA0A-FD2B6645FB94}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd79028
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{00000125-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba140a4
+@="IAdviseSink2"
+
+[Software\\Classes\\Interface\\{00000125-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba13ff0
+@="9"
+
+[Software\\Classes\\Interface\\{00000125-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba140fe
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000126-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba0fcca
+@="IRunnableObject"
+
+[Software\\Classes\\Interface\\{00000126-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba0fbf8
+@="8"
+
+[Software\\Classes\\Interface\\{00000126-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0fd4c
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000127-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba26dee
+@="IViewObject2"
+
+[Software\\Classes\\Interface\\{00000127-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba26d08
+@="10"
+
+[Software\\Classes\\Interface\\{00000127-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba26e66
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000128-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba1ba20
+@="IOleCache2"
+
+[Software\\Classes\\Interface\\{00000128-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba1b912
+@="10"
+
+[Software\\Classes\\Interface\\{00000128-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba1baac
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000129-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba23c70
+@="IOleCacheControl"
+
+[Software\\Classes\\Interface\\{00000129-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba1be4e
+@="5"
+
+[Software\\Classes\\Interface\\{00000129-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba23e6e
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000012A-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba264d4
+@="IContinue"
+
+[Software\\Classes\\Interface\\{0000012A-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba26376
+@="4"
+
+[Software\\Classes\\Interface\\{0000012A-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba2654c
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000131-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba0d42a
+@="IRemUnknown"
+
+[Software\\Classes\\Interface\\{00000131-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba0d358
+@="6"
+
+[Software\\Classes\\Interface\\{00000131-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0d4a2
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000140-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba1100c
+@="IClassActivator"
+
+[Software\\Classes\\Interface\\{00000140-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba10f4e
+@="4"
+
+[Software\\Classes\\Interface\\{00000140-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba1105c
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000142-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba0d786
+@="IRemUnknown2"
+
+[Software\\Classes\\Interface\\{00000142-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba0d6e6
+@="7"
+
+[Software\\Classes\\Interface\\{00000142-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0d7ea
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000266-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b168c8e
+@="RecordsetEvents"
+
+[Software\\Classes\\Interface\\{00000266-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b168af4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000266-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b168bee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000266-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b168d38
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000301-A8F2-4877-BA0A-FD2B6645FB94}] 1660099897
+#time=1d8ac641bd7ecee
+@="IWICFormatConverter"
+
+[Software\\Classes\\Interface\\{00000301-A8F2-4877-BA0A-FD2B6645FB94}\\NumMethods] 1660099897
+#time=1d8ac641bd7ebf4
+@="10"
+
+[Software\\Classes\\Interface\\{00000301-A8F2-4877-BA0A-FD2B6645FB94}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7ed84
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{00000302-A8F2-4877-BA0A-FD2B6645FB94}] 1660099897
+#time=1d8ac641bd7fcb6
+@="IWICBitmapScaler"
+
+[Software\\Classes\\Interface\\{00000302-A8F2-4877-BA0A-FD2B6645FB94}\\NumMethods] 1660099897
+#time=1d8ac641bd7fbb2
+@="9"
+
+[Software\\Classes\\Interface\\{00000302-A8F2-4877-BA0A-FD2B6645FB94}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7fe82
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{00000400-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b16881a
+@="ConnectionEvents"
+
+[Software\\Classes\\Interface\\{00000400-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b168680
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000400-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b16877a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000400-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b1688f6
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000500-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b165b4c
+@="Error"
+
+[Software\\Classes\\Interface\\{00000500-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1659b2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000500-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b165aac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000500-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b165c00
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000501-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b165fac
+@="Errors"
+
+[Software\\Classes\\Interface\\{00000501-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b165e12
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000501-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b165f0c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000501-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b166060
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000503-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b1614ac
+@="Property"
+
+[Software\\Classes\\Interface\\{00000503-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1612c2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000503-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1613ee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000503-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b16157e
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000504-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b161a24
+@="Properties"
+
+[Software\\Classes\\Interface\\{00000504-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1617f4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000504-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b161966
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000504-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b161af6
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000506-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b16325c
+@="Fields15"
+
+[Software\\Classes\\Interface\\{00000506-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b16307c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000506-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b16319e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000506-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b16332e
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000508-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b1679d8
+@="Command15"
+
+[Software\\Classes\\Interface\\{00000508-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b167834
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000508-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b16792e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000508-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b167a8c
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{0000050C-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b166ca4
+@="_Parameter"
+
+[Software\\Classes\\Interface\\{0000050C-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b166b00
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000050C-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b166c04
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000050C-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b166d58
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{0000050D-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b167546
+@="Parameters"
+
+[Software\\Classes\\Interface\\{0000050D-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1673ac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000050D-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1674a6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000050D-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b1675fa
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{0000050E-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b1656f6
+@="Recordset15"
+
+[Software\\Classes\\Interface\\{0000050E-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b16553e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000050E-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b165656
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000050E-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b1657aa
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000512-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b160eb2
+@="_Collection"
+
+[Software\\Classes\\Interface\\{00000512-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b160c82
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000512-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b160dcc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000512-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b160f98
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000513-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b1670f0
+@="_DynaCollection"
+
+[Software\\Classes\\Interface\\{00000513-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b166f56
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000513-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b167050
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000513-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b1671ae
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000515-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b16640c
+@="Connection15"
+
+[Software\\Classes\\Interface\\{00000515-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b16625e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000515-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b166358
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000515-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b1664b6
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000534-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b161f42
+@="_ADO"
+
+[Software\\Classes\\Interface\\{00000534-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b161d6c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000534-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b161e84
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000534-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b162046
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{0000054C-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b1627b2
+@="Field20"
+
+[Software\\Classes\\Interface\\{0000054C-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1625be
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000054C-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1626fe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000054C-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b16288e
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{0000054D-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b1637ac
+@="Fields20"
+
+[Software\\Classes\\Interface\\{0000054D-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1635a4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000054D-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1636e4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000054D-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b163892
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{0000054E-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b167e2e
+@="Command25"
+
+[Software\\Classes\\Interface\\{0000054E-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b167c94
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000054E-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b167d8e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000054E-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b167ed8
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{0000054F-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b1650ac
+@="Recordset20"
+
+[Software\\Classes\\Interface\\{0000054F-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b164e90
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000054F-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b164ff8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0000054F-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b16517e
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000550-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b16684e
+@="_Connection"
+
+[Software\\Classes\\Interface\\{00000550-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1666be
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000550-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1667ae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000550-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b166902
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000555-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b1644d6
+@="Recordset21"
+
+[Software\\Classes\\Interface\\{00000555-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1642e2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000555-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b164418
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000555-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b1645a8
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000556-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b1649fe
+@="_Recordset"
+
+[Software\\Classes\\Interface\\{00000556-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b164800
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000556-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b164922
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000556-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b164ad0
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000562-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b1690e4
+@="_Record"
+
+[Software\\Classes\\Interface\\{00000562-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b168f40
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000562-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b169044
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000562-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b169198
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000564-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b163e0a
+@="Fields"
+
+[Software\\Classes\\Interface\\{00000564-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b163b1c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000564-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b163d38
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000564-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b163ef0
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000565-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b169526
+@="_Stream"
+
+[Software\\Classes\\Interface\\{00000565-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b169396
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000565-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b169490
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000565-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b1695da
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00000569-0000-0010-8000-00AA006D2EA4}] 1660099895
+#time=1d8ac641b162d20
+@="Field"
+
+[Software\\Classes\\Interface\\{00000569-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b162b36
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000569-0000-0010-8000-00AA006D2EA4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b162c62
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00000569-0000-0010-8000-00AA006D2EA4}\\TypeLib] 1660099895
+#time=1d8ac641b162e1a
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{00020020-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b46f5e0
+@="IAVIFile"
+
+[Software\\Classes\\Interface\\{00020020-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b46f518
+@="10"
+
+[Software\\Classes\\Interface\\{00020020-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b46f644
+@="{0002000D-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020021-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b46f162
+@="IAVIStream"
+
+[Software\\Classes\\Interface\\{00020021-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b46f090
+@="14"
+
+[Software\\Classes\\Interface\\{00020021-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b46f1da
+@="{0002000D-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020400-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba4744a
+@="IDispatch"
+
+[Software\\Classes\\Interface\\{00020400-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba363b6
+@="7"
+
+[Software\\Classes\\Interface\\{00020400-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641ba474ae
+@="{00020420-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020400-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba475bc
+@="{00020420-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020401-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba47738
+@="ITypeInfo"
+
+[Software\\Classes\\Interface\\{00020401-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba36ed8
+@="22"
+
+[Software\\Classes\\Interface\\{00020401-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641ba477ce
+@="{00020422-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020401-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba478dc
+@="{00020422-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020402-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba47bac
+@="ITypeLib"
+
+[Software\\Classes\\Interface\\{00020402-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba3764e
+@="13"
+
+[Software\\Classes\\Interface\\{00020402-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641ba47c1a
+@="{00020423-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020402-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba47d6e
+@="{00020423-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020403-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba47ef4
+@="ITypeComp"
+
+[Software\\Classes\\Interface\\{00020403-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba36b36
+@="5"
+
+[Software\\Classes\\Interface\\{00020403-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641ba47f58
+@="{00020425-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020403-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba48066
+@="{00020425-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020404-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba481d8
+@="IEnumVARIANT"
+
+[Software\\Classes\\Interface\\{00020404-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba36794
+@="7"
+
+[Software\\Classes\\Interface\\{00020404-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641ba4823c
+@="{00020421-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020404-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba48354
+@="{00020421-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020411-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba37acc
+@="ITypeLib2"
+
+[Software\\Classes\\Interface\\{00020411-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba37a0e
+@="17"
+
+[Software\\Classes\\Interface\\{00020411-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba48520
+@="{00020420-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{00020412-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641ba3737e
+@="ITypeInfo2"
+
+[Software\\Classes\\Interface\\{00020412-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641ba372ac
+@="37"
+
+[Software\\Classes\\Interface\\{00020412-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba486f6
+@="{00020420-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000214E2-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b305c4a
+@="IShellBrowser"
+
+[Software\\Classes\\Interface\\{000214E2-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b305b96
+@="18"
+
+[Software\\Classes\\Interface\\{000214E2-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b305cae
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{000214E3-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b304b4c
+@="IShellView"
+
+[Software\\Classes\\Interface\\{000214E3-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b304a84
+@="16"
+
+[Software\\Classes\\Interface\\{000214E3-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b304bb0
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{000214E5-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b3047d2
+@="IShellIcon"
+
+[Software\\Classes\\Interface\\{000214E5-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b304714
+@="4"
+
+[Software\\Classes\\Interface\\{000214E5-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b304836
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{000214E6-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b30227a
+@="IShellFolder"
+
+[Software\\Classes\\Interface\\{000214E6-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b30205e
+@="13"
+
+[Software\\Classes\\Interface\\{000214E6-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30231a
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{000214EA-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b3013e8
+@="IPersistFolder"
+
+[Software\\Classes\\Interface\\{000214EA-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b301302
+@="5"
+
+[Software\\Classes\\Interface\\{000214EA-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b301456
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{000214EE-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b3060c8
+@="IShellLinkA"
+
+[Software\\Classes\\Interface\\{000214EE-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b30600a
+@="21"
+
+[Software\\Classes\\Interface\\{000214EE-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30612c
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{000214F1-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b306bd6
+@="ICommDlgBrowser"
+
+[Software\\Classes\\Interface\\{000214F1-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b306b18
+@="6"
+
+[Software\\Classes\\Interface\\{000214F1-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b306c4e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{000214F2-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b301dd4
+@="IEnumIDList"
+
+[Software\\Classes\\Interface\\{000214F2-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b301d2a
+@="7"
+
+[Software\\Classes\\Interface\\{000214F2-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b301e38
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{000214F9-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b306442
+@="IShellLinkW"
+
+[Software\\Classes\\Interface\\{000214F9-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b306384
+@="21"
+
+[Software\\Classes\\Interface\\{000214F9-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30649c
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{0002DF05-0000-0000-C000-000000000046}] 1660099895
+#time=1d8ac641b0d263a
+@="IWebBrowserApp"
+
+[Software\\Classes\\Interface\\{0002DF05-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d246e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0002DF05-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d2586
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0002DF05-0000-0000-C000-000000000046}\\TypeLib] 1660099895
+#time=1d8ac641b0d2716
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{0002E000-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b2f712c
+@="IEnumGUID"
+
+[Software\\Classes\\Interface\\{0002E000-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b2f6cf4
+@="7"
+
+[Software\\Classes\\Interface\\{0002E000-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f74a6
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{0002E011-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b2f86b2
+@="IEnumCATEGORYINFO"
+
+[Software\\Classes\\Interface\\{0002E011-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b2f7dfc
+@="7"
+
+[Software\\Classes\\Interface\\{0002E011-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f8720
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{0002E012-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b2f8f18
+@="ICatRegister"
+
+[Software\\Classes\\Interface\\{0002E012-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b2f8e6e
+@="9"
+
+[Software\\Classes\\Interface\\{0002E012-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f8f68
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{0002E013-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b2f8c0c
+@="ICatInformation"
+
+[Software\\Classes\\Interface\\{0002E013-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b2f8b58
+@="9"
+
+[Software\\Classes\\Interface\\{0002E013-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f8c66
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{000C101C-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b926552
+@="IMsiServer"
+
+[Software\\Classes\\Interface\\{000C101C-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b926476
+@="3"
+
+[Software\\Classes\\Interface\\{000C101C-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9265ac
+@="{000C103E-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C101D-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b927010
+@="IMsiMessage"
+
+[Software\\Classes\\Interface\\{000C101D-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b926ef8
+@="3"
+
+[Software\\Classes\\Interface\\{000C101D-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b927088
+@="{000C103E-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C1025-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b9273ee
+@="IMsiCustomAction"
+
+[Software\\Classes\\Interface\\{000C1025-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b927326
+@="3"
+
+[Software\\Classes\\Interface\\{000C1025-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b92745c
+@="{000C103E-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C1033-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b927c90
+@="IMsiRemoteAPI"
+
+[Software\\Classes\\Interface\\{000C1033-0000-0000-C000-000000000046}\\NumMethods] 1660099896
+#time=1d8ac641b927b3c
+@="3"
+
+[Software\\Classes\\Interface\\{000C1033-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b927d3a
+@="{000C103E-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C1090-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b9237f8
+@="Installer"
+
+[Software\\Classes\\Interface\\{000C1090-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b92362c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C1090-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b92374e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C1090-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b9238c0
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{000C1093-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b921a34
+@="Record"
+
+[Software\\Classes\\Interface\\{000C1093-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b92185e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C1093-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b921980
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C1093-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b921b4c
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{000C1095-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b9232f8
+@="StringList"
+
+[Software\\Classes\\Interface\\{000C1095-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b923136
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C1095-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b92324e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C1095-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b9233de
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{000C1096-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b924e14
+@="RecordList"
+
+[Software\\Classes\\Interface\\{000C1096-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b924b44
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C1096-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b924cf2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C1096-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b9252f6
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{000C109A-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b923cee
+@="UIPreview"
+
+[Software\\Classes\\Interface\\{000C109A-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b923b04
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109A-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b923c3a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109A-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b923dac
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{000C109B-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b922466
+@="SummaryInfo"
+
+[Software\\Classes\\Interface\\{000C109B-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b92227c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109B-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9223b2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109B-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b92252e
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{000C109C-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b921f70
+@="View"
+
+[Software\\Classes\\Interface\\{000C109C-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b921d9a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109C-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b921ebc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109C-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b922042
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{000C109D-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b92293e
+@="Database"
+
+[Software\\Classes\\Interface\\{000C109D-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b922772
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109D-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b92288a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109D-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b922a06
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{000C109E-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b922e2a
+@="Session"
+
+[Software\\Classes\\Interface\\{000C109E-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b922c68
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109E-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b922d80
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109E-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b922ef2
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{000C109F-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b924356
+@="FeatureInfo"
+
+[Software\\Classes\\Interface\\{000C109F-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9240f4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109F-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b924252
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C109F-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b924482
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{000C10A0-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b925904
+@="Product"
+
+[Software\\Classes\\Interface\\{000C10A0-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b92571a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C10A0-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b925850
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C10A0-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b925a1c
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{000C10A1-0000-0000-C000-000000000046}] 1660099896
+#time=1d8ac641b925e86
+@="Patch"
+
+[Software\\Classes\\Interface\\{000C10A1-0000-0000-C000-000000000046}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b925c9c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C10A1-0000-0000-C000-000000000046}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b925dc8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{000C10A1-0000-0000-C000-000000000046}\\TypeLib] 1660099896
+#time=1d8ac641b925f58
+@="{000C1092-0000-0000-C000-000000000046}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{00855B90-CE1B-11D0-BD4F-00A0C911CE86}] 1660099896
+#time=1d8ac641baca480
+@="IFileSinkFilter2"
+
+[Software\\Classes\\Interface\\{00855B90-CE1B-11D0-BD4F-00A0C911CE86}\\NumMethods] 1660099896
+#time=1d8ac641baca3cc
+@="7"
+
+[Software\\Classes\\Interface\\{00855B90-CE1B-11D0-BD4F-00A0C911CE86}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641baca4e4
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{00ADB003-BDE9-45C6-8E29-D09F9353E108}] 1660099896
+#time=1d8ac641b30fad8
+@="ITransferSource"
+
+[Software\\Classes\\Interface\\{00ADB003-BDE9-45C6-8E29-D09F9353E108}\\NumMethods] 1660099896
+#time=1d8ac641b30fa2e
+@="16"
+
+[Software\\Classes\\Interface\\{00ADB003-BDE9-45C6-8E29-D09F9353E108}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30fb28
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{012DD920-7B26-11D0-8CA9-00A0C92DBFE8}] 1660099896
+#time=1d8ac641b30763a
+@="IDockingWindow"
+
+[Software\\Classes\\Interface\\{012DD920-7B26-11D0-8CA9-00A0C92DBFE8}\\NumMethods] 1660099896
+#time=1d8ac641b307572
+@="8"
+
+[Software\\Classes\\Interface\\{012DD920-7B26-11D0-8CA9-00A0C92DBFE8}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30769e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{016FE2EC-B2C8-45F8-B23B-39E53A75396B}] 1660099897
+#time=1d8ac641bdf0c40
+@="IWinHttpRequest"
+
+[Software\\Classes\\Interface\\{016FE2EC-B2C8-45F8-B23B-39E53A75396B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bdf0a2e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{016FE2EC-B2C8-45F8-B23B-39E53A75396B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bdf0b46
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{016FE2EC-B2C8-45F8-B23B-39E53A75396B}\\TypeLib] 1660099897
+#time=1d8ac641bdf0d44
+@="{662901FC-6951-4854-9EB2-D9A2570F2B2E}"
+"Version"="5.1"
+
+[Software\\Classes\\Interface\\{01B7BD23-FB88-4A77-8490-5891D3E4653A}] 1660099896
+#time=1d8ac641baba788
+@="IBackgroundCopyFile"
+
+[Software\\Classes\\Interface\\{01B7BD23-FB88-4A77-8490-5891D3E4653A}\\NumMethods] 1660099896
+#time=1d8ac641baba6c0
+@="6"
+
+[Software\\Classes\\Interface\\{01B7BD23-FB88-4A77-8490-5891D3E4653A}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641baba7f6
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{01E44665-24AC-101B-84ED-08002B2EC713}] 1660099896
+#time=1d8ac641ba3d7b0
+@="IPropertyPage2"
+
+[Software\\Classes\\Interface\\{01E44665-24AC-101B-84ED-08002B2EC713}\\NumMethods] 1660099896
+#time=1d8ac641ba3d6f2
+@="15"
+
+[Software\\Classes\\Interface\\{01E44665-24AC-101B-84ED-08002B2EC713}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3d814
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{02820E19-7B98-4ED2-B2E8-FDCCCEFF619B}] 1660099897
+#time=1d8ac641bc6a6e6
+@="IActionCollection"
+
+[Software\\Classes\\Interface\\{02820E19-7B98-4ED2-B2E8-FDCCCEFF619B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc6a506
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{02820E19-7B98-4ED2-B2E8-FDCCCEFF619B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc6a632
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{02820E19-7B98-4ED2-B2E8-FDCCCEFF619B}\\TypeLib] 1660099897
+#time=1d8ac641bc6a808
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{028212A3-B627-47E9-8856-C14265554E4F}] 1660099896
+#time=1d8ac641b30b604
+@="INameSpaceTreeControl"
+
+[Software\\Classes\\Interface\\{028212A3-B627-47E9-8856-C14265554E4F}\\NumMethods] 1660099896
+#time=1d8ac641b309fb6
+@="22"
+
+[Software\\Classes\\Interface\\{028212A3-B627-47E9-8856-C14265554E4F}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30b74e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{03022430-ABC4-11D0-BDE2-00AA001A1953}] 1660099896
+#time=1d8ac641ba30e8e
+@="IAccessibleHandler"
+
+[Software\\Classes\\Interface\\{03022430-ABC4-11D0-BDE2-00AA001A1953}\\NumMethods] 1660099896
+#time=1d8ac641ba30ef2
+@="4"
+
+[Software\\Classes\\Interface\\{03022430-ABC4-11D0-BDE2-00AA001A1953}\\ProxyStubClsid] 1660099896
+#time=1d8ac641ba2fd7c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{03022430-ABC4-11D0-BDE2-00AA001A1953}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3101e
+@="{03022430-ABC4-11D0-BDE2-00AA001A1953}"
+
+[Software\\Classes\\Interface\\{03022430-ABC4-11D0-BDE2-00AA001A1953}\\TypeLib] 1660099896
+#time=1d8ac641ba30088
+@="{1EA4DBF0-3C3B-11CF-810C-00AA00389B71}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{032AAC35-8C0E-4D9D-979F-E3B702935576}] 1660099895
+#time=1d8ac641b05bb20
+@="IVBSAXLexicalHandler"
+
+[Software\\Classes\\Interface\\{032AAC35-8C0E-4D9D-979F-E3B702935576}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05b968
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{032AAC35-8C0E-4D9D-979F-E3B702935576}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05ba76
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{032AAC35-8C0E-4D9D-979F-E3B702935576}\\TypeLib] 1660099895
+#time=1d8ac641b0c3e5a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{04B0F1A7-9490-44BC-96E1-4296A31252E2}] 1660099896
+#time=1d8ac641b30d486
+@="IFileOperationProgressSink"
+
+[Software\\Classes\\Interface\\{04B0F1A7-9490-44BC-96E1-4296A31252E2}\\NumMethods] 1660099896
+#time=1d8ac641b30d3d2
+@="19"
+
+[Software\\Classes\\Interface\\{04B0F1A7-9490-44BC-96E1-4296A31252E2}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30d4e0
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{057A6296-029B-4154-B79A-0D461D4EA94C}] 1660099896
+#time=1d8ac641b888ece
+@="ITfRangeACP"
+
+[Software\\Classes\\Interface\\{057A6296-029B-4154-B79A-0D461D4EA94C}\\NumMethods] 1660099896
+#time=1d8ac641b888e1a
+@="27"
+
+[Software\\Classes\\Interface\\{057A6296-029B-4154-B79A-0D461D4EA94C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b888f32
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{0626B328-3478-467D-A0B3-D0853B93DDA3}] 1660099895
+#time=1d8ac641b0ed764
+@="ISpeechPhraseElements"
+
+[Software\\Classes\\Interface\\{0626B328-3478-467D-A0B3-D0853B93DDA3}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ed5ac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0626B328-3478-467D-A0B3-D0853B93DDA3}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ed6ba
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0626B328-3478-467D-A0B3-D0853B93DDA3}\\TypeLib] 1660099895
+#time=1d8ac641b0ed82c
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{07F7438C-7709-4CA5-B518-91279288134E}] 1660099897
+#time=1d8ac641be9ccc0
+@="IUpdateCollection"
+
+[Software\\Classes\\Interface\\{07F7438C-7709-4CA5-B518-91279288134E}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9caf4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{07F7438C-7709-4CA5-B518-91279288134E}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9cc0c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{07F7438C-7709-4CA5-B518-91279288134E}\\TypeLib] 1660099897
+#time=1d8ac641be9cd92
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{08166B47-102E-4B23-A599-BDB98DBFD1F4}] 1660099895
+#time=1d8ac641b0e9948
+@="ISpeechPhraseProperties"
+
+[Software\\Classes\\Interface\\{08166B47-102E-4B23-A599-BDB98DBFD1F4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e9786
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{08166B47-102E-4B23-A599-BDB98DBFD1F4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e9894
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{08166B47-102E-4B23-A599-BDB98DBFD1F4}\\TypeLib] 1660099895
+#time=1d8ac641b0e9a10
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{08EC3E00-50B0-11CF-960C-0080C7F4EE85}] 1660099896
+#time=1d8ac641bbc20e0
+@="FolderItemVerb"
+
+[Software\\Classes\\Interface\\{08EC3E00-50B0-11CF-960C-0080C7F4EE85}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc1ee2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{08EC3E00-50B0-11CF-960C-0080C7F4EE85}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc2018
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{08EC3E00-50B0-11CF-960C-0080C7F4EE85}\\TypeLib] 1660099896
+#time=1d8ac641bbc21ee
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{08FED190-BE19-11D3-A28B-00104BD35090}] 1660099897
+#time=1d8ac641be8242e
+@="IWshExec"
+
+[Software\\Classes\\Interface\\{08FED190-BE19-11D3-A28B-00104BD35090}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be8223a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{08FED190-BE19-11D3-A28B-00104BD35090}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be82366
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{08FED190-BE19-11D3-A28B-00104BD35090}\\TypeLib] 1660099897
+#time=1d8ac641be8250a
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{09941815-EA89-4B5B-89E0-2A773801FAC3}] 1660099897
+#time=1d8ac641bc5cfdc
+@="ITrigger"
+
+[Software\\Classes\\Interface\\{09941815-EA89-4B5B-89E0-2A773801FAC3}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc5cd3e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{09941815-EA89-4B5B-89E0-2A773801FAC3}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc5ced8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{09941815-EA89-4B5B-89E0-2A773801FAC3}\\TypeLib] 1660099897
+#time=1d8ac641bc5d144
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{0997A571-126E-11D0-9F8A-00A0C9A0631E}] 1660099895
+#time=1d8ac641b1561d8
+@="IRowPositionChange"
+
+[Software\\Classes\\Interface\\{0997A571-126E-11D0-9F8A-00A0C9A0631E}\\NumMethods] 1660099895
+#time=1d8ac641b15611a
+@="4"
+
+[Software\\Classes\\Interface\\{0997A571-126E-11D0-9F8A-00A0C9A0631E}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b15623c
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{09D146CD-A544-4132-925B-7AFA8EF322D0}] 1660099896
+#time=1d8ac641b88d5be
+@="ITfMouseTracker"
+
+[Software\\Classes\\Interface\\{09D146CD-A544-4132-925B-7AFA8EF322D0}\\NumMethods] 1660099896
+#time=1d8ac641b88d514
+@="5"
+
+[Software\\Classes\\Interface\\{09D146CD-A544-4132-925B-7AFA8EF322D0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88d60e
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{0AB5A3D0-E5B6-11D0-ABF5-00A0C90FFFC0}] 1660099896
+#time=1d8ac641bb5652a
+@="IFileSystem"
+
+[Software\\Classes\\Interface\\{0AB5A3D0-E5B6-11D0-ABF5-00A0C90FFFC0}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb5630e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0AB5A3D0-E5B6-11D0-ABF5-00A0C90FFFC0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb56462
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0AB5A3D0-E5B6-11D0-ABF5-00A0C90FFFC0}\\TypeLib] 1660099896
+#time=1d8ac641bb5661a
+@="{420B2830-E718-11CF-893D-00A0C9054228}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{0C05D096-F45B-4ACA-AD1A-AA0BC25518DC}] 1660099895
+#time=1d8ac641b05b166
+@="IVBSAXEntityResolver"
+
+[Software\\Classes\\Interface\\{0C05D096-F45B-4ACA-AD1A-AA0BC25518DC}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05afa4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0C05D096-F45B-4ACA-AD1A-AA0BC25518DC}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05b0b2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0C05D096-F45B-4ACA-AD1A-AA0BC25518DC}\\TypeLib] 1660099895
+#time=1d8ac641b0b81c2
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{0C733A11-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b1531cc
+@="IColumnsInfo"
+
+[Software\\Classes\\Interface\\{0C733A11-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b153118
+@="5"
+
+[Software\\Classes\\Interface\\{0C733A11-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b15328a
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A1D-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b153596
+@="IDBCreateCommand"
+
+[Software\\Classes\\Interface\\{0C733A1D-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b1534e2
+@="4"
+
+[Software\\Classes\\Interface\\{0C733A1D-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1535f0
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A1E-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b153c44
+@="ISourcesRowset"
+
+[Software\\Classes\\Interface\\{0C733A1E-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b153b90
+@="4"
+
+[Software\\Classes\\Interface\\{0C733A1E-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b153ca8
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A26-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b157bb4
+@="ICommandPrepare"
+
+[Software\\Classes\\Interface\\{0C733A26-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b157af6
+@="5"
+
+[Software\\Classes\\Interface\\{0C733A26-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b157c18
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A27-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b152e3e
+@="ICommandText"
+
+[Software\\Classes\\Interface\\{0C733A27-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b152d6c
+@="8"
+
+[Software\\Classes\\Interface\\{0C733A27-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b152ea2
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A30-2A1C-11CE-ADE5-00AA0044773D}] 1660099896
+#time=1d8ac641ba0e9c4
+@="ISequentialStream"
+
+[Software\\Classes\\Interface\\{0C733A30-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099896
+#time=1d8ac641ba0e924
+@="5"
+
+[Software\\Classes\\Interface\\{0C733A30-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0ea14
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0C733A55-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b151660
+@="IRowsetInfo"
+
+[Software\\Classes\\Interface\\{0C733A55-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b1515a2
+@="6"
+
+[Software\\Classes\\Interface\\{0C733A55-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1516d8
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A5D-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b1538de
+@="IDBCreateSession"
+
+[Software\\Classes\\Interface\\{0C733A5D-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b153834
+@="4"
+
+[Software\\Classes\\Interface\\{0C733A5D-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b153942
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A63-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b152a2e
+@="ICommand"
+
+[Software\\Classes\\Interface\\{0C733A63-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b15290c
+@="6"
+
+[Software\\Classes\\Interface\\{0C733A63-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b152aa6
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A67-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b156caa
+@="IErrorRecords"
+
+[Software\\Classes\\Interface\\{0C733A67-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b156be2
+@="9"
+
+[Software\\Classes\\Interface\\{0C733A67-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b156d2c
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A69-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b1559a4
+@="IOpenRowset"
+
+[Software\\Classes\\Interface\\{0C733A69-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b1558dc
+@="4"
+
+[Software\\Classes\\Interface\\{0C733A69-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b155a08
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A75-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b15706a
+@="IGetDataSource"
+
+[Software\\Classes\\Interface\\{0C733A75-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b156fac
+@="4"
+
+[Software\\Classes\\Interface\\{0C733A75-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1570d8
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A79-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b157420
+@="ICommandProperties"
+
+[Software\\Classes\\Interface\\{0C733A79-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b157362
+@="5"
+
+[Software\\Classes\\Interface\\{0C733A79-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1574ac
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A7A-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b154630
+@="IDBDataSourceAdmin"
+
+[Software\\Classes\\Interface\\{0C733A7A-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b15457c
+@="7"
+
+[Software\\Classes\\Interface\\{0C733A7A-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b15468a
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A83-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b1555ee
+@="IRowsetNotify"
+
+[Software\\Classes\\Interface\\{0C733A83-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b155530
+@="6"
+
+[Software\\Classes\\Interface\\{0C733A83-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b155652
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A85-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b155210
+@="ISessionProperties"
+
+[Software\\Classes\\Interface\\{0C733A85-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b155152
+@="5"
+
+[Software\\Classes\\Interface\\{0C733A85-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b15527e
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A88-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b157830
+@="IConvertType"
+
+[Software\\Classes\\Interface\\{0C733A88-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b157768
+@="4"
+
+[Software\\Classes\\Interface\\{0C733A88-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b15789e
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A8A-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b153f8c
+@="IDBProperties"
+
+[Software\\Classes\\Interface\\{0C733A8A-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b153ee2
+@="6"
+
+[Software\\Classes\\Interface\\{0C733A8A-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b153ff0
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A8B-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b1542e8
+@="IDBInitialize"
+
+[Software\\Classes\\Interface\\{0C733A8B-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b154234
+@="5"
+
+[Software\\Classes\\Interface\\{0C733A8B-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b15434c
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A8C-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b1512d2
+@="IAccessor"
+
+[Software\\Classes\\Interface\\{0C733A8C-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b1511ec
+@="7"
+
+[Software\\Classes\\Interface\\{0C733A8C-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b151340
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A93-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b151a3e
+@="IChapteredRowset"
+
+[Software\\Classes\\Interface\\{0C733A93-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b151962
+@="5"
+
+[Software\\Classes\\Interface\\{0C733A93-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b151aac
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A94-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b155d50
+@="IRowPosition"
+
+[Software\\Classes\\Interface\\{0C733A94-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b155c92
+@="8"
+
+[Software\\Classes\\Interface\\{0C733A94-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b155dc8
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A95-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b154e78
+@="IDBAsynchStatus"
+
+[Software\\Classes\\Interface\\{0C733A95-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b154dba
+@="5"
+
+[Software\\Classes\\Interface\\{0C733A95-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b154ee6
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733A96-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b154a5e
+@="IDBAsynchNotify"
+
+[Software\\Classes\\Interface\\{0C733A96-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b1548c4
+@="6"
+
+[Software\\Classes\\Interface\\{0C733A96-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b154b3a
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733AB1-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b156584
+@="IBindResource"
+
+[Software\\Classes\\Interface\\{0C733AB1-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b15649e
+@="4"
+
+[Software\\Classes\\Interface\\{0C733AB1-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1565e8
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0C733AB2-2A1C-11CE-ADE5-00AA0044773D}] 1660099895
+#time=1d8ac641b1568fe
+@="ICreateRow"
+
+[Software\\Classes\\Interface\\{0C733AB2-2A1C-11CE-ADE5-00AA0044773D}\\NumMethods] 1660099895
+#time=1d8ac641b156840
+@="4"
+
+[Software\\Classes\\Interface\\{0C733AB2-2A1C-11CE-ADE5-00AA0044773D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b15696c
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{0E59F1D3-1FBE-11D0-8FF2-00A0D10038BC}] 1660099896
+#time=1d8ac641b957f3a
+@="IScriptControl"
+
+[Software\\Classes\\Interface\\{0E59F1D3-1FBE-11D0-8FF2-00A0D10038BC}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b957d8c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0E59F1D3-1FBE-11D0-8FF2-00A0D10038BC}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b957e86
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0E59F1D3-1FBE-11D0-8FF2-00A0D10038BC}\\TypeLib] 1660099896
+#time=1d8ac641b957fe4
+@="{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{0E6D4D92-6738-11CF-9608-00AA00680DB4}] 1660099896
+#time=1d8ac641ba146bc
+@="IDirectWriterLock"
+
+[Software\\Classes\\Interface\\{0E6D4D92-6738-11CF-9608-00AA00680DB4}\\NumMethods] 1660099896
+#time=1d8ac641ba14612
+@="6"
+
+[Software\\Classes\\Interface\\{0E6D4D92-6738-11CF-9608-00AA00680DB4}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba14716
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{0E700BE1-9DB6-11D1-A1CE-00C04FD75D13}] 1660099896
+#time=1d8ac641b3027c0
+@="IEnumExtraSearch"
+
+[Software\\Classes\\Interface\\{0E700BE1-9DB6-11D1-A1CE-00C04FD75D13}\\NumMethods] 1660099896
+#time=1d8ac641b3026f8
+@="7"
+
+[Software\\Classes\\Interface\\{0E700BE1-9DB6-11D1-A1CE-00C04FD75D13}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b302824
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{101D6610-0990-11D3-8DF0-00105A2799B5}] 1660099896
+#time=1d8ac641b88263c
+@="ITfFunctionProvider"
+
+[Software\\Classes\\Interface\\{101D6610-0990-11D3-8DF0-00105A2799B5}\\NumMethods] 1660099896
+#time=1d8ac641b882592
+@="6"
+
+[Software\\Classes\\Interface\\{101D6610-0990-11D3-8DF0-00105A2799B5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b882696
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{10339516-2894-11D2-9039-00C04F8EEB3E}] 1660099896
+#time=1d8ac641b306f50
+@="ICommDlgBrowser2"
+
+[Software\\Classes\\Interface\\{10339516-2894-11D2-9039-00C04F8EEB3E}\\NumMethods] 1660099896
+#time=1d8ac641b306e9c
+@="9"
+
+[Software\\Classes\\Interface\\{10339516-2894-11D2-9039-00C04F8EEB3E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b306fb4
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{1079ACFC-29BD-11D3-8E0D-00C04F6837D5}] 1660099896
+#time=1d8ac641b301a78
+@="IPersistIDList"
+
+[Software\\Classes\\Interface\\{1079ACFC-29BD-11D3-8E0D-00C04F6837D5}\\NumMethods] 1660099896
+#time=1d8ac641b3019ce
+@="6"
+
+[Software\\Classes\\Interface\\{1079ACFC-29BD-11D3-8E0D-00C04F6837D5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b301adc
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{10A13217-23A7-439B-B1C0-D847C79B7774}] 1660099897
+#time=1d8ac641be3ffd4
+@="IWMPPlaylistCollection"
+
+[Software\\Classes\\Interface\\{10A13217-23A7-439B-B1C0-D847C79B7774}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be3fd9a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{10A13217-23A7-439B-B1C0-D847C79B7774}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be3ff02
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{10A13217-23A7-439B-B1C0-D847C79B7774}\\TypeLib] 1660099897
+#time=1d8ac641be400a6
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{10DC0586-132B-4CAC-8BB3-DB00AC8B7EE0}] 1660099895
+#time=1d8ac641b0594f6
+@="IVBSAXAttributes"
+
+[Software\\Classes\\Interface\\{10DC0586-132B-4CAC-8BB3-DB00AC8B7EE0}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b059334
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{10DC0586-132B-4CAC-8BB3-DB00AC8B7EE0}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05944c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{10DC0586-132B-4CAC-8BB3-DB00AC8B7EE0}\\TypeLib] 1660099895
+#time=1d8ac641b0ba49a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{10E2414A-EC59-49D2-BC51-5ADD2C36FEBC}] 1660099896
+#time=1d8ac641b5df542
+@="IProvideRuntimeContext"
+
+[Software\\Classes\\Interface\\{10E2414A-EC59-49D2-BC51-5ADD2C36FEBC}\\NumMethods] 1660099896
+#time=1d8ac641b5df39e
+@="4"
+
+[Software\\Classes\\Interface\\{10E2414A-EC59-49D2-BC51-5ADD2C36FEBC}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5df5d8
+@="{10E2414A-EC59-49D2-BC51-5ADD2C36FEBC}"
+
+[Software\\Classes\\Interface\\{12337D35-94C6-48A0-BCE7-6A9C69D4D600}] 1660099896
+#time=1d8ac641b30ee58
+@="IApplicationDestinations"
+
+[Software\\Classes\\Interface\\{12337D35-94C6-48A0-BCE7-6A9C69D4D600}\\NumMethods] 1660099896
+#time=1d8ac641b30eda4
+@="6"
+
+[Software\\Classes\\Interface\\{12337D35-94C6-48A0-BCE7-6A9C69D4D600}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30eec6
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{126C5CD8-B288-41D5-8DBF-E491446ADC5C}] 1660099897
+#time=1d8ac641bc71ac2
+@="IDailyTrigger"
+
+[Software\\Classes\\Interface\\{126C5CD8-B288-41D5-8DBF-E491446ADC5C}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc71900
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{126C5CD8-B288-41D5-8DBF-E491446ADC5C}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc71a18
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{126C5CD8-B288-41D5-8DBF-E491446ADC5C}\\TypeLib] 1660099897
+#time=1d8ac641bc71b94
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{1299EB1B-5B88-433E-82DE-82CA75AD4E04}] 1660099895
+#time=1d8ac641b05c494
+@="IVBSAXXMLFilter"
+
+[Software\\Classes\\Interface\\{1299EB1B-5B88-433E-82DE-82CA75AD4E04}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05c2dc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{1299EB1B-5B88-433E-82DE-82CA75AD4E04}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05c3ea
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{1299EB1B-5B88-433E-82DE-82CA75AD4E04}\\TypeLib] 1660099895
+#time=1d8ac641b0bbec6
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{135FF860-22B7-4DDF-B0F6-218F4F299A43}] 1660099897
+#time=1d8ac641bd7f658
+@="IWICStream"
+
+[Software\\Classes\\Interface\\{135FF860-22B7-4DDF-B0F6-218F4F299A43}\\NumMethods] 1660099897
+#time=1d8ac641bd7f54a
+@="18"
+
+[Software\\Classes\\Interface\\{135FF860-22B7-4DDF-B0F6-218F4F299A43}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7f6e4
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{1611FDDA-445B-11D2-85DE-00C04FA35C89}] 1660099895
+#time=1d8ac641b0d777a
+@="_SearchAssistantEvents"
+
+[Software\\Classes\\Interface\\{1611FDDA-445B-11D2-85DE-00C04FA35C89}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d75c2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{1611FDDA-445B-11D2-85DE-00C04FA35C89}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d76d0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{1611FDDA-445B-11D2-85DE-00C04FA35C89}\\TypeLib] 1660099895
+#time=1d8ac641b0d7842
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{163BB1E0-6E00-11CF-837A-48DC04C10000}] 1660099896
+#time=1d8ac641b5b4dc4
+@="IHTMLLocation"
+
+[Software\\Classes\\Interface\\{163BB1E0-6E00-11CF-837A-48DC04C10000}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b4a9a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{163BB1E0-6E00-11CF-837A-48DC04C10000}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b4cca
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{163BB1E0-6E00-11CF-837A-48DC04C10000}\\TypeLib] 1660099896
+#time=1d8ac641b8b7c74
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{174A0DDA-E9F9-449D-993B-21AB667CA456}] 1660099896
+#time=1d8ac641b75a232
+@="INetFwProfile"
+
+[Software\\Classes\\Interface\\{174A0DDA-E9F9-449D-993B-21AB667CA456}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75a02a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{174A0DDA-E9F9-449D-993B-21AB667CA456}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75a156
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{174A0DDA-E9F9-449D-993B-21AB667CA456}\\TypeLib] 1660099896
+#time=1d8ac641b75a2fa
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{174C81FE-AECD-4DAE-B8A0-2C6318DD86A8}] 1660099897
+#time=1d8ac641bea44f2
+@="IWebProxy"
+
+[Software\\Classes\\Interface\\{174C81FE-AECD-4DAE-B8A0-2C6318DD86A8}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea4330
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{174C81FE-AECD-4DAE-B8A0-2C6318DD86A8}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea443e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{174C81FE-AECD-4DAE-B8A0-2C6318DD86A8}\\TypeLib] 1660099897
+#time=1d8ac641bea45b0
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{177160CA-BB5A-411C-841D-BD38FACDEAA0}] 1660099896
+#time=1d8ac641bbc5dda
+@="IShellDispatch3"
+
+[Software\\Classes\\Interface\\{177160CA-BB5A-411C-841D-BD38FACDEAA0}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc5c0e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{177160CA-BB5A-411C-841D-BD38FACDEAA0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc5d26
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{177160CA-BB5A-411C-841D-BD38FACDEAA0}\\TypeLib] 1660099896
+#time=1d8ac641bbc5ea2
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{17D49A3D-F8B8-4B2F-B254-52319DD64C53}] 1660099896
+#time=1d8ac641b88b502
+@="ITfReadOnlyProperty"
+
+[Software\\Classes\\Interface\\{17D49A3D-F8B8-4B2F-B254-52319DD64C53}\\NumMethods] 1660099896
+#time=1d8ac641b88b0ca
+@="7"
+
+[Software\\Classes\\Interface\\{17D49A3D-F8B8-4B2F-B254-52319DD64C53}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88b570
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{19188CB0-ACA9-11D2-AFC5-00105A2799B5}] 1660099896
+#time=1d8ac641b883e92
+@="IEnumTfProperties"
+
+[Software\\Classes\\Interface\\{19188CB0-ACA9-11D2-AFC5-00105A2799B5}\\NumMethods] 1660099896
+#time=1d8ac641b883dde
+@="7"
+
+[Software\\Classes\\Interface\\{19188CB0-ACA9-11D2-AFC5-00105A2799B5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b883f50
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{19C613A0-FCB8-4F28-81AE-897C3D078F81}] 1660099896
+#time=1d8ac641babae68
+@="IBackgroundCopyError"
+
+[Software\\Classes\\Interface\\{19C613A0-FCB8-4F28-81AE-897C3D078F81}\\NumMethods] 1660099896
+#time=1d8ac641babadb4
+@="8"
+
+[Software\\Classes\\Interface\\{19C613A0-FCB8-4F28-81AE-897C3D078F81}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babaecc
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{1A388F98-D4BA-11D1-8B09-00600806D9B6}] 1660099895
+#time=1d8ac641b10263c
+@="ISWbemProperty"
+
+[Software\\Classes\\Interface\\{1A388F98-D4BA-11D1-8B09-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1024a2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{1A388F98-D4BA-11D1-8B09-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b10259c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{1A388F98-D4BA-11D1-8B09-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b1026f0
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{1AC3D9F0-175C-11D1-95BE-00609797EA4F}] 1660099896
+#time=1d8ac641b301744
+@="IPersistFolder2"
+
+[Software\\Classes\\Interface\\{1AC3D9F0-175C-11D1-95BE-00609797EA4F}\\NumMethods] 1660099896
+#time=1d8ac641b301690
+@="6"
+
+[Software\\Classes\\Interface\\{1AC3D9F0-175C-11D1-95BE-00609797EA4F}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30179e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{1AF3A467-214F-4298-908E-06B03E0B39F9}] 1660099896
+#time=1d8ac641b3058ee
+@="IFolderView2"
+
+[Software\\Classes\\Interface\\{1AF3A467-214F-4298-908E-06B03E0B39F9}\\NumMethods] 1660099896
+#time=1d8ac641b305830
+@="42"
+
+[Software\\Classes\\Interface\\{1AF3A467-214F-4298-908E-06B03E0B39F9}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b305948
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{1AF4F612-3B71-466F-8F58-7B6F73AC57AD}] 1660099896
+#time=1d8ac641babb584
+@="IEnumBackgroundCopyJobs"
+
+[Software\\Classes\\Interface\\{1AF4F612-3B71-466F-8F58-7B6F73AC57AD}\\NumMethods] 1660099896
+#time=1d8ac641babb4d0
+@="8"
+
+[Software\\Classes\\Interface\\{1AF4F612-3B71-466F-8F58-7B6F73AC57AD}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babb5de
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{1CF2B120-547D-101B-8E65-08002B2BD119}] 1660099896
+#time=1d8ac641ba380bc
+@="IErrorInfo"
+
+[Software\\Classes\\Interface\\{1CF2B120-547D-101B-8E65-08002B2BD119}\\NumMethods] 1660099896
+#time=1d8ac641ba37f54
+@="8"
+
+[Software\\Classes\\Interface\\{1CF2B120-547D-101B-8E65-08002B2BD119}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba38120
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{1CFF0050-6FDD-11D0-9328-00A0C90DCAA9}] 1660099896
+#time=1d8ac641b2f3b76
+@="IActiveScriptParseProcedureOld32"
+
+[Software\\Classes\\Interface\\{1CFF0050-6FDD-11D0-9328-00A0C90DCAA9}\\NumMethods] 1660099896
+#time=1d8ac641b2f3a72
+@="4"
+
+[Software\\Classes\\Interface\\{1CFF0050-6FDD-11D0-9328-00A0C90DCAA9}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f3bf8
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{1DF0D7F1-B267-4D28-8B10-12E23202A5C4}] 1660099896
+#time=1d8ac641b310b40
+@="IItemNameLimits"
+
+[Software\\Classes\\Interface\\{1DF0D7F1-B267-4D28-8B10-12E23202A5C4}\\NumMethods] 1660099896
+#time=1d8ac641b310a82
+@="5"
+
+[Software\\Classes\\Interface\\{1DF0D7F1-B267-4D28-8B10-12E23202A5C4}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b310b9a
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{1F8352C0-50B0-11CF-960C-0080C7F4EE85}] 1660099896
+#time=1d8ac641bbc2680
+@="FolderItemVerbs"
+
+[Software\\Classes\\Interface\\{1F8352C0-50B0-11CF-960C-0080C7F4EE85}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc2478
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{1F8352C0-50B0-11CF-960C-0080C7F4EE85}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc25ae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{1F8352C0-50B0-11CF-960C-0080C7F4EE85}\\TypeLib] 1660099896
+#time=1d8ac641bbc27a2
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{1FF6AA72-5842-11CF-A707-00AA00C0098D}] 1660099896
+#time=1d8ac641b8e1dc6
+@="HTMLTextContainerEvents"
+
+[Software\\Classes\\Interface\\{1FF6AA72-5842-11CF-A707-00AA00C0098D}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e1c2c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{1FF6AA72-5842-11CF-A707-00AA00C0098D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e1d26
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{1FF6AA72-5842-11CF-A707-00AA00C0098D}\\TypeLib] 1660099896
+#time=1d8ac641b8e1e7a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{20168D64-5A8F-4A5A-B7BD-CFA29F4D0FD9}] 1660099896
+#time=1d8ac641b889c70
+@="ITfComposition"
+
+[Software\\Classes\\Interface\\{20168D64-5A8F-4A5A-B7BD-CFA29F4D0FD9}\\NumMethods] 1660099896
+#time=1d8ac641b889bb2
+@="7"
+
+[Software\\Classes\\Interface\\{20168D64-5A8F-4A5A-B7BD-CFA29F4D0FD9}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b889cd4
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{21F57128-08C9-4638-BA12-22D15D88DC5C}] 1660099896
+#time=1d8ac641b2f3fe0
+@="IActiveScriptParseProcedureOld64"
+
+[Software\\Classes\\Interface\\{21F57128-08C9-4638-BA12-22D15D88DC5C}\\NumMethods] 1660099896
+#time=1d8ac641b2f3f22
+@="4"
+
+[Software\\Classes\\Interface\\{21F57128-08C9-4638-BA12-22D15D88DC5C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f4044
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{2206CCB2-19C1-11D1-89E0-00C04FD7A829}] 1660099895
+#time=1d8ac641b144852
+@="IDataSourceLocator"
+
+[Software\\Classes\\Interface\\{2206CCB2-19C1-11D1-89E0-00C04FD7A829}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b14309c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2206CCB2-19C1-11D1-89E0-00C04FD7A829}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b14441a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2206CCB2-19C1-11D1-89E0-00C04FD7A829}\\TypeLib] 1660099895
+#time=1d8ac641b1458e2
+@="{2206CEB0-19C1-11D1-89E0-00C04FD7A829}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{22F03340-547D-101B-8E65-08002B2BD119}] 1660099896
+#time=1d8ac641ba3845e
+@="ICreateErrorInfo"
+
+[Software\\Classes\\Interface\\{22F03340-547D-101B-8E65-08002B2BD119}\\NumMethods] 1660099896
+#time=1d8ac641ba38378
+@="8"
+
+[Software\\Classes\\Interface\\{22F03340-547D-101B-8E65-08002B2BD119}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba384c2
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{22F55881-280B-11D0-A8A9-00A0C90C2004}] 1660099896
+#time=1d8ac641ba3f6aa
+@="IPersistPropertyBag2"
+
+[Software\\Classes\\Interface\\{22F55881-280B-11D0-A8A9-00A0C90C2004}\\NumMethods] 1660099896
+#time=1d8ac641ba3f5f6
+@="8"
+
+[Software\\Classes\\Interface\\{22F55881-280B-11D0-A8A9-00A0C90C2004}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3f704
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{22F55882-280B-11D0-A8A9-00A0C90C2004}] 1660099896
+#time=1d8ac641ba3f330
+@="IPropertyBag2"
+
+[Software\\Classes\\Interface\\{22F55882-280B-11D0-A8A9-00A0C90C2004}\\NumMethods] 1660099896
+#time=1d8ac641ba3f272
+@="8"
+
+[Software\\Classes\\Interface\\{22F55882-280B-11D0-A8A9-00A0C90C2004}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3f38a
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{23BC3F0A-698B-4357-886B-F24D50671334}] 1660099897
+#time=1d8ac641bd7a324
+@="IWICComponentInfo"
+
+[Software\\Classes\\Interface\\{23BC3F0A-698B-4357-886B-F24D50671334}\\NumMethods] 1660099897
+#time=1d8ac641bd7a234
+@="11"
+
+[Software\\Classes\\Interface\\{23BC3F0A-698B-4357-886B-F24D50671334}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7a3a6
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{2433BF8E-0F9B-435C-BA2C-180611978C30}] 1660099896
+#time=1d8ac641b88385c
+@="ITfContextView"
+
+[Software\\Classes\\Interface\\{2433BF8E-0F9B-435C-BA2C-180611978C30}\\NumMethods] 1660099896
+#time=1d8ac641b8837bc
+@="7"
+
+[Software\\Classes\\Interface\\{2433BF8E-0F9B-435C-BA2C-180611978C30}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8838b6
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{24BE5A30-EDFE-11D2-B933-00104B365C9F}] 1660099897
+#time=1d8ac641be837d4
+@="IWshShell2"
+
+[Software\\Classes\\Interface\\{24BE5A30-EDFE-11D2-B933-00104B365C9F}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be835fe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{24BE5A30-EDFE-11D2-B933-00104B365C9F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be83720
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{24BE5A30-EDFE-11D2-B933-00104B365C9F}\\TypeLib] 1660099897
+#time=1d8ac641be838a6
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{24BE5A31-EDFE-11D2-B933-00104B365C9F}] 1660099897
+#time=1d8ac641be84418
+@="IWshNetwork2"
+
+[Software\\Classes\\Interface\\{24BE5A31-EDFE-11D2-B933-00104B365C9F}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be83ffe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{24BE5A31-EDFE-11D2-B933-00104B365C9F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be84328
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{24BE5A31-EDFE-11D2-B933-00104B365C9F}\\TypeLib] 1660099897
+#time=1d8ac641be844fe
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{24FB3297-302D-4620-BA39-3A732D850558}] 1660099895
+#time=1d8ac641b05aca2
+@="IVBSAXDTDHandler"
+
+[Software\\Classes\\Interface\\{24FB3297-302D-4620-BA39-3A732D850558}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05aae0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{24FB3297-302D-4620-BA39-3A732D850558}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05abee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{24FB3297-302D-4620-BA39-3A732D850558}\\TypeLib] 1660099895
+#time=1d8ac641b0bb0b6
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2659B475-EEB8-48B7-8F07-B378810F48CF}] 1660099896
+#time=1d8ac641b3043ea
+@="IShellItemFilter"
+
+[Software\\Classes\\Interface\\{2659B475-EEB8-48B7-8F07-B378810F48CF}\\NumMethods] 1660099896
+#time=1d8ac641b304322
+@="5"
+
+[Software\\Classes\\Interface\\{2659B475-EEB8-48B7-8F07-B378810F48CF}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30444e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{269316D8-57BD-11D2-9EEE-00C04F797396}] 1660099895
+#time=1d8ac641b0ebad6
+@="ISpeechVoice"
+
+[Software\\Classes\\Interface\\{269316D8-57BD-11D2-9EEE-00C04F797396}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0eb91e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{269316D8-57BD-11D2-9EEE-00C04F797396}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0eba2c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{269316D8-57BD-11D2-9EEE-00C04F797396}\\TypeLib] 1660099895
+#time=1d8ac641b0ebb9e
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{26EE67BD-5804-11D2-8B4A-00600806D9B6}] 1660099895
+#time=1d8ac641b1006a2
+@="ISWbemPrivilege"
+
+[Software\\Classes\\Interface\\{26EE67BD-5804-11D2-8B4A-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b100508
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{26EE67BD-5804-11D2-8B4A-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b100602
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{26EE67BD-5804-11D2-8B4A-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b100756
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{26EE67BF-5804-11D2-8B4A-00600806D9B6}] 1660099895
+#time=1d8ac641b100af8
+@="ISWbemPrivilegeSet"
+
+[Software\\Classes\\Interface\\{26EE67BF-5804-11D2-8B4A-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b10095e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{26EE67BF-5804-11D2-8B4A-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b100a58
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{26EE67BF-5804-11D2-8B4A-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b100bca
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{27636B00-410F-11CF-B1FF-02608C9E7553}] 1660099896
+#time=1d8ac641b2eea86
+@="IADsGroup"
+
+[Software\\Classes\\Interface\\{27636B00-410F-11CF-B1FF-02608C9E7553}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b2ee8ba
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{27636B00-410F-11CF-B1FF-02608C9E7553}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2ee9d2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{27636B00-410F-11CF-B1FF-02608C9E7553}\\TypeLib] 1660099896
+#time=1d8ac641b2eeb4e
+@="{97D25DB0-0363-11CF-ABC4-02608C9E7553}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{27864A2A-2B9F-4CB8-92D3-0D2722FD1E73}] 1660099895
+#time=1d8ac641b0ef654
+@="ISpeechPhraseAlternate"
+
+[Software\\Classes\\Interface\\{27864A2A-2B9F-4CB8-92D3-0D2722FD1E73}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ef492
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{27864A2A-2B9F-4CB8-92D3-0D2722FD1E73}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ef5a0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{27864A2A-2B9F-4CB8-92D3-0D2722FD1E73}\\TypeLib] 1660099895
+#time=1d8ac641b0ef712
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{27D54D92-0EBE-11D2-8B22-00600806D9B6}] 1660099895
+#time=1d8ac641b103c12
+@="ISWbemEventSource"
+
+[Software\\Classes\\Interface\\{27D54D92-0EBE-11D2-8B22-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b103a78
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{27D54D92-0EBE-11D2-8B22-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b103b72
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{27D54D92-0EBE-11D2-8B22-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b103cc6
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{286E6F1B-7113-4355-9562-96B7E9D64C54}] 1660099896
+#time=1d8ac641bbc6c80
+@="IShellDispatch6"
+
+[Software\\Classes\\Interface\\{286E6F1B-7113-4355-9562-96B7E9D64C54}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc6aa0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{286E6F1B-7113-4355-9562-96B7E9D64C54}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc6bd6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{286E6F1B-7113-4355-9562-96B7E9D64C54}\\TypeLib] 1660099896
+#time=1d8ac641bbc6d48
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{2890A410-53A7-4FB5-94EC-06D4998E3D02}] 1660099895
+#time=1d8ac641b0ee7e0
+@="ISpeechPhraseReplacement"
+
+[Software\\Classes\\Interface\\{2890A410-53A7-4FB5-94EC-06D4998E3D02}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ee614
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2890A410-53A7-4FB5-94EC-06D4998E3D02}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ee72c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2890A410-53A7-4FB5-94EC-06D4998E3D02}\\TypeLib] 1660099895
+#time=1d8ac641b0ee8e4
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{2933BF80-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b02b07e
+@="IXMLDOMNode"
+
+[Software\\Classes\\Interface\\{2933BF80-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b02a9da
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF80-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b02afca
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF80-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b57a6
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF81-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b02a6e2
+@="IXMLDOMDocument"
+
+[Software\\Classes\\Interface\\{2933BF81-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b02a50c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF81-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b02a62e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF81-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b4f4a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF82-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b0253ae
+@="IXMLDOMNodeList"
+
+[Software\\Classes\\Interface\\{2933BF82-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0251ec
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF82-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b025304
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF82-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0af13a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF83-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b02587c
+@="IXMLDOMNamedNodeMap"
+
+[Software\\Classes\\Interface\\{2933BF83-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0256b0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF83-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0257c8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF83-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0af68a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF84-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b02832e
+@="IXMLDOMCharacterData"
+
+[Software\\Classes\\Interface\\{2933BF84-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b028162
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF84-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b02827a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF84-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b1f34
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF85-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b0274ce
+@="IXMLDOMAttribute"
+
+[Software\\Classes\\Interface\\{2933BF85-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0272d0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF85-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0273e8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF85-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b0ac6
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF86-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b027992
+@="IXMLDOMElement"
+
+[Software\\Classes\\Interface\\{2933BF86-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0277d0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF86-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0278e8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF86-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b1228
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF87-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b028806
+@="IXMLDOMText"
+
+[Software\\Classes\\Interface\\{2933BF87-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b028644
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF87-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b028752
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF87-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b24b6
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF88-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b028e96
+@="IXMLDOMComment"
+
+[Software\\Classes\\Interface\\{2933BF88-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b028cb6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF88-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b028dc4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF88-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b2a42
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF89-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b029878
+@="IXMLDOMProcessingInstruction"
+
+[Software\\Classes\\Interface\\{2933BF89-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0296ac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF89-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0297c4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF89-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b4036
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF8A-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b029350
+@="IXMLDOMCDATASection"
+
+[Software\\Classes\\Interface\\{2933BF8A-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b02918e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8A-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0292a6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8A-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b2f6a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF8B-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b025d40
+@="IXMLDOMDocumentType"
+
+[Software\\Classes\\Interface\\{2933BF8B-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b025b7e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8B-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b025c8c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8B-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b00a8
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF8C-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b02b54c
+@="IXMLDOMNotation"
+
+[Software\\Classes\\Interface\\{2933BF8C-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b02b394
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8C-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b02b4a2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8C-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b5cce
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF8D-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b02b9fc
+@="IXMLDOMEntity"
+
+[Software\\Classes\\Interface\\{2933BF8D-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b02b844
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8D-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b02b952
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8D-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b61ce
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF8E-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b029d46
+@="IXMLDOMEntityReference"
+
+[Software\\Classes\\Interface\\{2933BF8E-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b029b84
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8E-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b029c92
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8E-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b454a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF8F-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b024eea
+@="IXMLDOMImplementation"
+
+[Software\\Classes\\Interface\\{2933BF8F-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b024d1e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8F-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b024e36
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF8F-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0b05bc
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF92-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b03c95a
+@="IXSLProcessor"
+
+[Software\\Classes\\Interface\\{2933BF92-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b03c608
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF92-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b03c72a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF92-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0c51ec
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF93-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b03cebe
+@="IXSLTemplate"
+
+[Software\\Classes\\Interface\\{2933BF93-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b03ccde
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF93-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b03ce00
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF93-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0c562e
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF95-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b03b0a0
+@="IXMLDOMDocument2"
+
+[Software\\Classes\\Interface\\{2933BF95-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b03aec0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF95-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b03afe2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF95-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0c2258
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2933BF96-7B36-11D2-B20E-00C04F983E60}] 1660099895
+#time=1d8ac641b062538
+@="IXMLDOMDocument3"
+
+[Software\\Classes\\Interface\\{2933BF96-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b062376
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF96-7B36-11D2-B20E-00C04F983E60}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b062484
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2933BF96-7B36-11D2-B20E-00C04F983E60}\\TypeLib] 1660099895
+#time=1d8ac641b0c2816
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{29840822-5B84-11D0-BD3B-00A0C911CE86}] 1660099896
+#time=1d8ac641bac4dd2
+@="ICreateDevEnum"
+
+[Software\\Classes\\Interface\\{29840822-5B84-11D0-BD3B-00A0C911CE86}\\NumMethods] 1660099896
+#time=1d8ac641bac4d14
+@="4"
+
+[Software\\Classes\\Interface\\{29840822-5B84-11D0-BD3B-00A0C911CE86}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac4e4a
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{29EC8E6C-46D3-411F-BAAA-611A6C9CAC66}] 1660099896
+#time=1d8ac641bbc7b76
+@="IShellFolderViewDual3"
+
+[Software\\Classes\\Interface\\{29EC8E6C-46D3-411F-BAAA-611A6C9CAC66}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc79a0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{29EC8E6C-46D3-411F-BAAA-611A6C9CAC66}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc7ab8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{29EC8E6C-46D3-411F-BAAA-611A6C9CAC66}\\TypeLib] 1660099896
+#time=1d8ac641bbc7c5c
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{2A0B9D10-4B87-11D3-A97A-00104B365C9F}] 1660099896
+#time=1d8ac641bb56a84
+@="IFileSystem3"
+
+[Software\\Classes\\Interface\\{2A0B9D10-4B87-11D3-A97A-00104B365C9F}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb568a4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2A0B9D10-4B87-11D3-A97A-00104B365C9F}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb569d0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2A0B9D10-4B87-11D3-A97A-00104B365C9F}\\TypeLib] 1660099896
+#time=1d8ac641bb56b60
+@="{420B2830-E718-11CF-893D-00A0C9054228}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{2D5F1C0C-BD75-4B08-9478-3B11FEA2586C}] 1660099895
+#time=1d8ac641b0f0f04
+@="ISpeechRecognizer"
+
+[Software\\Classes\\Interface\\{2D5F1C0C-BD75-4B08-9478-3B11FEA2586C}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0f0d06
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2D5F1C0C-BD75-4B08-9478-3B11FEA2586C}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0f0e3c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2D5F1C0C-BD75-4B08-9478-3B11FEA2586C}\\TypeLib] 1660099895
+#time=1d8ac641b0f0ffe
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{2DE0A190-A1A4-11D1-B382-00A0C911E8B2}] 1660099896
+#time=1d8ac641bb4b648
+@="IGenScriptletTLib"
+
+[Software\\Classes\\Interface\\{2DE0A190-A1A4-11D1-B382-00A0C911E8B2}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb4b12a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2DE0A190-A1A4-11D1-B382-00A0C911E8B2}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb4b56c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2DE0A190-A1A4-11D1-B382-00A0C911E8B2}\\TypeLib] 1660099896
+#time=1d8ac641bb4b77e
+@="{06290C00-48AA-11D2-8432-006008C3FBFC}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{2E01311B-C322-4B0A-BD77-B90CFDC8DCE7}] 1660099895
+#time=1d8ac641b0642e8
+@="IServerXMLHTTPRequest2"
+
+[Software\\Classes\\Interface\\{2E01311B-C322-4B0A-BD77-B90CFDC8DCE7}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b06411c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2E01311B-C322-4B0A-BD77-B90CFDC8DCE7}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b06422a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2E01311B-C322-4B0A-BD77-B90CFDC8DCE7}\\TypeLib] 1660099895
+#time=1d8ac641b0c62fe
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2E9196BF-13BA-4DD4-91CA-6C571F281495}] 1660099895
+#time=1d8ac641b063e2e
+@="IServerXMLHTTPRequest"
+
+[Software\\Classes\\Interface\\{2E9196BF-13BA-4DD4-91CA-6C571F281495}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b063c6c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2E9196BF-13BA-4DD4-91CA-6C571F281495}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b063d84
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2E9196BF-13BA-4DD4-91CA-6C571F281495}\\TypeLib] 1660099895
+#time=1d8ac641b0c5ebc
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2E941141-7F97-4756-BA1D-9DECDE894A3D}] 1660099896
+#time=1d8ac641b310ef6
+@="IApplicationActivationManager"
+
+[Software\\Classes\\Interface\\{2E941141-7F97-4756-BA1D-9DECDE894A3D}\\NumMethods] 1660099896
+#time=1d8ac641b310dfc
+@="6"
+
+[Software\\Classes\\Interface\\{2E941141-7F97-4756-BA1D-9DECDE894A3D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b310f6e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{2ED7290A-4DD5-4B46-BB26-4E4155E77FAA}] 1660099895
+#time=1d8ac641b05a310
+@="IVBSAXContentHandler"
+
+[Software\\Classes\\Interface\\{2ED7290A-4DD5-4B46-BB26-4E4155E77FAA}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05a14e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2ED7290A-4DD5-4B46-BB26-4E4155E77FAA}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05a25c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2ED7290A-4DD5-4B46-BB26-4E4155E77FAA}\\TypeLib] 1660099895
+#time=1d8ac641b0babca
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{2EE48F22-AF3C-405F-8970-F71BE12EE9A2}] 1660099897
+#time=1d8ac641bea3b38
+@="IAutomaticUpdatesSettings"
+
+[Software\\Classes\\Interface\\{2EE48F22-AF3C-405F-8970-F71BE12EE9A2}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea3976
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2EE48F22-AF3C-405F-8970-F71BE12EE9A2}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea3a8e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2EE48F22-AF3C-405F-8970-F71BE12EE9A2}\\TypeLib] 1660099897
+#time=1d8ac641bea3c0a
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{2FABA4C7-4DA9-4013-9697-20CC3FD40F85}] 1660099897
+#time=1d8ac641bc6c202
+@="ITaskService"
+
+[Software\\Classes\\Interface\\{2FABA4C7-4DA9-4013-9697-20CC3FD40F85}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc6c040
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2FABA4C7-4DA9-4013-9697-20CC3FD40F85}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc6c158
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{2FABA4C7-4DA9-4013-9697-20CC3FD40F85}\\TypeLib] 1660099897
+#time=1d8ac641bc6c374
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3050F1D8-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e1038
+@="IHTMLBodyElement"
+
+[Software\\Classes\\Interface\\{3050F1D8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e0e94
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F1D8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e0f8e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F1D8-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e10f6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F1DA-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e2a8c
+@="IHTMLAnchorElement"
+
+[Software\\Classes\\Interface\\{3050F1DA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e287a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F1DA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e29d8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F1DA-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e2b68
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F1F7-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5bdd8e
+@="IHTMLFormElement"
+
+[Software\\Classes\\Interface\\{3050F1F7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5bd460
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F1F7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5bdc80
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F1F7-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8bad8e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F1FF-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5b3960
+@="IHTMLElement"
+
+[Software\\Classes\\Interface\\{3050F1FF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b3726
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F1FF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b3870
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F1FF-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8b6518
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F200-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b910310
+@="IHTMLDivElement"
+
+[Software\\Classes\\Interface\\{3050F200-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b91014e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F200-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b91025c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F200-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9103d8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F203-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8efc6e
+@="IHTMLMetaElement"
+
+[Software\\Classes\\Interface\\{3050F203-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8efa70
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F203-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8efb88
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F203-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8efd36
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F205-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8dc114
+@="IHTMLLinkElement"
+
+[Software\\Classes\\Interface\\{3050F205-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8dbf66
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F205-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8dc06a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F205-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dc1dc
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F20C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b9087c8
+@="IHTMLCommentElement"
+
+[Software\\Classes\\Interface\\{3050F20C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9085f2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F20C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b908714
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F20C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b908890
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F211-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5be36a
+@="IHTMLOptionElement"
+
+[Software\\Classes\\Interface\\{3050F211-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5be16c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F211-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5be2a2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F211-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8bb2de
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F21E-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90a898
+@="IHTMLTable"
+
+[Software\\Classes\\Interface\\{3050F21E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90a69a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F21E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90a7d0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F21E-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90a974
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F21F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5b2876
+@="IHTMLElementCollection"
+
+[Software\\Classes\\Interface\\{3050F21F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b26a0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F21F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b27b8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F21F-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8b6e6e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F220-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8dd82a
+@="IHTMLTxtRange"
+
+[Software\\Classes\\Interface\\{3050F220-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8dd686
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F220-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8dd78a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F220-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dd8e8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F230-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8df012
+@="IHTMLTextContainer"
+
+[Software\\Classes\\Interface\\{3050F230-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8dee6e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F230-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8def72
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F230-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8df0d0
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F23B-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c49c4
+@="IHTMLTableSection"
+
+[Software\\Classes\\Interface\\{3050F23B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c4816
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F23B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c4924
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F23B-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c4a8c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F23C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90c7e2
+@="IHTMLTableRow"
+
+[Software\\Classes\\Interface\\{3050F23C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90c2a6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F23C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90c3be
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F23C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90c936
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F23D-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90ce54
+@="IHTMLTableCell"
+
+[Software\\Classes\\Interface\\{3050F23D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90cc7e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F23D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90cdaa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F23D-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90cf1c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F240-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5b533c
+@="IHTMLImgElement"
+
+[Software\\Classes\\Interface\\{3050F240-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b513e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F240-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b5274
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F240-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8b811a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F244-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e84b4
+@="IHTMLSelectElement"
+
+[Software\\Classes\\Interface\\{3050F244-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e8298
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F244-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e83ec
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F244-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e859a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F24F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90f938
+@="IHTMLObjectElement"
+
+[Software\\Classes\\Interface\\{3050F24F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90f690
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F24F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90f82a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F24F-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90fa0a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F25A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5b4040
+@="IHTMLSelectionObject"
+
+[Software\\Classes\\Interface\\{3050F25A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b3e60
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F25A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b3f82
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F25A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8b730a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F25E-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5b2d62
+@="IHTMLStyle"
+
+[Software\\Classes\\Interface\\{3050F25E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b2b82
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F25E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b2c90
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F25E-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8b5ba4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F25F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b907cba
+@="IHTMLEmbedElement"
+
+[Software\\Classes\\Interface\\{3050F25F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b907ad0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F25F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b907bfc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F25F-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b907d96
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F260-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b902a62
+@="HTMLDocumentEvents"
+
+[Software\\Classes\\Interface\\{3050F260-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9028a0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F260-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9029b8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F260-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b902b2a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F265-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e4846
+@="IHTMLAreaElement"
+
+[Software\\Classes\\Interface\\{3050F265-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e460c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F265-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e4738
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F265-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e4a62
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F28B-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90dff2
+@="IHTMLScriptElement"
+
+[Software\\Classes\\Interface\\{3050F28B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90de08
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F28B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90df48
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F28B-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90e0ba
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F2A6-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8eb574
+@="IHTMLInputTextElement"
+
+[Software\\Classes\\Interface\\{3050F2A6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8eb394
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2A6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8eb4c0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2A6-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8eb65a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F2AA-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ec8d4
+@="IHTMLTextAreaElement"
+
+[Software\\Classes\\Interface\\{3050F2AA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ec424
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2AA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ec820
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2AA-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ecc26
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F2BB-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ed676
+@="IHTMLButtonElement"
+
+[Software\\Classes\\Interface\\{3050F2BB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ed464
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2BB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ed586
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2BB-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ed75c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F2D2-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ebaba
+@="IHTMLInputTextElement2"
+
+[Software\\Classes\\Interface\\{3050F2D2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8eb8c6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2D2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8eb9f2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2D2-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ebbb4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F2E3-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5c1402
+@="IHTMLStyleSheet"
+
+[Software\\Classes\\Interface\\{3050F2E3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5c1204
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2E3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5c1344
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2E3-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c073e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F2E5-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5c0eb2
+@="IHTMLStyleSheetRulesCollection"
+
+[Software\\Classes\\Interface\\{3050F2E5-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5c0c96
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2E5-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5c0df4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2E5-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c02de
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F2EB-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90a32a
+@="IHTMLTableCaption"
+
+[Software\\Classes\\Interface\\{3050F2EB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90a12c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2EB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90a24e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F2EB-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90a406
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F311-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c40be
+@="IHTMLFrameBase"
+
+[Software\\Classes\\Interface\\{3050F311-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c3f1a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F311-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c4014
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F311-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c4186
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F315-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b915194
+@="IHTMLIFrameElement"
+
+[Software\\Classes\\Interface\\{3050F315-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b914fb4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F315-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9150cc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F315-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b915266
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F322-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ef6c4
+@="IHTMLTitleElement"
+
+[Software\\Classes\\Interface\\{3050F322-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ef4da
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F322-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ef610
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F322-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ef796
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F32A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e6b46
+@="IHTMLLabelElement"
+
+[Software\\Classes\\Interface\\{3050F32A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e666e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F32A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e6a56
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F32A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e6c5e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F32D-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5bc4fc
+@="IHTMLEventObj"
+
+[Software\\Classes\\Interface\\{3050F32D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5bc2ae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F32D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5bc402
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F32D-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ba1d6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F33A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8cd6d2
+@="IHTMLStyle5"
+
+[Software\\Classes\\Interface\\{3050F33A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cd4fc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F33A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cd628
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F33A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8cd79a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F33B-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8cf4b4
+@="IHTMLCurrentStyle4"
+
+[Software\\Classes\\Interface\\{3050F33B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cf31a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F33B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cf414
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F33B-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8cf5b8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F33C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d8dde
+@="HTMLElementEvents"
+
+[Software\\Classes\\Interface\\{3050F33C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d8c3a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F33C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d8d3e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F33C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d8e9c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F357-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5c0412
+@="IHTMLStyleSheetRule"
+
+[Software\\Classes\\Interface\\{3050F357-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5c0246
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F357-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5c035e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F357-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8bfe7e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F35C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5bcaec
+@="IHTMLScreen"
+
+[Software\\Classes\\Interface\\{3050F35C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5bc88a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F35C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5bca2e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F35C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ba686
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F35F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b2ff994
+@="ITimerService"
+
+[Software\\Classes\\Interface\\{3050F35F-98B5-11CF-BB82-00AA00BDCE0B}\\NumMethods] 1660099896
+#time=1d8ac641b2ff8e0
+@="6"
+
+[Software\\Classes\\Interface\\{3050F35F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2ff9ee
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{3050F360-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b2ff656
+@="ITimer"
+
+[Software\\Classes\\Interface\\{3050F360-98B5-11CF-BB82-00AA00BDCE0B}\\NumMethods] 1660099896
+#time=1d8ac641b2ff5a2
+@="7"
+
+[Software\\Classes\\Interface\\{3050F360-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2ff6b0
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{3050F361-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b2ff2e6
+@="ITimerSink"
+
+[Software\\Classes\\Interface\\{3050F361-98B5-11CF-BB82-00AA00BDCE0B}\\NumMethods] 1660099896
+#time=1d8ac641b2ff232
+@="4"
+
+[Software\\Classes\\Interface\\{3050F361-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2ff340
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{3050F364-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8de6d0
+@="HTMLFormElementEvents"
+
+[Software\\Classes\\Interface\\{3050F364-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8de504
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F364-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8de626
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F364-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8de784
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F375-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b9166ca
+@="IHTMLStyleElement"
+
+[Software\\Classes\\Interface\\{3050F375-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9164e0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F375-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b916616
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F375-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9167b0
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F37E-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5bf9ae
+@="IHTMLStyleSheetsCollection"
+
+[Software\\Classes\\Interface\\{3050F37E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5bf7c4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F37E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5bf8e6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F37E-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8bf5d2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F38C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5be8c4
+@="IHTMLOptionElementFactory"
+
+[Software\\Classes\\Interface\\{3050F38C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5be6e4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F38C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5be810
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F38C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8be970
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F38E-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5b6750
+@="IHTMLImageElementFactory"
+
+[Software\\Classes\\Interface\\{3050F38E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b56ca
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F38E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b65e8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F38E-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8b85c0
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F3CF-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5bfef4
+@="IHTMLRuleStyle"
+
+[Software\\Classes\\Interface\\{3050F3CF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5bfd14
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3CF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5bfe36
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3CF-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8bfa28
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F3D1-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8db37c
+@="IHTMLStyleSheet2"
+
+[Software\\Classes\\Interface\\{3050F3D1-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8db1d8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3D1-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8db2dc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3D1-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8db43a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F3DB-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c37f4
+@="IHTMLCurrentStyle"
+
+[Software\\Classes\\Interface\\{3050F3DB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c3650
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3DB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c3754
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3DB-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c38a8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F3EE-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5b32e4
+@="IHTMLFiltersCollection"
+
+[Software\\Classes\\Interface\\{3050F3EE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b3118
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3EE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b3230
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3EE-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8b605e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F3F2-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d7f38
+@="IHTMLDatabinding"
+
+[Software\\Classes\\Interface\\{3050F3F2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d7d94
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3F2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d7e98
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3F2-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d7ff6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F3FC-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5b9d88
+@="IHTMLMimeTypesCollection"
+
+[Software\\Classes\\Interface\\{3050F3FC-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b9af4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3FC-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b9c7a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3FC-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8b8f20
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F3FD-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5baf58
+@="IHTMLPluginsCollection"
+
+[Software\\Classes\\Interface\\{3050F3FD-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5ba184
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3FD-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5ba31e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F3FD-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8b93da
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F401-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b5bb91c
+@="IHTMLOpsProfile"
+
+[Software\\Classes\\Interface\\{3050F401-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5bb70a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F401-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5bb84a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F401-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8b9880
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F407-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b9098b2
+@="HTMLTableEvents"
+
+[Software\\Classes\\Interface\\{3050F407-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9096dc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F407-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9097fe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F407-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b909984
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F434-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c3c5e
+@="IHTMLElement2"
+
+[Software\\Classes\\Interface\\{3050F434-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c3ac4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F434-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c3bbe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F434-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c3d08
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F485-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b903e4e
+@="IHTMLDocument3"
+
+[Software\\Classes\\Interface\\{3050F485-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b903c82
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F485-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b903d9a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F485-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b903f16
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4A2-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8cb76a
+@="IHTMLStyle2"
+
+[Software\\Classes\\Interface\\{3050F4A2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cb5a8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4A2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cb6b6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4A2-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8cb832
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4A3-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c1864
+@="IHTMLRect"
+
+[Software\\Classes\\Interface\\{3050F4A3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c16ac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4A3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c17a6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4A3-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c1918
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4A4-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c13fa
+@="IHTMLRectCollection"
+
+[Software\\Classes\\Interface\\{3050F4A4-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c1260
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4A4-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c135a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4A4-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c14ae
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4AD-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90b22a
+@="IHTMLTable2"
+
+[Software\\Classes\\Interface\\{3050F4AD-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90b036
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4AD-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90b176
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4AD-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90b32e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4AE-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c5482
+@="IHTMLWindow3"
+
+[Software\\Classes\\Interface\\{3050F4AE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c52e8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4AE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c53e2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4AE-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c5540
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4B0-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c2660
+@="IHTMLDOMAttribute"
+
+[Software\\Classes\\Interface\\{3050F4B0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c2480
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4B0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c25ac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4B0-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c2714
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4B1-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d0666
+@="IHTMLDOMTextNode"
+
+[Software\\Classes\\Interface\\{3050F4B1-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d04cc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4B1-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d05c6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4B1-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d0710
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4B3-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c4f3c
+@="IHTMLDataTransfer"
+
+[Software\\Classes\\Interface\\{3050F4B3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c4c80
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4B3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c4d7a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4B3-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c5018
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4B7-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d83ca
+@="IHTMLGenericElement"
+
+[Software\\Classes\\Interface\\{3050F4B7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d8226
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4B7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d832a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4B7-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d8488
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4C3-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d31cc
+@="IHTMLAttributeCollection"
+
+[Software\\Classes\\Interface\\{3050F4C3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d3032
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4C3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d312c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4C3-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d3276
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4CD-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90fe24
+@="IHTMLObjectElement2"
+
+[Software\\Classes\\Interface\\{3050F4CD-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90fc62
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4CD-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90fd7a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4CD-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90feec
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4CE-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90012c
+@="IHTMLBookmarkCollection"
+
+[Software\\Classes\\Interface\\{3050F4CE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fff60
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4CE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b900078
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4CE-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9001f4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4D0-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d7ab0
+@="IHTMLUniqueName"
+
+[Software\\Classes\\Interface\\{3050F4D0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d78f8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4D0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d7a10
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4D0-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d7b6e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4E5-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8dc5c4
+@="IHTMLLinkElement2"
+
+[Software\\Classes\\Interface\\{3050F4E5-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8dc420
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4E5-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8dc524
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4E5-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dc68c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4E6-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b915702
+@="IHTMLIFrameElement2"
+
+[Software\\Classes\\Interface\\{3050F4E6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b915518
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4E6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b91564e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4E6-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9157de
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F4E9-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8df97c
+@="IHTMLControlElement"
+
+[Software\\Classes\\Interface\\{3050F4E9-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8df7ce
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4E9-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8df8d2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F4E9-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dfa30
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F502-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e2ff0
+@="DispHTMLAnchorElement"
+
+[Software\\Classes\\Interface\\{3050F502-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e2df2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F502-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e2f1e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F502-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e30cc
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F503-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e4fb2
+@="DispHTMLAreaElement"
+
+[Software\\Classes\\Interface\\{3050F503-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e4da0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F503-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e4eea
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F503-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e62cc
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F507-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e1952
+@="DispHTMLBody"
+
+[Software\\Classes\\Interface\\{3050F507-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e17b8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F507-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e18b2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F507-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e1a24
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F50A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90929a
+@="DispHTMLCommentElement"
+
+[Software\\Classes\\Interface\\{3050F50A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9090b0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F50A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9091c8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F50A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9093a8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F50C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b910a90
+@="DispHTMLDivElement"
+
+[Software\\Classes\\Interface\\{3050F50C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9108ce
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F50C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9109e6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F50C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b910b80
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F50E-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d96ee
+@="DispHTMLStyleSheetRule"
+
+[Software\\Classes\\Interface\\{3050F50E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d954a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F50E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d964e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F50E-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d97b6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F510-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8de1ee
+@="DispHTMLFormElement"
+
+[Software\\Classes\\Interface\\{3050F510-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8de04a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F510-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8de14e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F510-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8de2de
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F511-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b916f76
+@="DispHTMLStyleElement"
+
+[Software\\Classes\\Interface\\{3050F511-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b916d6e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F511-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b916eb8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F511-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b917052
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F513-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b914c44
+@="DispHTMLFrameElement"
+
+[Software\\Classes\\Interface\\{3050F513-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b914a0a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F513-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b914b72
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F513-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b914d20
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F516-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f1816
+@="DispHTMLTitleElement"
+
+[Software\\Classes\\Interface\\{3050F516-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f15dc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F516-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f174e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F516-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f18e8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F517-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f1d5c
+@="DispHTMLMetaElement"
+
+[Software\\Classes\\Interface\\{3050F517-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f1b5e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F517-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f1c9e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F517-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f1e38
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F51B-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b9161ac
+@="DispHTMLIFrame"
+
+[Software\\Classes\\Interface\\{3050F51B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b915fc2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F51B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9160ee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F51B-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b916274
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F51C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8df4a4
+@="DispHTMLImg"
+
+[Software\\Classes\\Interface\\{3050F51C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8df2ec
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F51C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8df3e6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F51C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8df562
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F51F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8edc2a
+@="DispHTMLButtonElement"
+
+[Software\\Classes\\Interface\\{3050F51F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8eda04
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F51F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8edb26
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F51F-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8edf40
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F521-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ed0fe
+@="DispHTMLTextAreaElement"
+
+[Software\\Classes\\Interface\\{3050F521-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ecf1e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F521-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ed04a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F521-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ed1da
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F522-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e783e
+@="DispHTMLLabelElement"
+
+[Software\\Classes\\Interface\\{3050F522-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e7604
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F522-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e7762
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F522-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e7938
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F524-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8dd398
+@="DispHTMLLinkElement"
+
+[Software\\Classes\\Interface\\{3050F524-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8dd1f4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F524-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8dd2f8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F524-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dd456
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F529-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b911f80
+@="DispHTMLObjectElement"
+
+[Software\\Classes\\Interface\\{3050F529-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b911ca6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F529-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b911ec2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F529-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b912048
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F52B-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ea002
+@="DispHTMLOptionElement"
+
+[Software\\Classes\\Interface\\{3050F52B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e9d8c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F52B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e9f1c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F52B-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ea1d8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F52E-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b9082a0
+@="DispHTMLEmbed"
+
+[Software\\Classes\\Interface\\{3050F52E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b907ff8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F52E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b908138
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F52E-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b908372
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F52F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d9bbc
+@="DispHTMLStyleSheetRulesCollection"
+
+[Software\\Classes\\Interface\\{3050F52F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d9a0e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F52F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d9b1c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F52F-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d9c7a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F530-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90ee3e
+@="DispHTMLScriptElement"
+
+[Software\\Classes\\Interface\\{3050F530-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90eaf6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F530-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90ec54
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F530-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90ef60
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F531-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e8c48
+@="DispHTMLSelectElement"
+
+[Software\\Classes\\Interface\\{3050F531-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e8892
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F531-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e8b76
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F531-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e8d2e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F532-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90bf9a
+@="DispHTMLTable"
+
+[Software\\Classes\\Interface\\{3050F532-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90bd88
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F532-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90bef0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F532-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90c06c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F535-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90d4da
+@="DispHTMLTableRow"
+
+[Software\\Classes\\Interface\\{3050F535-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90d228
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F535-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90d3ae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F535-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90d5f2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F536-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90dae8
+@="DispHTMLTableCell"
+
+[Software\\Classes\\Interface\\{3050F536-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90d912
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F536-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90da34
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F536-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90dbb0
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F539-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f22a2
+@="DispHTMLUnknownElement"
+
+[Software\\Classes\\Interface\\{3050F539-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f20cc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F539-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f21ee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F539-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f2374
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F540-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8da4d6
+@="DispHTMLStyleSheetPage"
+
+[Software\\Classes\\Interface\\{3050F540-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8da332
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F540-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8da42c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F540-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8da58a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F543-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8dae2c
+@="DispHTMLStyleSheetPagesCollection"
+
+[Software\\Classes\\Interface\\{3050F543-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8dac7e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F543-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8dad82
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F543-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dafa8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F547-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8dbc78
+@="DispHTMLStyleSheetsCollection"
+
+[Software\\Classes\\Interface\\{3050F547-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8dbad4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F547-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8dbbd8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F547-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dbd36
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F549-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fee94
+@="DispHTMLHistory"
+
+[Software\\Classes\\Interface\\{3050F549-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fe778
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F549-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fe8f4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F549-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fefc0
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F54A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fd3d2
+@="DispCPlugins"
+
+[Software\\Classes\\Interface\\{3050F54A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fcfcc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F54A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fd29c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F54A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fd7ec
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F54C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fe228
+@="DispHTMLNavigator"
+
+[Software\\Classes\\Interface\\{3050F54C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fdd64
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F54C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fe124
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F54C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fe318
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F54E-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ffbe6
+@="DispHTMLLocation"
+
+[Software\\Classes\\Interface\\{3050F54E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ffa10
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F54E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ffb32
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F54E-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ffd08
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F550-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b91b8aa
+@="DispHTMLNamespaceCollection"
+
+[Software\\Classes\\Interface\\{3050F550-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b91b6b6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F550-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b91b7ec
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F550-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b91b97c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F557-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8cf95a
+@="DispHTMLCurrentStyle"
+
+[Software\\Classes\\Interface\\{3050F557-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cf7c0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F557-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cf8ba
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F557-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8cfa0e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F558-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b900622
+@="DispCEventObj"
+
+[Software\\Classes\\Interface\\{3050F558-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b900438
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F558-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90056e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F558-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9006ea
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F55A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8cbf76
+@="DispHTMLStyle"
+
+[Software\\Classes\\Interface\\{3050F55A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cbda0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F55A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cbec2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F55A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8cc66a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F55D-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b900fdc
+@="DispHTMLWindow2"
+
+[Software\\Classes\\Interface\\{3050F55D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b900e10
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F55D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b900f28
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F55D-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9010a4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F55E-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b9020b2
+@="DispHTMLWindowProxy"
+
+[Software\\Classes\\Interface\\{3050F55E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b901ed2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F55E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b901ffe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F55E-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90217a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F55F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b906c84
+@="DispHTMLDocument"
+
+[Software\\Classes\\Interface\\{3050F55F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b906a5e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F55F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b906bb2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F55F-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b906d6a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F560-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f0ca4
+@="DispHTMLHtmlElement"
+
+[Software\\Classes\\Interface\\{3050F560-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f0ab0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F560-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f0bdc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F560-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f0db2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F561-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f123a
+@="DispHTMLHeadElement"
+
+[Software\\Classes\\Interface\\{3050F561-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f101e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F561-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f114a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F561-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f133e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F563-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d8938
+@="DispHTMLGenericElement"
+
+[Software\\Classes\\Interface\\{3050F563-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d873a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F563-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d885c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F563-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d8a14
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F564-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d24ca
+@="DispHTMLDOMAttribute"
+
+[Software\\Classes\\Interface\\{3050F564-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d233a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F564-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d242a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F564-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d257e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F565-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d0f08
+@="DispHTMLDOMTextNode"
+
+[Software\\Classes\\Interface\\{3050F565-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d0d6e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F565-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d0e68
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F565-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d0fb2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F56B-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e7e6a
+@="DispHTMLElementCollection"
+
+[Software\\Classes\\Interface\\{3050F56B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e7c12
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F56B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e7d70
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F56B-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e7f46
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F56C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d3f64
+@="DispHTMLAttributeCollection"
+
+[Software\\Classes\\Interface\\{3050F56C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d3d2a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F56C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d3e9c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F56C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d4040
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F577-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d5a9e
+@="DispDOMChildrenCollection"
+
+[Software\\Classes\\Interface\\{3050F577-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d56b6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F577-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d5968
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F577-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d5daa
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F57D-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ec0e6
+@="DispHTMLInputElement"
+
+[Software\\Classes\\Interface\\{3050F57D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ebe48
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F57D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ec01e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F57D-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ec1c2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F58D-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8db804
+@="DispHTMLStyleSheet"
+
+[Software\\Classes\\Interface\\{3050F58D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8db656
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F58D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8db764
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F58D-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8db8c2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F58F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d2074
+@="DispHTMLDOMImplementation"
+
+[Software\\Classes\\Interface\\{3050F58F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d1ee4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F58F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d1fd4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F58F-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d213c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F590-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b913452
+@="DispHTMLParamElement"
+
+[Software\\Classes\\Interface\\{3050F590-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b912ee4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F590-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b91310a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F590-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b91354c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F591-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b900afa
+@="DispHTMLScreen"
+
+[Software\\Classes\\Interface\\{3050F591-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b900938
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F591-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b900a46
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F591-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b900bc2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F596-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e0bb0
+@="DispHTMLXMLHttpRequest"
+
+[Software\\Classes\\Interface\\{3050F596-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e09f8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F596-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e0b10
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F596-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e0c6e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F5A2-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b917534
+@="DispDOMEvent"
+
+[Software\\Classes\\Interface\\{3050F5A2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9172dc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5A2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b917430
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5A2-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b917624
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F5A3-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ddd70
+@="DispHTMLDOMRange"
+
+[Software\\Classes\\Interface\\{3050F5A3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ddb90
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5A3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ddcb2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5A3-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dde24
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F5AB-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d4a18
+@="IHTMLDOMChildrenCollection"
+
+[Software\\Classes\\Interface\\{3050F5AB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d43ec
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5AB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d48e2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5AB-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d4c70
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F5C5-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e14ca
+@="IHTMLBodyElement2"
+
+[Software\\Classes\\Interface\\{3050F5C5-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e1326
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5C5-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e1420
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5C5-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e1588
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F5D2-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8eafde
+@="IHTMLInputElement"
+
+[Software\\Classes\\Interface\\{3050F5D2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ead4a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5D2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8eaf02
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5D2-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8eb0c4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F5DA-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c0f4a
+@="IHTMLDOMNode"
+
+[Software\\Classes\\Interface\\{3050F5DA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c0db0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5DA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c0eaa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F5DA-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c1008
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F60F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d927a
+@="HTMLElementEvents2"
+
+[Software\\Classes\\Interface\\{3050F60F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d90b8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F60F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d91da
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F60F-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d9338
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F613-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b902580
+@="HTMLDocumentEvents2"
+
+[Software\\Classes\\Interface\\{3050F613-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9023be
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F613-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9024cc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F613-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b902648
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F614-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8deb44
+@="HTMLFormElementEvents2"
+
+[Software\\Classes\\Interface\\{3050F614-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8de9a0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F614-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8deaa4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F614-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dec2a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F623-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b909dee
+@="HTMLTableEvents2"
+
+[Software\\Classes\\Interface\\{3050F623-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b909be6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F623-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b909d30
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F623-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b909eca
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F624-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e221c
+@="HTMLTextContainerEvents2"
+
+[Software\\Classes\\Interface\\{3050F624-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e2078
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F624-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e217c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F624-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e230c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F625-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b901bc6
+@="HTMLWindowEvents2"
+
+[Software\\Classes\\Interface\\{3050F625-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b901a04
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F625-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b901b1c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F625-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b901c8e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F656-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ccd2c
+@="IHTMLStyle3"
+
+[Software\\Classes\\Interface\\{3050F656-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ccab6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F656-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ccc46
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F656-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ccdf4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F658-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ce9f6
+@="IHTMLCurrentStyle2"
+
+[Software\\Classes\\Interface\\{3050F658-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ce834
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F658-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ce942
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F658-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ceba4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F673-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d62e6
+@="IHTMLElement3"
+
+[Software\\Classes\\Interface\\{3050F673-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d60ca
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F673-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d623c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F673-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d63ae
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F69A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90472c
+@="IHTMLDocument4"
+
+[Software\\Classes\\Interface\\{3050F69A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b904236
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F69A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b904646
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F69A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90481c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F6AE-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ce532
+@="IHTMLRenderStyle"
+
+[Software\\Classes\\Interface\\{3050F6AE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ce35c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F6AE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ce46a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F6AE-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ce5fa
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F6B1-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b2fd4be
+@="ITargetNotify2"
+
+[Software\\Classes\\Interface\\{3050F6B1-98B5-11CF-BB82-00AA00BDCE0B}\\NumMethods] 1660099896
+#time=1d8ac641b2fd41e
+@="6"
+
+[Software\\Classes\\Interface\\{3050F6B1-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fd518
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{3050F6B8-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b91b35a
+@="IHTMLNamespaceCollection"
+
+[Software\\Classes\\Interface\\{3050F6B8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b91b044
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F6B8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b91b27e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F6B8-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b91b436
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F6CF-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c5900
+@="IHTMLWindow4"
+
+[Software\\Classes\\Interface\\{3050F6CF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c5748
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F6CF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c5842
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F6CF-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c59e6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F6DB-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b913f7e
+@="IHTMLFrameBase2"
+
+[Software\\Classes\\Interface\\{3050F6DB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b913db2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F6DB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b913eca
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F6DB-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9140a0
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F7EC-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e93be
+@="IHTMLSelectionObject2"
+
+[Software\\Classes\\Interface\\{3050F7EC-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e91a2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F7EC-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e92ec
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F7EC-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e94d6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F7EE-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8da04e
+@="IHTMLStyleSheetPage"
+
+[Software\\Classes\\Interface\\{3050F7EE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d9e8c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F7EE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d9f90
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F7EE-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8da10c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F7F0-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8da99a
+@="IHTMLStyleSheetPagesCollection"
+
+[Software\\Classes\\Interface\\{3050F7F0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8da7ec
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F7F0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8da8fa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F7F0-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8daa62
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F809-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d0ab2
+@="IHTMLDOMTextNode2"
+
+[Software\\Classes\\Interface\\{3050F809-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d090e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F809-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d0a12
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F809-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d0b70
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F80A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d3622
+@="IHTMLAttributeCollection2"
+
+[Software\\Classes\\Interface\\{3050F80A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d3474
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F80A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d356e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F80A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d36cc
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F80B-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8cfdba
+@="IHTMLDOMNode2"
+
+[Software\\Classes\\Interface\\{3050F80B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cfc0c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F80B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cfd1a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F80B-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8cfe6e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F80C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b904cb8
+@="IHTMLDocument5"
+
+[Software\\Classes\\Interface\\{3050F80C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b904aa6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F80C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b904bc8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F80C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b904d8a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F80D-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d17a0
+@="IHTMLDOMImplementation"
+
+[Software\\Classes\\Interface\\{3050F80D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d1610
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F80D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d170a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F80D-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d1854
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F80F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d678c
+@="IHTMLElement4"
+
+[Software\\Classes\\Interface\\{3050F80F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d65d4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F80F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d66e2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F80F-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d684a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F810-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d0206
+@="IHTMLDOMAttribute2"
+
+[Software\\Classes\\Interface\\{3050F810-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d006c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F810-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d0166
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F810-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d02b0
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F813-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b908d36
+@="IHTMLCommentElement2"
+
+[Software\\Classes\\Interface\\{3050F813-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b908b42
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F813-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b908c6e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F813-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b908e26
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F816-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8cd1f0
+@="IHTMLStyle4"
+
+[Software\\Classes\\Interface\\{3050F816-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cd02e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F816-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cd146
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F816-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8cd2b8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F818-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8cf04a
+@="IHTMLCurrentStyle3"
+
+[Software\\Classes\\Interface\\{3050F818-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cee24
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F818-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cef8c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F818-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8cf108
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F81C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ee6ca
+@="IHTMLHtmlElement"
+
+[Software\\Classes\\Interface\\{3050F81C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ee4b8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F81C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ee60c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F81C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ee7a6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F81D-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8eec10
+@="IHTMLHeadElement"
+
+[Software\\Classes\\Interface\\{3050F81D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8eea08
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F81D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8eeb52
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F81D-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8eece2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F81E-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8dca4c
+@="IHTMLLinkElement3"
+
+[Software\\Classes\\Interface\\{3050F81E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8dc8a8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F81E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8dc9a2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F81E-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dcb0a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F81F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f01aa
+@="IHTMLMetaElement2"
+
+[Software\\Classes\\Interface\\{3050F81F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8eff7a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F81F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f0092
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F81F-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f02b8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F820-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e99a4
+@="IHTMLOptionElement3"
+
+[Software\\Classes\\Interface\\{3050F820-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e9788
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F820-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e98d2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F820-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e9a94
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F828-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90e5a6
+@="IHTMLScriptElement2"
+
+[Software\\Classes\\Interface\\{3050F828-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90e3d0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F828-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90e4fc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F828-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90e6be
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F829-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90b888
+@="IHTMLTable3"
+
+[Software\\Classes\\Interface\\{3050F829-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90b586
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F829-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90b69e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F829-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90ba68
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F832-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e71ea
+@="IHTMLLabelElement2"
+
+[Software\\Classes\\Interface\\{3050F832-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e6f7e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F832-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e710e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F832-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e72da
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3050F83D-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b910f90
+@="IHTMLParamElement"
+
+[Software\\Classes\\Interface\\{3050F83D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b910dce
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F83D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b910ee6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3050F83D-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b911058
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051040A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8dfe04
+@="IHTMLXMLHttpRequest"
+
+[Software\\Classes\\Interface\\{3051040A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8dfc60
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051040A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8dfd64
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051040A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dfecc
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051040C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e071e
+@="IHTMLXMLHttpRequestFactory"
+
+[Software\\Classes\\Interface\\{3051040C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e057a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051040C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e067e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051040C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e07dc
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051040E-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c5d92
+@="IHTMLWindow5"
+
+[Software\\Classes\\Interface\\{3051040E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c5bf8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051040E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c5cf2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051040E-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c5e46
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510417-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b9051d6
+@="IHTMLDocument6"
+
+[Software\\Classes\\Interface\\{30510417-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b904ff6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510417-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b905118
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510417-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9052b2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510418-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d2d76
+@="IHTMLDocumentCompatibleInfoCollection"
+
+[Software\\Classes\\Interface\\{30510418-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d2bdc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510418-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d2cd6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510418-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d2e20
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051041A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d292a
+@="IHTMLDocumentCompatibleInfo"
+
+[Software\\Classes\\Interface\\{3051041A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d277c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051041A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d288a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051041A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d29d4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051042D-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b91465e
+@="IHTMLFrameElement3"
+
+[Software\\Classes\\Interface\\{3051042D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9142f8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051042D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b914564
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051042D-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b914744
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051042F-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ef142
+@="IHTMLHeadElement2"
+
+[Software\\Classes\\Interface\\{3051042F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8eef4e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051042F-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ef084
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051042F-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ef21e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510433-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b915c52
+@="IHTMLIFrameElement3"
+
+[Software\\Classes\\Interface\\{30510433-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b915a4a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510433-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b915b6c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510433-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b915d24
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051043A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8dcf1a
+@="IHTMLLinkElement4"
+
+[Software\\Classes\\Interface\\{3051043A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8dcd26
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051043A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8dce7a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051043A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8dcfce
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510444-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b911666
+@="IHTMLParamElement2"
+
+[Software\\Classes\\Interface\\{30510444-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9113d2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510444-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b911576
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510444-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b91177e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510453-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c61e8
+@="IHTMLWindow6"
+
+[Software\\Classes\\Interface\\{30510453-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c603a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510453-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c6148
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510453-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c62a6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510462-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b9061d0
+@="IDocumentSelector"
+
+[Software\\Classes\\Interface\\{30510462-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b905fdc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510462-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9060fe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510462-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9062b6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510463-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d761e
+@="IElementSelector"
+
+[Software\\Classes\\Interface\\{30510463-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d7470
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510463-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d7574
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510463-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d76d2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510469-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d3a64
+@="IHTMLAttributeCollection3"
+
+[Software\\Classes\\Interface\\{30510469-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d38d4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510469-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d39c4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510469-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d3b18
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510474-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c4528
+@="IHTMLStorage"
+
+[Software\\Classes\\Interface\\{30510474-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c438e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510474-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c4488
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510474-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c45dc
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510480-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8cdb8c
+@="IHTMLStyle6"
+
+[Software\\Classes\\Interface\\{30510480-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cd9ca
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510480-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cdad8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510480-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8cdc54
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510482-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8e0296
+@="IHTMLXMLHttpRequest2"
+
+[Software\\Classes\\Interface\\{30510482-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8e00f2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510482-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8e01f6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510482-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8e035e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510495-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f075e
+@="IHTMLMetaElement3"
+
+[Software\\Classes\\Interface\\{30510495-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f0574
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510495-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f06a0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510495-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f0830
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051049B-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8b560e
+@="IHTMLDOMConstructor"
+
+[Software\\Classes\\Interface\\{3051049B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8b5442
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051049B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8b555a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051049B-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8b56e0
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051049C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b91bf26
+@="IHTMLDOMConstructorCollection"
+
+[Software\\Classes\\Interface\\{3051049C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b91bc10
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051049C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b91bd28
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051049C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b91c070
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104AE-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c1ce2
+@="IHTMLDOMRange"
+
+[Software\\Classes\\Interface\\{305104AE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c1b34
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104AE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c1c2e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104AE-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c1db4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104AF-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b906720
+@="IDocumentRange"
+
+[Software\\Classes\\Interface\\{305104AF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b906522
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104AF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90663a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104AF-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9067f2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104B6-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c217e
+@="IHTMLSelection"
+
+[Software\\Classes\\Interface\\{305104B6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c1fe4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104B6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c20de
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104B6-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c2232
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104B7-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c6fa8
+@="IHTMLWindow7"
+
+[Software\\Classes\\Interface\\{305104B7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c6db4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104B7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c6eae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104B7-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c705c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104B8-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c339e
+@="IHTMLDocument7"
+
+[Software\\Classes\\Interface\\{305104B8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c31f0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104B8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c32fe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104B8-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c3452
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104B9-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c7426
+@="IEventTarget"
+
+[Software\\Classes\\Interface\\{305104B9-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c728c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104B9-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c7390
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104B9-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c74da
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104BA-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c7890
+@="IDOMEvent"
+
+[Software\\Classes\\Interface\\{305104BA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c76f6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104BA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c77f0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104BA-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c7944
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104BC-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b905c62
+@="IDocumentEvent"
+
+[Software\\Classes\\Interface\\{305104BC-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b905a78
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104BC-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b905ba4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104BC-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b905d48
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104C5-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c9b9a
+@="ISVGElement"
+
+[Software\\Classes\\Interface\\{305104C5-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c99c4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104C5-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c9ae6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104C5-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c9c4e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104C6-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f3e68
+@="ISVGAnimatedBoolean"
+
+[Software\\Classes\\Interface\\{305104C6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f3c56
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104C6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f3daa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104C6-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f3f3a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104C7-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f4372
+@="ISVGAnimatedString"
+
+[Software\\Classes\\Interface\\{305104C7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f41b0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104C7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f42c8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104C7-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f4476
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104C8-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f2d1a
+@="ISVGStringList"
+
+[Software\\Classes\\Interface\\{305104C8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f2b30
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104C8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f2c66
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104C8-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f2df6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104C9-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c9708
+@="ISVGAnimatedEnumeration"
+
+[Software\\Classes\\Interface\\{305104C9-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c956e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104C9-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c9672
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104C9-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c97c6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104CB-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c9ff0
+@="ISVGNumber"
+
+[Software\\Classes\\Interface\\{305104CB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c9e56
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104CB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c9f50
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104CB-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ca0ae
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104CD-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fb6f4
+@="ISVGNumberList"
+
+[Software\\Classes\\Interface\\{305104CD-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fb50a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104CD-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fb636
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104CD-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fb802
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104CE-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fbc80
+@="ISVGAnimatedNumberList"
+
+[Software\\Classes\\Interface\\{305104CE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fba96
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104CE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fbbae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104CE-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fbd70
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104CF-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c7cdc
+@="ISVGLength"
+
+[Software\\Classes\\Interface\\{305104CF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c7b42
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104CF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c7c3c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104CF-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c7da4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104D0-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c813c
+@="ISVGAnimatedLength"
+
+[Software\\Classes\\Interface\\{305104D0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c7fac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c809c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D0-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c81e6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104D1-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fac5e
+@="ISVGLengthList"
+
+[Software\\Classes\\Interface\\{305104D1-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8faa7e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D1-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fabaa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D1-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fad30
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104D2-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fb1a4
+@="ISVGAnimatedLengthList"
+
+[Software\\Classes\\Interface\\{305104D2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fafd8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fb0fa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D2-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fb26c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104D3-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ca45a
+@="ISVGAngle"
+
+[Software\\Classes\\Interface\\{305104D3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ca2ca
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D3-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ca3ba
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D3-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ca50e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104D7-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c8592
+@="ISVGRect"
+
+[Software\\Classes\\Interface\\{305104D7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c83ee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c84f2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D7-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c8646
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104D8-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f4e4e
+@="ISVGAnimatedRect"
+
+[Software\\Classes\\Interface\\{305104D8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f4994
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f4d86
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104D8-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f4f2a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104DA-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f745a
+@="ISVGStylable"
+
+[Software\\Classes\\Interface\\{305104DA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f7270
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f739c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DA-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f7554
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104DB-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f79a0
+@="ISVGLocatable"
+
+[Software\\Classes\\Interface\\{305104DB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f77c0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f78ec
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DB-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f7a7c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104DC-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f5e8e
+@="ISVGTransformable"
+
+[Software\\Classes\\Interface\\{305104DC-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f5c86
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DC-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f5dd0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DC-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f5f60
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104DD-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f6410
+@="ISVGTests"
+
+[Software\\Classes\\Interface\\{305104DD-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f61ea
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DD-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f6334
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DD-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f655a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104DE-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f69ec
+@="ISVGLangSpace"
+
+[Software\\Classes\\Interface\\{305104DE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f67f8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f6924
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DE-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f6abe
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104DF-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f6f46
+@="ISVGExternalResourcesRequired"
+
+[Software\\Classes\\Interface\\{305104DF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f6d52
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DF-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f6e88
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104DF-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f7018
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104E0-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f8788
+@="ISVGFitToViewBox"
+
+[Software\\Classes\\Interface\\{305104E0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f7d4c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104E0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f7f5e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104E0-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f8968
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104E1-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f8e04
+@="ISVGZoomAndPan"
+
+[Software\\Classes\\Interface\\{305104E1-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f8c1a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104E1-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f8d46
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104E1-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f8ee0
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104E2-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c89e8
+@="ISVGViewSpec"
+
+[Software\\Classes\\Interface\\{305104E2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c8844
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104E2-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c893e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104E2-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c8a9c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104E7-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8cad4c
+@="ISVGSVGElement"
+
+[Software\\Classes\\Interface\\{305104E7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cabb2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104E7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cacac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104E7-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8cae1e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104F4-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c929e
+@="ISVGPoint"
+
+[Software\\Classes\\Interface\\{305104F4-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c90fa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104F4-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c91fe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104F4-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c9370
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104F6-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c8e48
+@="ISVGMatrix"
+
+[Software\\Classes\\Interface\\{305104F6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c8cae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104F6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c8da8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104F6-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c8efc
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104F7-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ca8ba
+@="ISVGTransform"
+
+[Software\\Classes\\Interface\\{305104F7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8ca70c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104F7-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8ca806
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104F7-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ca996
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104F8-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f32a6
+@="ISVGTransformList"
+
+[Software\\Classes\\Interface\\{305104F8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f3080
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104F8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f31e8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104F8-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f3378
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104F9-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f38b4
+@="ISVGAnimatedTransformList"
+
+[Software\\Classes\\Interface\\{305104F9-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f35ee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104F9-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f372e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104F9-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f39a4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104FA-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f5394
+@="ISVGPreserveAspectRatio"
+
+[Software\\Classes\\Interface\\{305104FA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f5196
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104FA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f52d6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104FA-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f5466
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305104FB-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f58a8
+@="ISVGAnimatedPreserveAspectRatio"
+
+[Software\\Classes\\Interface\\{305104FB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f56be
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104FB-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f57ea
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305104FB-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f597a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510514-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f9c96
+@="ISVGCircleElement"
+
+[Software\\Classes\\Interface\\{30510514-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f9a7a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510514-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f9bce
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510514-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f9da4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051051A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fa74a
+@="ISVGTextContentElement"
+
+[Software\\Classes\\Interface\\{3051051A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fa54c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051051A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fa68c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051051A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fa81c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051051B-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fc202
+@="ISVGTextPositioningElement"
+
+[Software\\Classes\\Interface\\{3051051B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fc004
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051051B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fc14e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051051B-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fc2d4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051051D-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fc716
+@="ISVGTSpanElement"
+
+[Software\\Classes\\Interface\\{3051051D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fc536
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051051D-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fc658
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051051D-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fc7f2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305106CA-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b917a84
+@="IDOMUIEvent"
+
+[Software\\Classes\\Interface\\{305106CA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b917890
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106CA-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9179c6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106CA-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b917b56
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305106CE-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b918c5e
+@="IDOMMouseEvent"
+
+[Software\\Classes\\Interface\\{305106CE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b918a88
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106CE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b918ba0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106CE-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b918da8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305106D6-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b9197e4
+@="IDOMKeyboardEvent"
+
+[Software\\Classes\\Interface\\{305106D6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9195c8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106D6-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b919730
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106D6-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9198b6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305106DE-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b91a298
+@="IDOMCustomEvent"
+
+[Software\\Classes\\Interface\\{305106DE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b91a0b8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106DE-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b91a1da
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106DE-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b91a36a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305106E0-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c2f34
+@="IHTMLDOMNode3"
+
+[Software\\Classes\\Interface\\{305106E0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c2d9a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106E0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c2e94
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106E0-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c2fe8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305106F8-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d6c3c
+@="IHTMLElement6"
+
+[Software\\Classes\\Interface\\{305106F8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d6a8e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106F8-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d6b92
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305106F8-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d6d04
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510720-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b91acde
+@="IDOMMessageEvent"
+
+[Software\\Classes\\Interface\\{30510720-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b91ab12
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510720-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b91ac2a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510720-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b91adce
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510736-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d7178
+@="IElementTraversal"
+
+[Software\\Classes\\Interface\\{30510736-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d6fd4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510736-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d70d8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510736-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d724a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510738-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d135e
+@="IDOMDocumentType"
+
+[Software\\Classes\\Interface\\{30510738-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d11ba
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510738-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d12be
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510738-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d1412
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051073C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8d1c32
+@="IHTMLDOMImplementation2"
+
+[Software\\Classes\\Interface\\{3051073C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8d1a98
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051073C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8d1b92
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051073C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8d1cdc
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510740-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c6648
+@="IHTMLCSSStyleDeclaration"
+
+[Software\\Classes\\Interface\\{30510740-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c64ae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510740-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c65a8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510740-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c66fc
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510742-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c2ac0
+@="IDOMProcessingInstruction"
+
+[Software\\Classes\\Interface\\{30510742-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c291c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510742-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c2a16
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510742-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c2b88
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051074B-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8c6aa8
+@="IHTMLStyleMedia"
+
+[Software\\Classes\\Interface\\{3051074B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8c690e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051074B-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8c6a08
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051074B-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8c6b5c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3051074E-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b903976
+@="IHTMLPerformance"
+
+[Software\\Classes\\Interface\\{3051074E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b903796
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051074E-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9038c2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3051074E-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b903a3e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510750-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b902f4e
+@="IHTMLPerformanceNavigation"
+
+[Software\\Classes\\Interface\\{30510750-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b902d82
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510750-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b902e9a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510750-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90307a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30510752-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b90348a
+@="IHTMLPerformanceTiming"
+
+[Software\\Classes\\Interface\\{30510752-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9032be
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510752-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9033d6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30510752-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b903552
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305107D0-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b905712
+@="IHTMLDocument8"
+
+[Software\\Classes\\Interface\\{305107D0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90551e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305107D0-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b905654
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305107D0-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b90580c
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{305107D1-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8cb292
+@="IHTMLCSSStyleDeclaration2"
+
+[Software\\Classes\\Interface\\{305107D1-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cb0b2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305107D1-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cb1e8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{305107D1-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8cb364
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30590000-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f27ca
+@="DispSVGElement"
+
+[Software\\Classes\\Interface\\{30590000-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f25d6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590000-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f270c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590000-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f28c4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30590001-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8f9412
+@="DispSVGSVGElement"
+
+[Software\\Classes\\Interface\\{30590001-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8f91ec
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590001-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8f934a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590001-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8f94da
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3059000A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fa1f0
+@="DispSVGCircleElement"
+
+[Software\\Classes\\Interface\\{3059000A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fa01a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3059000A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fa13c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3059000A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fa2cc
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3059003A-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8fcc52
+@="DispSVGTSpanElement"
+
+[Software\\Classes\\Interface\\{3059003A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8fca86
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3059003A-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8fcb9e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3059003A-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8fcd42
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30590070-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b8ce064
+@="DispHTMLW3CComputedStyle"
+
+[Software\\Classes\\Interface\\{30590070-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b8cdea2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590070-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8cdfba
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590070-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b8ce122
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30590072-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b917fd4
+@="DispDOMUIEvent"
+
+[Software\\Classes\\Interface\\{30590072-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b917df4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590072-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b917f20
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590072-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9187f4
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30590073-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b9191fe
+@="DispDOMMouseEvent"
+
+[Software\\Classes\\Interface\\{30590073-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b91900a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590073-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b919136
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590073-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b9192d0
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30590077-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b919cda
+@="DispDOMKeyboardEvent"
+
+[Software\\Classes\\Interface\\{30590077-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b919b0e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590077-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b919c26
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{30590077-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b919da2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{3059007C-98B5-11CF-BB82-00AA00BDCE0B}] 1660099896
+#time=1d8ac641b91a7ac
+@="DispDOMCustomEvent"
+
+[Software\\Classes\\Interface\\{3059007C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b91a5d6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3059007C-98B5-11CF-BB82-00AA00BDCE0B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b91a6ee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3059007C-98B5-11CF-BB82-00AA00BDCE0B}\\TypeLib] 1660099896
+#time=1d8ac641b91a8a6
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{30989668-E1C9-4597-B395-458EEDB808DF}] 1660099897
+#time=1d8ac641bd7a8ba
+@="IWICMetadataQueryReader"
+
+[Software\\Classes\\Interface\\{30989668-E1C9-4597-B395-458EEDB808DF}\\NumMethods] 1660099897
+#time=1d8ac641bd7a7d4
+@="7"
+
+[Software\\Classes\\Interface\\{30989668-E1C9-4597-B395-458EEDB808DF}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7a932
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{30F3D47A-6447-11D1-8E3C-00C04FB9386D}] 1660099896
+#time=1d8ac641ba12d58
+@="IBlockingLock"
+
+[Software\\Classes\\Interface\\{30F3D47A-6447-11D1-8E3C-00C04FB9386D}\\NumMethods] 1660099896
+#time=1d8ac641ba12cb8
+@="5"
+
+[Software\\Classes\\Interface\\{30F3D47A-6447-11D1-8E3C-00C04FB9386D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba12db2
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{310AFA62-0575-11D2-9CA9-0060B0EC3D39}] 1660099895
+#time=1d8ac641b062db2
+@="IDSOControl"
+
+[Software\\Classes\\Interface\\{310AFA62-0575-11D2-9CA9-0060B0EC3D39}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b02c686
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{310AFA62-0575-11D2-9CA9-0060B0EC3D39}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b02c79e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{310AFA62-0575-11D2-9CA9-0060B0EC3D39}\\TypeLib] 1660099895
+#time=1d8ac641b0630f0
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="3.0"
+
+[Software\\Classes\\Interface\\{3127CA40-446E-11CE-8135-00AA004BB851}] 1660099896
+#time=1d8ac641ba38e9a
+@="IErrorLog"
+
+[Software\\Classes\\Interface\\{3127CA40-446E-11CE-8135-00AA004BB851}\\NumMethods] 1660099896
+#time=1d8ac641ba38de6
+@="4"
+
+[Software\\Classes\\Interface\\{3127CA40-446E-11CE-8135-00AA004BB851}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba38efe
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{317EE249-F12E-11D2-B1E4-00C04F8EEB3E}] 1660099896
+#time=1d8ac641bbc8558
+@="IShellLinkDual2"
+
+[Software\\Classes\\Interface\\{317EE249-F12E-11D2-B1E4-00C04F8EEB3E}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc8378
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{317EE249-F12E-11D2-B1E4-00C04F8EEB3E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc84ae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{317EE249-F12E-11D2-B1E4-00C04F8EEB3E}\\TypeLib] 1660099896
+#time=1d8ac641bbc87c4
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{31C147B6-0ADE-4A3C-B514-DDF932EF6D17}] 1660099896
+#time=1d8ac641bbc7676
+@="IShellFolderViewDual2"
+
+[Software\\Classes\\Interface\\{31C147B6-0ADE-4A3C-B514-DDF932EF6D17}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc74a0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{31C147B6-0ADE-4A3C-B514-DDF932EF6D17}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc75c2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{31C147B6-0ADE-4A3C-B514-DDF932EF6D17}\\TypeLib] 1660099896
+#time=1d8ac641bbc773e
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{332C4425-26CB-11D0-B483-00C04FD90119}] 1660099896
+#time=1d8ac641b5c1a10
+@="IHTMLDocument2"
+
+[Software\\Classes\\Interface\\{332C4425-26CB-11D0-B483-00C04FD90119}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5c181c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{332C4425-26CB-11D0-B483-00C04FD90119}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5c1952
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{332C4425-26CB-11D0-B483-00C04FD90119}\\TypeLib] 1660099896
+#time=1d8ac641b8c0b9e
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{332C4426-26CB-11D0-B483-00C04FD90119}] 1660099896
+#time=1d8ac641b5b4590
+@="IHTMLFramesCollection2"
+
+[Software\\Classes\\Interface\\{332C4426-26CB-11D0-B483-00C04FD90119}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b43a6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{332C4426-26CB-11D0-B483-00C04FD90119}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b44d2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{332C4426-26CB-11D0-B483-00C04FD90119}\\TypeLib] 1660099896
+#time=1d8ac641b8b77ba
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{332C4427-26CB-11D0-B483-00C04FD90119}] 1660099896
+#time=1d8ac641b5bf3fa
+@="IHTMLWindow2"
+
+[Software\\Classes\\Interface\\{332C4427-26CB-11D0-B483-00C04FD90119}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5bef72
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{332C4427-26CB-11D0-B483-00C04FD90119}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5bf094
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{332C4427-26CB-11D0-B483-00C04FD90119}\\TypeLib] 1660099896
+#time=1d8ac641b8bf104
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{345C8244-43A3-4E32-A368-65F073B76F36}] 1660099897
+#time=1d8ac641bea0370
+@="IInstallationProgress"
+
+[Software\\Classes\\Interface\\{345C8244-43A3-4E32-A368-65F073B76F36}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9fe34
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{345C8244-43A3-4E32-A368-65F073B76F36}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea02b2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{345C8244-43A3-4E32-A368-65F073B76F36}\\TypeLib] 1660099897
+#time=1d8ac641bea0442
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{34A715A0-6587-11D0-924A-0020AFC7AC4D}] 1660099895
+#time=1d8ac641b0d338c
+@="DWebBrowserEvents2"
+
+[Software\\Classes\\Interface\\{34A715A0-6587-11D0-924A-0020AFC7AC4D}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d2e00
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{34A715A0-6587-11D0-924A-0020AFC7AC4D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d3076
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{34A715A0-6587-11D0-924A-0020AFC7AC4D}\\TypeLib] 1660099895
+#time=1d8ac641b0d34a4
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{36116642-D713-4B97-9B83-7484A9D00433}] 1660099896
+#time=1d8ac641b30e20a
+@="IFileDialogControlEvents"
+
+[Software\\Classes\\Interface\\{36116642-D713-4B97-9B83-7484A9D00433}\\NumMethods] 1660099896
+#time=1d8ac641b30e160
+@="7"
+
+[Software\\Classes\\Interface\\{36116642-D713-4B97-9B83-7484A9D00433}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30e264
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{3614C646-3B3B-4DE7-A81E-930E3F2127B3}] 1660099897
+#time=1d8ac641be42432
+@="IWMPErrorItem"
+
+[Software\\Classes\\Interface\\{3614C646-3B3B-4DE7-A81E-930E3F2127B3}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be4209a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3614C646-3B3B-4DE7-A81E-930E3F2127B3}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be4234c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3614C646-3B3B-4DE7-A81E-930E3F2127B3}\\TypeLib] 1660099897
+#time=1d8ac641be42522
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{361BBDC7-E6EE-4E13-BE58-58E2240C810F}] 1660099896
+#time=1d8ac641b3095d4
+@="IExplorerBrowserEvents"
+
+[Software\\Classes\\Interface\\{361BBDC7-E6EE-4E13-BE58-58E2240C810F}\\NumMethods] 1660099896
+#time=1d8ac641b30952a
+@="7"
+
+[Software\\Classes\\Interface\\{361BBDC7-E6EE-4E13-BE58-58E2240C810F}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b309624
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{36B73880-C2C8-11CF-8B46-00805F6CEF60}] 1660099896
+#time=1d8ac641bac7e56
+@="IMediaSeeking"
+
+[Software\\Classes\\Interface\\{36B73880-C2C8-11CF-8B46-00805F6CEF60}\\NumMethods] 1660099896
+#time=1d8ac641bac7d84
+@="20"
+
+[Software\\Classes\\Interface\\{36B73880-C2C8-11CF-8B46-00805F6CEF60}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac7eba
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{36B73882-C2C8-11CF-8B46-00805F6CEF60}] 1660099896
+#time=1d8ac641bacc5f0
+@="IFilterGraph2"
+
+[Software\\Classes\\Interface\\{36B73882-C2C8-11CF-8B46-00805F6CEF60}\\NumMethods] 1660099896
+#time=1d8ac641bacc500
+@="21"
+
+[Software\\Classes\\Interface\\{36B73882-C2C8-11CF-8B46-00805F6CEF60}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bacc65e
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{36B73883-C2C8-11CF-8B46-00805F6CEF60}] 1660099896
+#time=1d8ac641bacdffe
+@="ISeekingPassThru"
+
+[Software\\Classes\\Interface\\{36B73883-C2C8-11CF-8B46-00805F6CEF60}\\NumMethods] 1660099896
+#time=1d8ac641bacdf40
+@="4"
+
+[Software\\Classes\\Interface\\{36B73883-C2C8-11CF-8B46-00805F6CEF60}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bace058
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{373984C8-B845-449B-91E7-45AC83036ADE}] 1660099895
+#time=1d8ac641b03ab5a
+@="IXMLDOMSchemaCollection"
+
+[Software\\Classes\\Interface\\{373984C8-B845-449B-91E7-45AC83036ADE}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b03a970
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{373984C8-B845-449B-91E7-45AC83036ADE}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b03aa9c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{373984C8-B845-449B-91E7-45AC83036ADE}\\TypeLib] 1660099895
+#time=1d8ac641b0c1704
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{37668D37-507E-4160-9316-26306D150B12}] 1660099896
+#time=1d8ac641babb20a
+@="IBackgroundCopyJob"
+
+[Software\\Classes\\Interface\\{37668D37-507E-4160-9316-26306D150B12}\\NumMethods] 1660099896
+#time=1d8ac641babb12e
+@="35"
+
+[Software\\Classes\\Interface\\{37668D37-507E-4160-9316-26306D150B12}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babb26e
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{376BD3AA-3845-101B-84ED-08002B2EC713}] 1660099896
+#time=1d8ac641ba3fd8a
+@="IPerPropertyBrowsing"
+
+[Software\\Classes\\Interface\\{376BD3AA-3845-101B-84ED-08002B2EC713}\\NumMethods] 1660099896
+#time=1d8ac641ba3fcd6
+@="7"
+
+[Software\\Classes\\Interface\\{376BD3AA-3845-101B-84ED-08002B2EC713}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3fde4
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{379A0CF0-C1DE-11D2-ABF5-00A0C905F375}] 1660099896
+#time=1d8ac641bac7082
+@="IMemAllocatorCallbackTemp"
+
+[Software\\Classes\\Interface\\{379A0CF0-C1DE-11D2-ABF5-00A0C905F375}\\NumMethods] 1660099896
+#time=1d8ac641bac6fba
+@="11"
+
+[Software\\Classes\\Interface\\{379A0CF0-C1DE-11D2-ABF5-00A0C905F375}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac70dc
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{37D84F60-42CB-11CE-8135-00AA004BB851}] 1660099896
+#time=1d8ac641ba3ed4a
+@="IPersistPropertyBag"
+
+[Software\\Classes\\Interface\\{37D84F60-42CB-11CE-8135-00AA004BB851}\\NumMethods] 1660099896
+#time=1d8ac641ba3ec96
+@="7"
+
+[Software\\Classes\\Interface\\{37D84F60-42CB-11CE-8135-00AA004BB851}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3edae
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{38248178-CF6D-11DE-ABE5-000C2916D865}] 1660099895
+#time=1d8ac641b1584f6
+@="IWineRowServer"
+
+[Software\\Classes\\Interface\\{38248178-CF6D-11DE-ABE5-000C2916D865}\\NumMethods] 1660099895
+#time=1d8ac641b15842e
+@="25"
+
+[Software\\Classes\\Interface\\{38248178-CF6D-11DE-ABE5-000C2916D865}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b158564
+@="{06210E88-01F5-11D1-B512-0080C781C384}"
+
+[Software\\Classes\\Interface\\{38BC662F-2257-4525-959E-2069D2596C05}] 1660099895
+#time=1d8ac641b0eece0
+@="ISpeechPhraseReplacements"
+
+[Software\\Classes\\Interface\\{38BC662F-2257-4525-959E-2069D2596C05}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0eeb1e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{38BC662F-2257-4525-959E-2069D2596C05}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0eec2c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{38BC662F-2257-4525-959E-2069D2596C05}\\TypeLib] 1660099895
+#time=1d8ac641b0eed9e
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{39EB36E0-2097-40BD-8AF2-63A13B525362}] 1660099896
+#time=1d8ac641b75c154
+@="INetFwProducts"
+
+[Software\\Classes\\Interface\\{39EB36E0-2097-40BD-8AF2-63A13B525362}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75bf4c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{39EB36E0-2097-40BD-8AF2-63A13B525362}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75c096
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{39EB36E0-2097-40BD-8AF2-63A13B525362}\\TypeLib] 1660099896
+#time=1d8ac641b75c230
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3A56BFB8-576C-43F7-9335-FE4838FD7E37}] 1660099897
+#time=1d8ac641be9d684
+@="ICategoryCollection"
+
+[Software\\Classes\\Interface\\{3A56BFB8-576C-43F7-9335-FE4838FD7E37}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9d4c2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3A56BFB8-576C-43F7-9335-FE4838FD7E37}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9d5d0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3A56BFB8-576C-43F7-9335-FE4838FD7E37}\\TypeLib] 1660099897
+#time=1d8ac641be9d74c
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{3AA7AF7E-9B36-420C-A8E3-F77D4674A488}] 1660099896
+#time=1d8ac641b30e520
+@="IKnownFolder"
+
+[Software\\Classes\\Interface\\{3AA7AF7E-9B36-420C-A8E3-F77D4674A488}\\NumMethods] 1660099896
+#time=1d8ac641b30e476
+@="12"
+
+[Software\\Classes\\Interface\\{3AA7AF7E-9B36-420C-A8E3-F77D4674A488}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30e570
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{3AF24290-0C96-11CE-A0CF-00AA00600AB8}] 1660099896
+#time=1d8ac641ba400d2
+@="IAdviseSinkEx"
+
+[Software\\Classes\\Interface\\{3AF24290-0C96-11CE-A0CF-00AA00600AB8}\\NumMethods] 1660099896
+#time=1d8ac641ba4001e
+@="9"
+
+[Software\\Classes\\Interface\\{3AF24290-0C96-11CE-A0CF-00AA00600AB8}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba4012c
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{3B16811B-6A43-4EC9-A813-3D930C13B940}] 1660099897
+#time=1d8ac641bd7b5c6
+@="IWICBitmapFrameDecode"
+
+[Software\\Classes\\Interface\\{3B16811B-6A43-4EC9-A813-3D930C13B940}\\NumMethods] 1660099897
+#time=1d8ac641bd7b27e
+@="11"
+
+[Software\\Classes\\Interface\\{3B16811B-6A43-4EC9-A813-3D930C13B940}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7b648
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{3B9C7E7A-6EEE-4DED-9092-11657279ADBE}] 1660099895
+#time=1d8ac641b0ec45e
+@="ISpeechTextSelectionInformation"
+
+[Software\\Classes\\Interface\\{3B9C7E7A-6EEE-4DED-9092-11657279ADBE}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ec29c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3B9C7E7A-6EEE-4DED-9092-11657279ADBE}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ec3b4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3B9C7E7A-6EEE-4DED-9092-11657279ADBE}\\TypeLib] 1660099895
+#time=1d8ac641b0ec53a
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{3BDD78E2-C16E-47FD-B883-CE6FACC1A208}] 1660099896
+#time=1d8ac641b88d8ca
+@="ITfMouseTrackerACP"
+
+[Software\\Classes\\Interface\\{3BDD78E2-C16E-47FD-B883-CE6FACC1A208}\\NumMethods] 1660099896
+#time=1d8ac641b88d82a
+@="5"
+
+[Software\\Classes\\Interface\\{3BDD78E2-C16E-47FD-B883-CE6FACC1A208}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88d91a
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{3C374A41-BAE4-11CF-BF7D-00AA006946EE}] 1660099896
+#time=1d8ac641b311dce
+@="IUrlHistoryStg"
+
+[Software\\Classes\\Interface\\{3C374A41-BAE4-11CF-BF7D-00AA006946EE}\\NumMethods] 1660099896
+#time=1d8ac641b311d24
+@="8"
+
+[Software\\Classes\\Interface\\{3C374A41-BAE4-11CF-BF7D-00AA006946EE}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b311e1e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{3C374A42-BAE4-11CF-BF7D-00AA006946EE}] 1660099896
+#time=1d8ac641b311ad6
+@="IEnumSTATURL"
+
+[Software\\Classes\\Interface\\{3C374A42-BAE4-11CF-BF7D-00AA006946EE}\\NumMethods] 1660099896
+#time=1d8ac641b311a36
+@="8"
+
+[Software\\Classes\\Interface\\{3C374A42-BAE4-11CF-BF7D-00AA006946EE}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b311b30
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{3C613A02-34B2-44EA-9A7C-45AEA9C6FD6D}] 1660099897
+#time=1d8ac641bd7807e
+@="IWICColorContext"
+
+[Software\\Classes\\Interface\\{3C613A02-34B2-44EA-9A7C-45AEA9C6FD6D}\\NumMethods] 1660099897
+#time=1d8ac641bd77f84
+@="9"
+
+[Software\\Classes\\Interface\\{3C613A02-34B2-44EA-9A7C-45AEA9C6FD6D}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7810a
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{3CD141F4-3C6A-11D2-BCAA-00C04FD929DB}] 1660099896
+#time=1d8ac641b308f80
+@="IAutoCompleteDropDown"
+
+[Software\\Classes\\Interface\\{3CD141F4-3C6A-11D2-BCAA-00C04FD929DB}\\NumMethods] 1660099896
+#time=1d8ac641b308ee0
+@="5"
+
+[Software\\Classes\\Interface\\{3CD141F4-3C6A-11D2-BCAA-00C04FD929DB}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b308fda
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{3D4C0C61-18A4-41E4-BD80-481A4FC9F464}] 1660099897
+#time=1d8ac641bd81ad4
+@="IWICDdsFrameDecode"
+
+[Software\\Classes\\Interface\\{3D4C0C61-18A4-41E4-BD80-481A4FC9F464}\\NumMethods] 1660099897
+#time=1d8ac641bd819e4
+@="6"
+
+[Software\\Classes\\Interface\\{3D4C0C61-18A4-41E4-BD80-481A4FC9F464}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd81b4c
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{3D61BF11-AC5F-42C8-A4CB-931BCC28C744}] 1660099896
+#time=1d8ac641b887db2
+@="IEnumTfLanguageProfiles"
+
+[Software\\Classes\\Interface\\{3D61BF11-AC5F-42C8-A4CB-931BCC28C744}\\NumMethods] 1660099896
+#time=1d8ac641b887cf4
+@="7"
+
+[Software\\Classes\\Interface\\{3D61BF11-AC5F-42C8-A4CB-931BCC28C744}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b887e16
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{3D8B0590-F691-11D2-8EA9-006097DF5BD4}] 1660099896
+#time=1d8ac641b300952
+@="IAsyncOperation"
+
+[Software\\Classes\\Interface\\{3D8B0590-F691-11D2-8EA9-006097DF5BD4}\\NumMethods] 1660099896
+#time=1d8ac641b30089e
+@="8"
+
+[Software\\Classes\\Interface\\{3D8B0590-F691-11D2-8EA9-006097DF5BD4}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b3009ac
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{3DF47861-7DF1-4C1F-A81B-4C26F0F7A7C6}] 1660099897
+#time=1d8ac641be47fcc
+@="IWMPLibrary"
+
+[Software\\Classes\\Interface\\{3DF47861-7DF1-4C1F-A81B-4C26F0F7A7C6}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be46c9e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3DF47861-7DF1-4C1F-A81B-4C26F0F7A7C6}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be46fc8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3DF47861-7DF1-4C1F-A81B-4C26F0F7A7C6}\\TypeLib] 1660099897
+#time=1d8ac641be480ee
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3E37E320-17E2-11CF-ABC4-02608C9E7553}] 1660099896
+#time=1d8ac641b2eefd6
+@="IADsUser"
+
+[Software\\Classes\\Interface\\{3E37E320-17E2-11CF-ABC4-02608C9E7553}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b2eee14
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3E37E320-17E2-11CF-ABC4-02608C9E7553}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2eef2c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3E37E320-17E2-11CF-ABC4-02608C9E7553}\\TypeLib] 1660099896
+#time=1d8ac641b2ef0bc
+@="{97D25DB0-0363-11CF-ABC4-02608C9E7553}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3E90ADE3-7594-4CB0-BB58-69628F5F458C}] 1660099896
+#time=1d8ac641b882f2e
+@="ITfThreadMgrEx"
+
+[Software\\Classes\\Interface\\{3E90ADE3-7594-4CB0-BB58-69628F5F458C}\\NumMethods] 1660099896
+#time=1d8ac641b882e8e
+@="16"
+
+[Software\\Classes\\Interface\\{3E90ADE3-7594-4CB0-BB58-69628F5F458C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b882fa6
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B086}] 1660099896
+#time=1d8ac641b7ca7bc
+@="GlobalObj"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B086}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7ca5aa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B086}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7ca708
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B086}\\TypeLib] 1660099896
+#time=1d8ac641b7ca88e
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B087}] 1660099896
+#time=1d8ac641b7cac8a
+@="DateObj"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B087}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7caac8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B087}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7cabd6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B087}\\TypeLib] 1660099896
+#time=1d8ac641b7cad52
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B088}] 1660099896
+#time=1d8ac641b7cb16c
+@="MathObj"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B088}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7cafaa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B088}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7cb0b8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B088}\\TypeLib] 1660099896
+#time=1d8ac641b7cb234
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B089}] 1660099896
+#time=1d8ac641b7cb64e
+@="NumberObj"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B089}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7cb46e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B089}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7cb586
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B089}\\TypeLib] 1660099896
+#time=1d8ac641b7cb716
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B090}] 1660099896
+#time=1d8ac641b7cbb12
+@="RegExpObj"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B090}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7cb950
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B090}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7cba68
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B090}\\TypeLib] 1660099896
+#time=1d8ac641b7cbbda
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B091}] 1660099896
+#time=1d8ac641b7cbff4
+@="StringObj"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B091}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7cbe14
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B091}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7cbf40
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B091}\\TypeLib] 1660099896
+#time=1d8ac641b7cc0bc
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B092}] 1660099896
+#time=1d8ac641b7c9dbc
+@="ArrayInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B092}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7c9bf0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B092}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7c9d08
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B092}\\TypeLib] 1660099896
+#time=1d8ac641b7c9e8e
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B093}] 1660099896
+#time=1d8ac641b7ccb7a
+@="FunctionInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B093}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7cc2ec
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B093}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7ccabc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B093}\\TypeLib] 1660099896
+#time=1d8ac641b7ccc4c
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B094}] 1660099896
+#time=1d8ac641b7ca29e
+@="StringInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B094}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7ca0d2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B094}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7ca1f4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B094}\\TypeLib] 1660099896
+#time=1d8ac641b7ca370
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B095}] 1660099896
+#time=1d8ac641b7cdd68
+@="BoolInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B095}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7cd89a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B095}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7cdcaa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B095}\\TypeLib] 1660099896
+#time=1d8ac641b7cde3a
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B096}] 1660099896
+#time=1d8ac641b7ce272
+@="NumberInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B096}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7ce07e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B096}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7ce18c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B096}\\TypeLib] 1660099896
+#time=1d8ac641b7ce344
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B097}] 1660099896
+#time=1d8ac641b7ce740
+@="ObjectInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B097}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7ce57e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B097}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7ce68c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B097}\\TypeLib] 1660099896
+#time=1d8ac641b7ce7fe
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B098}] 1660099896
+#time=1d8ac641b7cec18
+@="DateInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B098}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7cea56
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B098}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7ceb64
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B098}\\TypeLib] 1660099896
+#time=1d8ac641b7cece0
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B099}] 1660099896
+#time=1d8ac641b7cf0d2
+@="RegExpInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B099}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7cef10
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B099}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7cf01e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B099}\\TypeLib] 1660099896
+#time=1d8ac641b7cf1ae
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09A}] 1660099896
+#time=1d8ac641b7cf5aa
+@="ErrorInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09A}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7cf3e8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09A}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7cf4f6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09A}\\TypeLib] 1660099896
+#time=1d8ac641b7cf6e0
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09B}] 1660099896
+#time=1d8ac641b7cfb40
+@="EvalErrorInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7cf91a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7cfa46
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09B}\\TypeLib] 1660099896
+#time=1d8ac641b7cfc12
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09C}] 1660099896
+#time=1d8ac641b7d000e
+@="RangeErrorInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09C}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7cfe4c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7cff5a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09C}\\TypeLib] 1660099896
+#time=1d8ac641b7d00d6
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09D}] 1660099896
+#time=1d8ac641b7d04e6
+@="ReferenceErrorInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09D}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7d0324
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7d043c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09D}\\TypeLib] 1660099896
+#time=1d8ac641b7d05ae
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09E}] 1660099896
+#time=1d8ac641b7d09a0
+@="SyntaxErrorInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09E}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7d07de
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7d08f6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09E}\\TypeLib] 1660099896
+#time=1d8ac641b7d0a7c
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09F}] 1660099896
+#time=1d8ac641b7d0f04
+@="TypeErrorInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09F}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7d0d4c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09F}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7d0e5a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B09F}\\TypeLib] 1660099896
+#time=1d8ac641b7d0fcc
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B0A0}] 1660099896
+#time=1d8ac641b7d13dc
+@="URIErrorInstance"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B0A0}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7d11fc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B0A0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7d1328
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B0A0}\\TypeLib] 1660099896
+#time=1d8ac641b7d14a4
+@="{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B186}] 1660099897
+#time=1d8ac641bcd827c
+@="GlobalObj"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B186}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bcd80ba
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B186}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcd81d2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B186}\\TypeLib] 1660099897
+#time=1d8ac641bcd8344
+@="{3EEF9758-35FC-11D1-8CE4-00C04FC2B185}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B187}] 1660099897
+#time=1d8ac641bcd875e
+@="ErrObj"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B187}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bcd8592
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B187}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcd86b4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B187}\\TypeLib] 1660099897
+#time=1d8ac641bcd886c
+@="{3EEF9758-35FC-11D1-8CE4-00C04FC2B185}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{3EFAA413-272F-11D2-836F-0000F87A7782}] 1660099895
+#time=1d8ac641b027e6a
+@="IXMLDOMDocumentFragment"
+
+[Software\\Classes\\Interface\\{3EFAA413-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b027c8a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA413-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b027db6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA413-272F-11D2-836F-0000F87A7782}\\TypeLib] 1660099895
+#time=1d8ac641b0b1a34
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{3EFAA425-272F-11D2-836F-0000F87A7782}] 1660099895
+#time=1d8ac641b03c13a
+@="IXTLRuntime"
+
+[Software\\Classes\\Interface\\{3EFAA425-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b03be56
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA425-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b03c07c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA425-272F-11D2-836F-0000F87A7782}\\TypeLib] 1660099895
+#time=1d8ac641b0b7646
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{3EFAA426-272F-11D2-836F-0000F87A7782}] 1660099895
+#time=1d8ac641b02a214
+@="IXMLDOMParseError"
+
+[Software\\Classes\\Interface\\{3EFAA426-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b02a052
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA426-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b02a160
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA426-272F-11D2-836F-0000F87A7782}\\TypeLib] 1660099895
+#time=1d8ac641b0b4a40
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{3EFAA427-272F-11D2-836F-0000F87A7782}] 1660099895
+#time=1d8ac641b02beca
+@="XMLDOMDocumentEvents"
+
+[Software\\Classes\\Interface\\{3EFAA427-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b02bd12
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA427-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b02be20
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA427-272F-11D2-836F-0000F87A7782}\\TypeLib] 1660099895
+#time=1d8ac641b0b7b5a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{3EFAA428-272F-11D2-836F-0000F87A7782}] 1660099895
+#time=1d8ac641b057bec
+@="IXMLDOMParseError2"
+
+[Software\\Classes\\Interface\\{3EFAA428-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0575de
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA428-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05789a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA428-272F-11D2-836F-0000F87A7782}\\TypeLib] 1660099895
+#time=1d8ac641b0b6be2
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{3EFAA429-272F-11D2-836F-0000F87A7782}] 1660099895
+#time=1d8ac641b058222
+@="IXMLDOMParseErrorCollection"
+
+[Software\\Classes\\Interface\\{3EFAA429-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b058060
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA429-272F-11D2-836F-0000F87A7782}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b058178
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3EFAA429-272F-11D2-836F-0000F87A7782}\\TypeLib] 1660099895
+#time=1d8ac641b0b66ce
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{3F4DACA0-160D-11D2-A8E9-00104B365C9F}] 1660099897
+#time=1d8ac641bcd946a
+@="IRegExp"
+
+[Software\\Classes\\Interface\\{3F4DACA0-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bcd9262
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACA0-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcd93ac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACA0-160D-11D2-A8E9-00104B365C9F}\\TypeLib] 1660099897
+#time=1d8ac641bcdac0c
+@="{3F4DACA7-160D-11D2-A8E9-00104B365C9F}"
+"Version"="5.5"
+
+[Software\\Classes\\Interface\\{3F4DACA1-160D-11D2-A8E9-00104B365C9F}] 1660099897
+#time=1d8ac641bcd9960
+@="IMatch"
+
+[Software\\Classes\\Interface\\{3F4DACA1-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bcd978a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACA1-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcd98ac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACA1-160D-11D2-A8E9-00104B365C9F}\\TypeLib] 1660099897
+#time=1d8ac641bcdb5d0
+@="{3F4DACA7-160D-11D2-A8E9-00104B365C9F}"
+"Version"="5.5"
+
+[Software\\Classes\\Interface\\{3F4DACA2-160D-11D2-A8E9-00104B365C9F}] 1660099897
+#time=1d8ac641bcd9ece
+@="IMatchCollection"
+
+[Software\\Classes\\Interface\\{3F4DACA2-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bcd9c9e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACA2-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcd9e10
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACA2-160D-11D2-A8E9-00104B365C9F}\\TypeLib] 1660099897
+#time=1d8ac641bcdc0e8
+@="{3F4DACA7-160D-11D2-A8E9-00104B365C9F}"
+"Version"="5.5"
+
+[Software\\Classes\\Interface\\{3F4DACB0-160D-11D2-A8E9-00104B365C9F}] 1660099897
+#time=1d8ac641bcdb044
+@="IRegExp2"
+
+[Software\\Classes\\Interface\\{3F4DACB0-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bcdae78
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACB0-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcdaf90
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACB0-160D-11D2-A8E9-00104B365C9F}\\TypeLib] 1660099897
+#time=1d8ac641bcdb10c
+@="{3F4DACA7-160D-11D2-A8E9-00104B365C9F}"
+"Version"="5.5"
+
+[Software\\Classes\\Interface\\{3F4DACB1-160D-11D2-A8E9-00104B365C9F}] 1660099897
+#time=1d8ac641bcdbb7a
+@="IMatch2"
+
+[Software\\Classes\\Interface\\{3F4DACB1-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bcdb990
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACB1-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcdbaa8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACB1-160D-11D2-A8E9-00104B365C9F}\\TypeLib] 1660099897
+#time=1d8ac641bcdbc42
+@="{3F4DACA7-160D-11D2-A8E9-00104B365C9F}"
+"Version"="5.5"
+
+[Software\\Classes\\Interface\\{3F4DACB2-160D-11D2-A8E9-00104B365C9F}] 1660099897
+#time=1d8ac641bcdc4ee
+@="IMatchCollection2"
+
+[Software\\Classes\\Interface\\{3F4DACB2-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bcdc322
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACB2-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcdc43a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACB2-160D-11D2-A8E9-00104B365C9F}\\TypeLib] 1660099897
+#time=1d8ac641bcdc5b6
+@="{3F4DACA7-160D-11D2-A8E9-00104B365C9F}"
+"Version"="5.5"
+
+[Software\\Classes\\Interface\\{3F4DACB3-160D-11D2-A8E9-00104B365C9F}] 1660099897
+#time=1d8ac641bcdc9da
+@="ISubMatches"
+
+[Software\\Classes\\Interface\\{3F4DACB3-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bcdc7fa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACB3-160D-11D2-A8E9-00104B365C9F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcdc91c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{3F4DACB3-160D-11D2-A8E9-00104B365C9F}\\TypeLib] 1660099897
+#time=1d8ac641bcdcaa2
+@="{3F4DACA7-160D-11D2-A8E9-00104B365C9F}"
+"Version"="5.5"
+
+[Software\\Classes\\Interface\\{40897764-CEAB-47BE-AD4A-8E28537F9BBF}] 1660099897
+#time=1d8ac641be42edc
+@="IWMPPlayerApplication"
+
+[Software\\Classes\\Interface\\{40897764-CEAB-47BE-AD4A-8E28537F9BBF}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be42cf2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{40897764-CEAB-47BE-AD4A-8E28537F9BBF}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be42e14
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{40897764-CEAB-47BE-AD4A-8E28537F9BBF}\\TypeLib] 1660099897
+#time=1d8ac641be42fd6
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{409CD537-8532-40CB-9774-E2FEB2DF4E9C}] 1660099897
+#time=1d8ac641bd815de
+@="IWICDdsDecoder"
+
+[Software\\Classes\\Interface\\{409CD537-8532-40CB-9774-E2FEB2DF4E9C}\\NumMethods] 1660099897
+#time=1d8ac641bd814da
+@="5"
+
+[Software\\Classes\\Interface\\{409CD537-8532-40CB-9774-E2FEB2DF4E9C}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd8166a
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{416D8B73-CB41-4EA1-805C-9BE9A5AC4A74}] 1660099897
+#time=1d8ac641bc5bcfe
+@="IRegistrationInfo"
+
+[Software\\Classes\\Interface\\{416D8B73-CB41-4EA1-805C-9BE9A5AC4A74}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc5ba60
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{416D8B73-CB41-4EA1-805C-9BE9A5AC4A74}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc5bbf0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{416D8B73-CB41-4EA1-805C-9BE9A5AC4A74}\\TypeLib] 1660099897
+#time=1d8ac641bc5be7a
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{41904400-BE18-11D3-A28B-00104BD35090}] 1660099897
+#time=1d8ac641be83cd4
+@="IWshShell3"
+
+[Software\\Classes\\Interface\\{41904400-BE18-11D3-A28B-00104BD35090}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be83af4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{41904400-BE18-11D3-A28B-00104BD35090}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be83c2a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{41904400-BE18-11D3-A28B-00104BD35090}\\TypeLib] 1660099897
+#time=1d8ac641be83da6
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{422E8E90-D955-11D1-8B09-00600806D9B6}] 1660099895
+#time=1d8ac641b102f24
+@="ISWbemMethod"
+
+[Software\\Classes\\Interface\\{422E8E90-D955-11D1-8B09-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b102d8a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{422E8E90-D955-11D1-8B09-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b102e84
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{422E8E90-D955-11D1-8B09-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b102fce
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{42C642C1-97E1-11CF-978F-00A02463E06F}] 1660099896
+#time=1d8ac641bb55a62
+@="IDictionary"
+
+[Software\\Classes\\Interface\\{42C642C1-97E1-11CF-978F-00A02463E06F}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb5585a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{42C642C1-97E1-11CF-978F-00A02463E06F}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb559a4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{42C642C1-97E1-11CF-978F-00A02463E06F}\\TypeLib] 1660099896
+#time=1d8ac641bb55b3e
+@="{420B2830-E718-11CF-893D-00A0C9054228}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{42D4D099-7C1A-4A89-B836-6C6F22160DF0}] 1660099896
+#time=1d8ac641b886fb6
+@="ITfEditRecord"
+
+[Software\\Classes\\Interface\\{42D4D099-7C1A-4A89-B836-6C6F22160DF0}\\NumMethods] 1660099896
+#time=1d8ac641b886f02
+@="5"
+
+[Software\\Classes\\Interface\\{42D4D099-7C1A-4A89-B836-6C6F22160DF0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b887024
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{42F85136-DB7E-439C-85F1-E4075D135FC8}] 1660099896
+#time=1d8ac641b30cdd8
+@="IFileDialog"
+
+[Software\\Classes\\Interface\\{42F85136-DB7E-439C-85F1-E4075D135FC8}\\NumMethods] 1660099896
+#time=1d8ac641b30cd24
+@="27"
+
+[Software\\Classes\\Interface\\{42F85136-DB7E-439C-85F1-E4075D135FC8}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30ce32
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{43826D1E-E718-42EE-BC55-A1E261C37BFE}] 1660099896
+#time=1d8ac641b303058
+@="IShellItem"
+
+[Software\\Classes\\Interface\\{43826D1E-E718-42EE-BC55-A1E261C37BFE}\\NumMethods] 1660099896
+#time=1d8ac641b302f90
+@="8"
+
+[Software\\Classes\\Interface\\{43826D1E-E718-42EE-BC55-A1E261C37BFE}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b3030bc
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{43C9FE15-F494-4C17-9DE2-B8A4AC350AA8}] 1660099896
+#time=1d8ac641b88849c
+@="ITfLanguageProfileNotifySink"
+
+[Software\\Classes\\Interface\\{43C9FE15-F494-4C17-9DE2-B8A4AC350AA8}\\NumMethods] 1660099896
+#time=1d8ac641b8883e8
+@="5"
+
+[Software\\Classes\\Interface\\{43C9FE15-F494-4C17-9DE2-B8A4AC350AA8}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88850a
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{443C8934-90FF-48ED-BCDE-26F5C7450042}] 1660099896
+#time=1d8ac641babc376
+@="IBackgroundCopyJob3"
+
+[Software\\Classes\\Interface\\{443C8934-90FF-48ED-BCDE-26F5C7450042}\\NumMethods] 1660099896
+#time=1d8ac641babc2b8
+@="47"
+
+[Software\\Classes\\Interface\\{443C8934-90FF-48ED-BCDE-26F5C7450042}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babc3da
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{451A0030-72EC-11CF-B03B-00AA006E0975}] 1660099896
+#time=1d8ac641b2ee568
+@="IADsMembers"
+
+[Software\\Classes\\Interface\\{451A0030-72EC-11CF-B03B-00AA006E0975}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b2ee3a6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{451A0030-72EC-11CF-B03B-00AA006E0975}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2ee4b4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{451A0030-72EC-11CF-B03B-00AA006E0975}\\TypeLib] 1660099896
+#time=1d8ac641b2ee630
+@="{97D25DB0-0363-11CF-ABC4-02608C9E7553}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{45E2B4AE-B1C3-11D0-B92F-00A0C90312E1}] 1660099896
+#time=1d8ac641b3079be
+@="IShellLinkDataList"
+
+[Software\\Classes\\Interface\\{45E2B4AE-B1C3-11D0-B92F-00A0C90312E1}\\NumMethods] 1660099896
+#time=1d8ac641b307900
+@="8"
+
+[Software\\Classes\\Interface\\{45E2B4AE-B1C3-11D0-B92F-00A0C90312E1}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b307a2c
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{46297823-9940-4C09-AED9-CD3EA6D05968}] 1660099897
+#time=1d8ac641be9ad44
+@="IUpdateIdentity"
+
+[Software\\Classes\\Interface\\{46297823-9940-4C09-AED9-CD3EA6D05968}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9aba0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{46297823-9940-4C09-AED9-CD3EA6D05968}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9ac9a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{46297823-9940-4C09-AED9-CD3EA6D05968}\\TypeLib] 1660099897
+#time=1d8ac641be9adf8
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{463A506D-6992-49D2-9B88-93D55E70BB16}] 1660099896
+#time=1d8ac641b884392
+@="ITfRangeBackup"
+
+[Software\\Classes\\Interface\\{463A506D-6992-49D2-9B88-93D55E70BB16}\\NumMethods] 1660099896
+#time=1d8ac641b88425c
+@="4"
+
+[Software\\Classes\\Interface\\{463A506D-6992-49D2-9B88-93D55E70BB16}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8843f6
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{47C922A2-3DD5-11D2-BF8B-00C04FB93661}] 1660099895
+#time=1d8ac641b0d649c
+@="ISearches"
+
+[Software\\Classes\\Interface\\{47C922A2-3DD5-11D2-BF8B-00C04FB93661}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d62e4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{47C922A2-3DD5-11D2-BF8B-00C04FB93661}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d63f2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{47C922A2-3DD5-11D2-BF8B-00C04FB93661}\\TypeLib] 1660099895
+#time=1d8ac641b0d6564
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{48ADDD32-3CA5-4124-ABE3-B5A72531B207}] 1660099896
+#time=1d8ac641b30fdc6
+@="ITransferDestination"
+
+[Software\\Classes\\Interface\\{48ADDD32-3CA5-4124-ABE3-B5A72531B207}\\NumMethods] 1660099896
+#time=1d8ac641b30fd26
+@="6"
+
+[Software\\Classes\\Interface\\{48ADDD32-3CA5-4124-ABE3-B5A72531B207}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30fe20
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{4954E0D0-FBC7-11D1-8410-006008C3FBFC}] 1660099896
+#time=1d8ac641b2f594e
+@="IActiveScriptProperty"
+
+[Software\\Classes\\Interface\\{4954E0D0-FBC7-11D1-8410-006008C3FBFC}\\NumMethods] 1660099896
+#time=1d8ac641b2f589a
+@="5"
+
+[Software\\Classes\\Interface\\{4954E0D0-FBC7-11D1-8410-006008C3FBFC}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f59b2
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{4A976298-8C0D-11D3-B389-00C04F68574B}] 1660099897
+#time=1d8ac641be3e44a
+@="IWMPStringCollection"
+
+[Software\\Classes\\Interface\\{4A976298-8C0D-11D3-B389-00C04F68574B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be3e0da
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4A976298-8C0D-11D3-B389-00C04F68574B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be3e364
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4A976298-8C0D-11D3-B389-00C04F68574B}\\TypeLib] 1660099897
+#time=1d8ac641be3e562
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{4C3D624D-FD6B-49A3-B9B7-09CB3CD3F047}] 1660099897
+#time=1d8ac641bc713a6
+@="IExecAction"
+
+[Software\\Classes\\Interface\\{4C3D624D-FD6B-49A3-B9B7-09CB3CD3F047}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc70f82
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4C3D624D-FD6B-49A3-B9B7-09CB3CD3F047}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc712b6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4C3D624D-FD6B-49A3-B9B7-09CB3CD3F047}\\TypeLib] 1660099897
+#time=1d8ac641bc71568
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{4D7FF4BA-1565-4EA8-94E1-6E724A46F98D}] 1660099895
+#time=1d8ac641b05d2cc
+@="IMXWriter"
+
+[Software\\Classes\\Interface\\{4D7FF4BA-1565-4EA8-94E1-6E724A46F98D}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05d114
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4D7FF4BA-1565-4EA8-94E1-6E724A46F98D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05d222
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4D7FF4BA-1565-4EA8-94E1-6E724A46F98D}\\TypeLib] 1660099895
+#time=1d8ac641b0c340a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{4DB1AD10-3391-11D2-9A33-00C04FA36145}] 1660099896
+#time=1d8ac641bc0db08
+@="IWiaItem"
+
+[Software\\Classes\\Interface\\{4DB1AD10-3391-11D2-9A33-00C04FA36145}\\NumMethods] 1660099896
+#time=1d8ac641bc0d9f0
+@="3"
+
+[Software\\Classes\\Interface\\{4DB1AD10-3391-11D2-9A33-00C04FA36145}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bc0db94
+@="{4DB1AD10-3391-11D2-9A33-00C04FA36145}"
+
+[Software\\Classes\\Interface\\{4E530B0A-E611-4C77-A3AC-9031D022281B}] 1660099896
+#time=1d8ac641b30eb1a
+@="IApplicationAssociationRegistration"
+
+[Software\\Classes\\Interface\\{4E530B0A-E611-4C77-A3AC-9031D022281B}\\NumMethods] 1660099896
+#time=1d8ac641b30ea7a
+@="9"
+
+[Software\\Classes\\Interface\\{4E530B0A-E611-4C77-A3AC-9031D022281B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30eb74
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{4EA48A35-60AE-446F-8FD6-E6A8D82459F7}] 1660099896
+#time=1d8ac641b885a8a
+@="ITfSource"
+
+[Software\\Classes\\Interface\\{4EA48A35-60AE-446F-8FD6-E6A8D82459F7}\\NumMethods] 1660099896
+#time=1d8ac641b8859cc
+@="5"
+
+[Software\\Classes\\Interface\\{4EA48A35-60AE-446F-8FD6-E6A8D82459F7}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b885aee
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{4EF6100A-AF88-11D0-9846-00C04FC29993}] 1660099896
+#time=1d8ac641bc02866
+@="FontEvents"
+
+[Software\\Classes\\Interface\\{4EF6100A-AF88-11D0-9846-00C04FC29993}\\NumMethods] 1660099896
+#time=1d8ac641ba3a13c
+@="7"
+
+[Software\\Classes\\Interface\\{4EF6100A-AF88-11D0-9846-00C04FC29993}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bc02578
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4EF6100A-AF88-11D0-9846-00C04FC29993}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bc026cc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4EF6100A-AF88-11D0-9846-00C04FC29993}\\TypeLib] 1660099896
+#time=1d8ac641bc02cb2
+@="{00020430-0000-0000-C000-000000000046}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{4EF89150-0807-11D3-8DF0-00105A2799B5}] 1660099896
+#time=1d8ac641b88aab2
+@="ITfPersistentPropertyLoaderACP"
+
+[Software\\Classes\\Interface\\{4EF89150-0807-11D3-8DF0-00105A2799B5}\\NumMethods] 1660099896
+#time=1d8ac641b88a9fe
+@="4"
+
+[Software\\Classes\\Interface\\{4EF89150-0807-11D3-8DF0-00105A2799B5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88ab0c
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{4F2DF574-C588-11D3-9ED0-00C04FB6E937}] 1660099897
+#time=1d8ac641be41ba4
+@="IWMPClosedCaption"
+
+[Software\\Classes\\Interface\\{4F2DF574-C588-11D3-9ED0-00C04FB6E937}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be419a6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4F2DF574-C588-11D3-9ED0-00C04FB6E937}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be41ae6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4F2DF574-C588-11D3-9ED0-00C04FB6E937}\\TypeLib] 1660099897
+#time=1d8ac641be41c80
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{4F9F9FCB-E0F4-48EB-B7AB-FA2EA9365CB4}] 1660099897
+#time=1d8ac641bcb614a
+@="IHttpNegotiate2"
+
+[Software\\Classes\\Interface\\{4F9F9FCB-E0F4-48EB-B7AB-FA2EA9365CB4}\\NumMethods] 1660099897
+#time=1d8ac641bcb6096
+@="6"
+
+[Software\\Classes\\Interface\\{4F9F9FCB-E0F4-48EB-B7AB-FA2EA9365CB4}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb61a4
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{4FC80282-23B6-4378-9A27-CD8F17C9400C}] 1660099896
+#time=1d8ac641b75da36
+@="IDynamicPortMapping"
+
+[Software\\Classes\\Interface\\{4FC80282-23B6-4378-9A27-CD8F17C9400C}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75d860
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4FC80282-23B6-4378-9A27-CD8F17C9400C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75d978
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{4FC80282-23B6-4378-9A27-CD8F17C9400C}\\TypeLib] 1660099896
+#time=1d8ac641b75db12
+@="{1C565858-F302-471E-B409-F180AA4ABEC6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{5009834F-2D6A-41CE-9E1B-17C5AFF7A782}] 1660099897
+#time=1d8ac641bd7947e
+@="IWICBitmapFlipRotator"
+
+[Software\\Classes\\Interface\\{5009834F-2D6A-41CE-9E1B-17C5AFF7A782}\\NumMethods] 1660099897
+#time=1d8ac641bd79384
+@="9"
+
+[Software\\Classes\\Interface\\{5009834F-2D6A-41CE-9E1B-17C5AFF7A782}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd79500
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{503626A3-8E14-4729-9355-0FE664BD2321}] 1660099897
+#time=1d8ac641bea20d0
+@="IUpdateExceptionCollection"
+
+[Software\\Classes\\Interface\\{503626A3-8E14-4729-9355-0FE664BD2321}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea1f0e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{503626A3-8E14-4729-9355-0FE664BD2321}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea2026
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{503626A3-8E14-4729-9355-0FE664BD2321}\\TypeLib] 1660099897
+#time=1d8ac641bea2198
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{50EA08B0-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b05ea78
+@="IXMLDOMSchemaCollection2"
+
+[Software\\Classes\\Interface\\{50EA08B0-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05e8b6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B0-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05e9ce
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B0-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0c2e06
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08B1-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b05dc54
+@="ISchemaStringCollection"
+
+[Software\\Classes\\Interface\\{50EA08B1-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05da7e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B1-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05dba0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B1-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0bccea
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08B2-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b05d790
+@="ISchemaItemCollection"
+
+[Software\\Classes\\Interface\\{50EA08B2-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05d5ce
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B2-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05d6dc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B2-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0bc83a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08B3-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b05e5be
+@="ISchemaItem"
+
+[Software\\Classes\\Interface\\{50EA08B3-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05e3fc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B3-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05e514
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B3-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0bd960
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08B4-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b05e0fa
+@="ISchema"
+
+[Software\\Classes\\Interface\\{50EA08B4-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05df42
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B4-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05e050
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B4-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0bd2f8
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08B5-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b05ef50
+@="ISchemaParticle"
+
+[Software\\Classes\\Interface\\{50EA08B5-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05ed8e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B5-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05ee9c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B5-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0bde06
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08B6-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b0607e2
+@="ISchemaAttribute"
+
+[Software\\Classes\\Interface\\{50EA08B6-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b06054e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B6-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b06065c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B6-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0c0458
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08B7-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b060cce
+@="ISchemaElement"
+
+[Software\\Classes\\Interface\\{50EA08B7-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b060aee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B7-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b060c1a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B7-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0bf544
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08B8-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b05f414
+@="ISchemaType"
+
+[Software\\Classes\\Interface\\{50EA08B8-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05f23e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B8-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05f360
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B8-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0be2ac
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08B9-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b06024c
+@="ISchemaComplexType"
+
+[Software\\Classes\\Interface\\{50EA08B9-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b06008a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B9-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0601a2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08B9-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0bf094
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08BA-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b0611b0
+@="ISchemaAttributeGroup"
+
+[Software\\Classes\\Interface\\{50EA08BA-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b060fee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08BA-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b061106
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08BA-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0c0908
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08BB-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b05fda6
+@="ISchemaModelGroup"
+
+[Software\\Classes\\Interface\\{50EA08BB-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05fbe4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08BB-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05fcf2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08BB-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0bebf8
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08BC-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b05f8ba
+@="ISchemaAny"
+
+[Software\\Classes\\Interface\\{50EA08BC-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05f702
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08BC-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05f810
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08BC-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0be752
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08BD-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b0616a6
+@="ISchemaIdentityConstraint"
+
+[Software\\Classes\\Interface\\{50EA08BD-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0614e4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08BD-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0615fc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08BD-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0c0d9a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{50EA08BE-DD1B-4664-9A50-C2F40F4BD79A}] 1660099895
+#time=1d8ac641b061b6a
+@="ISchemaNotation"
+
+[Software\\Classes\\Interface\\{50EA08BE-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b061994
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08BE-DD1B-4664-9A50-C2F40F4BD79A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b061aac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{50EA08BE-DD1B-4664-9A50-C2F40F4BD79A}\\TypeLib] 1660099895
+#time=1d8ac641b0c124a
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{539698A0-CDCA-11CF-A5EB-00AA0047A063}] 1660099896
+#time=1d8ac641b2f2636
+@="IActiveScriptSiteInterruptPoll"
+
+[Software\\Classes\\Interface\\{539698A0-CDCA-11CF-A5EB-00AA0047A063}\\NumMethods] 1660099896
+#time=1d8ac641b2f2582
+@="4"
+
+[Software\\Classes\\Interface\\{539698A0-CDCA-11CF-A5EB-00AA0047A063}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f2690
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{53BAD8C1-E718-11CF-893D-00A0C9054228}] 1660099896
+#time=1d8ac641bb54496
+@="ITextStream"
+
+[Software\\Classes\\Interface\\{53BAD8C1-E718-11CF-893D-00A0C9054228}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb542a2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{53BAD8C1-E718-11CF-893D-00A0C9054228}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb543d8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{53BAD8C1-E718-11CF-893D-00A0C9054228}\\TypeLib] 1660099897
+#time=1d8ac641be7f60c
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{54A2CB2D-9A0C-48B6-8A50-9ABB69EE2D02}] 1660099897
+#time=1d8ac641be9bd70
+@="IUpdateDownloadContent"
+
+[Software\\Classes\\Interface\\{54A2CB2D-9A0C-48B6-8A50-9ABB69EE2D02}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9bb9a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{54A2CB2D-9A0C-48B6-8A50-9ABB69EE2D02}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9bcbc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{54A2CB2D-9A0C-48B6-8A50-9ABB69EE2D02}\\TypeLib] 1660099897
+#time=1d8ac641be9be42
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{54B50739-686F-45EB-9DFF-D6A9A0FAA9AF}] 1660099896
+#time=1d8ac641babbff2
+@="IBackgroundCopyJob2"
+
+[Software\\Classes\\Interface\\{54B50739-686F-45EB-9DFF-D6A9A0FAA9AF}\\NumMethods] 1660099896
+#time=1d8ac641babbf34
+@="43"
+
+[Software\\Classes\\Interface\\{54B50739-686F-45EB-9DFF-D6A9A0FAA9AF}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babc056
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{55136804-B2DE-11D1-B9F2-00A0C98BC547}] 1660099895
+#time=1d8ac641b0d50a6
+@="IShellFavoritesNameSpace"
+
+[Software\\Classes\\Interface\\{55136804-B2DE-11D1-B9F2-00A0C98BC547}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d4ee4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{55136804-B2DE-11D1-B9F2-00A0C98BC547}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d4ff2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{55136804-B2DE-11D1-B9F2-00A0C98BC547}\\TypeLib] 1660099895
+#time=1d8ac641b0d5164
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{55136806-B2DE-11D1-B9F2-00A0C98BC547}] 1660099895
+#time=1d8ac641b0d4bec
+@="DShellNameSpaceEvents"
+
+[Software\\Classes\\Interface\\{55136806-B2DE-11D1-B9F2-00A0C98BC547}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d4a16
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{55136806-B2DE-11D1-B9F2-00A0C98BC547}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d4b42
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{55136806-B2DE-11D1-B9F2-00A0C98BC547}\\TypeLib] 1660099895
+#time=1d8ac641b0d4cb4
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{55272A00-42CB-11CE-8135-00AA004BB851}] 1660099896
+#time=1d8ac641ba391ec
+@="IPropertyBag"
+
+[Software\\Classes\\Interface\\{55272A00-42CB-11CE-8135-00AA004BB851}\\NumMethods] 1660099896
+#time=1d8ac641ba39138
+@="5"
+
+[Software\\Classes\\Interface\\{55272A00-42CB-11CE-8135-00AA004BB851}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba39250
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{55980BA0-35AA-11CF-B671-00AA004CD6D8}] 1660099896
+#time=1d8ac641ba40492
+@="IPointerInactive"
+
+[Software\\Classes\\Interface\\{55980BA0-35AA-11CF-B671-00AA004CD6D8}\\NumMethods] 1660099896
+#time=1d8ac641ba403ca
+@="6"
+
+[Software\\Classes\\Interface\\{55980BA0-35AA-11CF-B671-00AA004CD6D8}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba404ec
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{55CE16BA-3014-41C1-9CEB-FADE1446AC6C}] 1660099896
+#time=1d8ac641b889220
+@="ITfInsertAtSelection"
+
+[Software\\Classes\\Interface\\{55CE16BA-3014-41C1-9CEB-FADE1446AC6C}\\NumMethods] 1660099896
+#time=1d8ac641b88916c
+@="5"
+
+[Software\\Classes\\Interface\\{55CE16BA-3014-41C1-9CEB-FADE1446AC6C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b889284
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{56A86891-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac516a
+@="IPin"
+
+[Software\\Classes\\Interface\\{56A86891-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac50ac
+@="18"
+
+[Software\\Classes\\Interface\\{56A86891-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac51ce
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A86892-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac54da
+@="IEnumPins"
+
+[Software\\Classes\\Interface\\{56A86892-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac541c
+@="7"
+
+[Software\\Classes\\Interface\\{56A86892-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac553e
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A86893-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac5f48
+@="IEnumFilters"
+
+[Software\\Classes\\Interface\\{56A86893-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac5e8a
+@="7"
+
+[Software\\Classes\\Interface\\{56A86893-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac5fac
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A86895-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac6614
+@="IBaseFilter"
+
+[Software\\Classes\\Interface\\{56A86895-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac6560
+@="15"
+
+[Software\\Classes\\Interface\\{56A86895-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac6682
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A86897-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac698e
+@="IReferenceClock"
+
+[Software\\Classes\\Interface\\{56A86897-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac68da
+@="7"
+
+[Software\\Classes\\Interface\\{56A86897-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac69f2
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A86899-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac62ae
+@="IMediaFilter"
+
+[Software\\Classes\\Interface\\{56A86899-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac61fa
+@="10"
+
+[Software\\Classes\\Interface\\{56A86899-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac631c
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A8689C-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac6cf4
+@="IMemAllocator"
+
+[Software\\Classes\\Interface\\{56A8689C-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac6c36
+@="9"
+
+[Software\\Classes\\Interface\\{56A8689C-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac6d4e
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A8689D-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac7780
+@="IMemInputPin"
+
+[Software\\Classes\\Interface\\{56A8689D-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac76cc
+@="9"
+
+[Software\\Classes\\Interface\\{56A8689D-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac77da
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A8689F-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac5bc4
+@="IFilterGraph"
+
+[Software\\Classes\\Interface\\{56A8689F-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac5b10
+@="11"
+
+[Software\\Classes\\Interface\\{56A8689F-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac5c28
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A868A2-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac9968
+@="IMediaEventSink"
+
+[Software\\Classes\\Interface\\{56A868A2-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac988c
+@="4"
+
+[Software\\Classes\\Interface\\{56A868A2-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac99cc
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A868A3-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac8888
+@="IFilterMapper"
+
+[Software\\Classes\\Interface\\{56A868A3-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac87ca
+@="11"
+
+[Software\\Classes\\Interface\\{56A868A3-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac88ec
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A868A4-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac8504
+@="IEnumRegFilters"
+
+[Software\\Classes\\Interface\\{56A868A4-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac8450
+@="7"
+
+[Software\\Classes\\Interface\\{56A868A4-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac8568
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A868A5-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac95f8
+@="IQualityControl"
+
+[Software\\Classes\\Interface\\{56A868A5-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac9544
+@="5"
+
+[Software\\Classes\\Interface\\{56A868A5-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac965c
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A868A6-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac9daa
+@="IFileSourceFilter"
+
+[Software\\Classes\\Interface\\{56A868A6-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bac9ce2
+@="5"
+
+[Software\\Classes\\Interface\\{56A868A6-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac9e0e
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A868A9-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bacb2fe
+@="IGraphBuilder"
+
+[Software\\Classes\\Interface\\{56A868A9-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bacacaa
+@="18"
+
+[Software\\Classes\\Interface\\{56A868A9-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bacb376
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A868AA-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bacd25c
+@="IAsyncReader"
+
+[Software\\Classes\\Interface\\{56A868AA-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bacd1a8
+@="11"
+
+[Software\\Classes\\Interface\\{56A868AA-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bacd2c0
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A868AB-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bacd5e0
+@="IGraphVersion"
+
+[Software\\Classes\\Interface\\{56A868AB-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bacd52c
+@="4"
+
+[Software\\Classes\\Interface\\{56A868AB-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bacd644
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A868AC-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bacdc98
+@="IResourceManager"
+
+[Software\\Classes\\Interface\\{56A868AC-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bacdbe4
+@="11"
+
+[Software\\Classes\\Interface\\{56A868AC-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bacdcf2
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A868AD-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bacd932
+@="IResourceConsumer"
+
+[Software\\Classes\\Interface\\{56A868AD-0AD4-11CE-B03A-0020AF0BA770}\\NumMethods] 1660099896
+#time=1d8ac641bacd87e
+@="5"
+
+[Software\\Classes\\Interface\\{56A868AD-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bacd996
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{56A868B1-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac2dac
+@="IMediaControl"
+
+[Software\\Classes\\Interface\\{56A868B1-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bac2bd6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B1-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac2cee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B1-0AD4-11CE-B03A-0020AF0BA770}\\TypeLib] 1660099896
+#time=1d8ac641bac2e7e
+@="{56A868B0-0AD4-11CE-B03A-0020AF0BA770}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{56A868B2-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac46de
+@="IMediaPosition"
+
+[Software\\Classes\\Interface\\{56A868B2-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bac4508
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B2-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac462a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B2-0AD4-11CE-B03A-0020AF0BA770}\\TypeLib] 1660099896
+#time=1d8ac641bac47a6
+@="{56A868B0-0AD4-11CE-B03A-0020AF0BA770}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{56A868B3-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac32de
+@="IBasicAudio"
+
+[Software\\Classes\\Interface\\{56A868B3-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bac30c2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B3-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac3220
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B3-0AD4-11CE-B03A-0020AF0BA770}\\TypeLib] 1660099896
+#time=1d8ac641bac33b0
+@="{56A868B0-0AD4-11CE-B03A-0020AF0BA770}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{56A868B4-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac37ca
+@="IVideoWindow"
+
+[Software\\Classes\\Interface\\{56A868B4-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bac35fe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B4-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac3716
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B4-0AD4-11CE-B03A-0020AF0BA770}\\TypeLib] 1660099896
+#time=1d8ac641bac389c
+@="{56A868B0-0AD4-11CE-B03A-0020AF0BA770}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{56A868B5-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac3cf2
+@="IBasicVideo"
+
+[Software\\Classes\\Interface\\{56A868B5-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bac3b1c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B5-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac3c3e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B5-0AD4-11CE-B03A-0020AF0BA770}\\TypeLib] 1660099896
+#time=1d8ac641bac3dc4
+@="{56A868B0-0AD4-11CE-B03A-0020AF0BA770}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{56A868B6-0AD4-11CE-B03A-0020AF0BA770}] 1660099896
+#time=1d8ac641bac41de
+@="IMediaEvent"
+
+[Software\\Classes\\Interface\\{56A868B6-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bac4012
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B6-0AD4-11CE-B03A-0020AF0BA770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac412a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56A868B6-0AD4-11CE-B03A-0020AF0BA770}\\TypeLib] 1660099896
+#time=1d8ac641bac42c4
+@="{56A868B0-0AD4-11CE-B03A-0020AF0BA770}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{56E2294F-69ED-4629-A869-AEA72C0DCC2C}] 1660099897
+#time=1d8ac641be45d44
+@="IWMPCdromRip"
+
+[Software\\Classes\\Interface\\{56E2294F-69ED-4629-A869-AEA72C0DCC2C}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be45b5a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56E2294F-69ED-4629-A869-AEA72C0DCC2C}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be45c86
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{56E2294F-69ED-4629-A869-AEA72C0DCC2C}\\TypeLib] 1660099897
+#time=1d8ac641be45e20
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{56FDF342-FD6D-11D0-958A-006097C9A090}] 1660099896
+#time=1d8ac641b3081de
+@="ITaskbarList"
+
+[Software\\Classes\\Interface\\{56FDF342-FD6D-11D0-958A-006097C9A090}\\NumMethods] 1660099896
+#time=1d8ac641b3080f8
+@="8"
+
+[Software\\Classes\\Interface\\{56FDF342-FD6D-11D0-958A-006097C9A090}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b308256
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{5791BC27-CE9C-11D1-97BF-0000F81E849C}] 1660099895
+#time=1d8ac641b1013c2
+@="ISWbemObjectPath"
+
+[Software\\Classes\\Interface\\{5791BC27-CE9C-11D1-97BF-0000F81E849C}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b10121e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{5791BC27-CE9C-11D1-97BF-0000F81E849C}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b10132c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{5791BC27-CE9C-11D1-97BF-0000F81E849C}\\TypeLib] 1660099895
+#time=1d8ac641b101476
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{580AA49D-7E1E-4809-B8E2-57DA806104B8}] 1660099895
+#time=1d8ac641b0f095a
+@="ISpeechRecoContext"
+
+[Software\\Classes\\Interface\\{580AA49D-7E1E-4809-B8E2-57DA806104B8}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0f0798
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{580AA49D-7E1E-4809-B8E2-57DA806104B8}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0f08b0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{580AA49D-7E1E-4809-B8E2-57DA806104B8}\\TypeLib] 1660099895
+#time=1d8ac641b0f0a22
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{588D5040-CF28-11D1-8CD3-00A0C959BC0A}] 1660099896
+#time=1d8ac641b5c2e6a
+@="_DHTMLEditEvents"
+
+[Software\\Classes\\Interface\\{588D5040-CF28-11D1-8CD3-00A0C959BC0A}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5c2c6c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{588D5040-CF28-11D1-8CD3-00A0C959BC0A}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5c2db6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{588D5040-CF28-11D1-8CD3-00A0C959BC0A}\\TypeLib] 1660099896
+#time=1d8ac641b5c2f32
+@="{683364A1-B37D-11D1-ADC5-006008A5848C}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{5BB11929-AFD1-11D2-9CB9-0000F87A369E}] 1660099896
+#time=1d8ac641b2efe54
+@="IADsADSystemInfo"
+
+[Software\\Classes\\Interface\\{5BB11929-AFD1-11D2-9CB9-0000F87A369E}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b2efc92
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{5BB11929-AFD1-11D2-9CB9-0000F87A369E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2efda0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{5BB11929-AFD1-11D2-9CB9-0000F87A369E}\\TypeLib] 1660099896
+#time=1d8ac641b2eff1c
+@="{97D25DB0-0363-11CF-ABC4-02608C9E7553}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{5C209F0B-BAD5-432A-9556-4699BED2638A}] 1660099897
+#time=1d8ac641bea087a
+@="IInstallationJob"
+
+[Software\\Classes\\Interface\\{5C209F0B-BAD5-432A-9556-4699BED2638A}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea06b8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{5C209F0B-BAD5-432A-9556-4699BED2638A}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea07d0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{5C209F0B-BAD5-432A-9556-4699BED2638A}\\TypeLib] 1660099897
+#time=1d8ac641bea0942
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{5CD52983-9449-11D2-963A-00C04F79ADF0}] 1660099896
+#time=1d8ac641b307d88
+@="IResolveShellLink"
+
+[Software\\Classes\\Interface\\{5CD52983-9449-11D2-963A-00C04F79ADF0}\\NumMethods] 1660099896
+#time=1d8ac641b307cb6
+@="4"
+
+[Software\\Classes\\Interface\\{5CD52983-9449-11D2-963A-00C04F79ADF0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b307e0a
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}] 1660099896
+#time=1d8ac641babbc78
+@="IBackgroundCopyManager"
+
+[Software\\Classes\\Interface\\{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}\\NumMethods] 1660099896
+#time=1d8ac641babbbba
+@="7"
+
+[Software\\Classes\\Interface\\{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babbcdc
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{5E38B83C-8CF1-11D1-BF92-0060081ED811}] 1660099896
+#time=1d8ac641bc0c762
+@="IEnumWIA_DEV_INFO"
+
+[Software\\Classes\\Interface\\{5E38B83C-8CF1-11D1-BF92-0060081ED811}\\NumMethods] 1660099896
+#time=1d8ac641bc0c67c
+@="8"
+
+[Software\\Classes\\Interface\\{5E38B83C-8CF1-11D1-BF92-0060081ED811}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bc0c7d0
+@="{4DB1AD10-3391-11D2-9A33-00C04FA36145}"
+
+[Software\\Classes\\Interface\\{5EB2502A-8CF1-11D1-BF92-0060081ED811}] 1660099896
+#time=1d8ac641bc0bd12
+@="IWiaDevMgr"
+
+[Software\\Classes\\Interface\\{5EB2502A-8CF1-11D1-BF92-0060081ED811}\\NumMethods] 1660099896
+#time=1d8ac641bc0bc54
+@="12"
+
+[Software\\Classes\\Interface\\{5EB2502A-8CF1-11D1-BF92-0060081ED811}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bc0bd76
+@="{4DB1AD10-3391-11D2-9A33-00C04FA36145}"
+
+[Software\\Classes\\Interface\\{5EFD22BA-7838-46CB-88E2-CADB14124F8F}] 1660099896
+#time=1d8ac641b8898ec
+@="IEnumITfCompositionView"
+
+[Software\\Classes\\Interface\\{5EFD22BA-7838-46CB-88E2-CADB14124F8F}\\NumMethods] 1660099896
+#time=1d8ac641b889838
+@="7"
+
+[Software\\Classes\\Interface\\{5EFD22BA-7838-46CB-88E2-CADB14124F8F}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b889950
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{5F20AA40-B57A-4F34-96AB-3576F377CC79}] 1660099896
+#time=1d8ac641b8876aa
+@="ITfContextOwnerCompositionSink"
+
+[Software\\Classes\\Interface\\{5F20AA40-B57A-4F34-96AB-3576F377CC79}\\NumMethods] 1660099896
+#time=1d8ac641b8875ec
+@="6"
+
+[Software\\Classes\\Interface\\{5F20AA40-B57A-4F34-96AB-3576F377CC79}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88772c
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{602D4995-B13A-429B-A66E-1935E44F4317}] 1660099896
+#time=1d8ac641b3085f8
+@="ITaskbarList2"
+
+[Software\\Classes\\Interface\\{602D4995-B13A-429B-A66E-1935E44F4317}\\NumMethods] 1660099896
+#time=1d8ac641b30851c
+@="9"
+
+[Software\\Classes\\Interface\\{602D4995-B13A-429B-A66E-1935E44F4317}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b308666
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{61744FC7-85B5-4791-A9B0-272276309B13}] 1660099896
+#time=1d8ac641b30d120
+@="IFileDialog2"
+
+[Software\\Classes\\Interface\\{61744FC7-85B5-4791-A9B0-272276309B13}\\NumMethods] 1660099896
+#time=1d8ac641b30d06c
+@="29"
+
+[Software\\Classes\\Interface\\{61744FC7-85B5-4791-A9B0-272276309B13}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30d184
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{618736E0-3C3D-11CF-810C-00AA00389B71}] 1660099896
+#time=1d8ac641ba30af6
+@="IAccessible"
+
+[Software\\Classes\\Interface\\{618736E0-3C3D-11CF-810C-00AA00389B71}\\NumMethods] 1660099896
+#time=1d8ac641ba30b64
+@="28"
+
+[Software\\Classes\\Interface\\{618736E0-3C3D-11CF-810C-00AA00389B71}\\ProxyStubClsid] 1660099896
+#time=1d8ac641ba2f7be
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{618736E0-3C3D-11CF-810C-00AA00389B71}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba30c90
+@="{03022430-ABC4-11D0-BDE2-00AA001A1953}"
+
+[Software\\Classes\\Interface\\{618736E0-3C3D-11CF-810C-00AA00389B71}\\TypeLib] 1660099896
+#time=1d8ac641ba2faca
+@="{1EA4DBF0-3C3B-11CF-810C-00AA00389B71}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{62112AA2-EBE4-11CF-A5FB-0020AFE7292D}] 1660099896
+#time=1d8ac641bbc1a5a
+@="DShellFolderViewEvents"
+
+[Software\\Classes\\Interface\\{62112AA2-EBE4-11CF-A5FB-0020AFE7292D}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc183e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{62112AA2-EBE4-11CF-A5FB-0020AFE7292D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc197e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{62112AA2-EBE4-11CF-A5FB-0020AFE7292D}\\TypeLib] 1660099896
+#time=1d8ac641bbc1c08
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{624BD588-9060-4109-B0B0-1ADBBCAC32DF}] 1660099896
+#time=1d8ac641b75e95e
+@="INATEventManager"
+
+[Software\\Classes\\Interface\\{624BD588-9060-4109-B0B0-1ADBBCAC32DF}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75e760
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{624BD588-9060-4109-B0B0-1ADBBCAC32DF}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75e896
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{624BD588-9060-4109-B0B0-1ADBBCAC32DF}\\TypeLib] 1660099896
+#time=1d8ac641b75ea3a
+@="{1C565858-F302-471E-B409-F180AA4ABEC6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{626FC520-A41E-11CF-A731-00A0C9082637}] 1660099896
+#time=1d8ac641b5b2254
+@="IHTMLDocument"
+
+[Software\\Classes\\Interface\\{626FC520-A41E-11CF-A731-00A0C9082637}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b2038
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{626FC520-A41E-11CF-A731-00A0C9082637}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b218c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{626FC520-A41E-11CF-A731-00A0C9082637}\\TypeLib] 1660099896
+#time=1d8ac641b8b69c8
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{62B3B8FB-F6E7-41BE-BDCB-056B1C29EFC0}] 1660099895
+#time=1d8ac641b0ecdf0
+@="ISpeechRecoResultTimes"
+
+[Software\\Classes\\Interface\\{62B3B8FB-F6E7-41BE-BDCB-056B1C29EFC0}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ecc1a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{62B3B8FB-F6E7-41BE-BDCB-056B1C29EFC0}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ecd46
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{62B3B8FB-F6E7-41BE-BDCB-056B1C29EFC0}\\TypeLib] 1660099895
+#time=1d8ac641b0eceb8
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{6332DEBF-87B5-4670-90C0-5E57B408A49E}] 1660099896
+#time=1d8ac641b30f1aa
+@="ICustomDestinationList"
+
+[Software\\Classes\\Interface\\{6332DEBF-87B5-4670-90C0-5E57B408A49E}\\NumMethods] 1660099896
+#time=1d8ac641b30f0ec
+@="12"
+
+[Software\\Classes\\Interface\\{6332DEBF-87B5-4670-90C0-5E57B408A49E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30f1fa
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{63CDBCB0-C1B1-11D0-9336-00A0C90DCAA9}] 1660099896
+#time=1d8ac641b2f52aa
+@="IBindEventHandler"
+
+[Software\\Classes\\Interface\\{63CDBCB0-C1B1-11D0-9336-00A0C90DCAA9}\\NumMethods] 1660099896
+#time=1d8ac641b2f51f6
+@="4"
+
+[Software\\Classes\\Interface\\{63CDBCB0-C1B1-11D0-9336-00A0C90DCAA9}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f530e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{644EFD52-CCF9-486C-97A2-39F352570B30}] 1660099896
+#time=1d8ac641b758cd4
+@="INetFwAuthorizedApplications"
+
+[Software\\Classes\\Interface\\{644EFD52-CCF9-486C-97A2-39F352570B30}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b758aea
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{644EFD52-CCF9-486C-97A2-39F352570B30}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b758c16
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{644EFD52-CCF9-486C-97A2-39F352570B30}\\TypeLib] 1660099896
+#time=1d8ac641b758da6
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{6450336F-7D49-4CED-8097-49D6DEE37294}] 1660099895
+#time=1d8ac641b0ea7da
+@="ISpeechBaseStream"
+
+[Software\\Classes\\Interface\\{6450336F-7D49-4CED-8097-49D6DEE37294}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ea618
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6450336F-7D49-4CED-8097-49D6DEE37294}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ea730
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6450336F-7D49-4CED-8097-49D6DEE37294}\\TypeLib] 1660099895
+#time=1d8ac641b0ea8a2
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{653758FB-7B9A-4F1E-A471-BEEB8E9B834E}] 1660099897
+#time=1d8ac641bc5a8e0
+@="IRunningTask"
+
+[Software\\Classes\\Interface\\{653758FB-7B9A-4F1E-A471-BEEB8E9B834E}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc5a520
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{653758FB-7B9A-4F1E-A471-BEEB8E9B834E}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc5a750
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{653758FB-7B9A-4F1E-A471-BEEB8E9B834E}\\TypeLib] 1660099897
+#time=1d8ac641bc5aa20
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{65725580-9B5D-11D0-9BFE-00C04FC99C8E}] 1660099895
+#time=1d8ac641b02cd16
+@="IXMLElementCollection"
+
+[Software\\Classes\\Interface\\{65725580-9B5D-11D0-9BFE-00C04FC99C8E}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b02cb5e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{65725580-9B5D-11D0-9BFE-00C04FC99C8E}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b02cc6c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{65725580-9B5D-11D0-9BFE-00C04FC99C8E}\\TypeLib] 1660099895
+#time=1d8ac641b062146
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="3.0"
+
+[Software\\Classes\\Interface\\{659CDEAC-489E-11D9-A9CD-000D56965251}] 1660099896
+#time=1d8ac641babcdbc
+@="IBackgroundCopyCallback2"
+
+[Software\\Classes\\Interface\\{659CDEAC-489E-11D9-A9CD-000D56965251}\\NumMethods] 1660099896
+#time=1d8ac641babcd08
+@="7"
+
+[Software\\Classes\\Interface\\{659CDEAC-489E-11D9-A9CD-000D56965251}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babce16
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{659CDEAE-489E-11D9-A9CD-000D56965251}] 1660099896
+#time=1d8ac641babd4d8
+@="IBackgroundCopyJob4"
+
+[Software\\Classes\\Interface\\{659CDEAE-489E-11D9-A9CD-000D56965251}\\NumMethods] 1660099896
+#time=1d8ac641babd370
+@="53"
+
+[Software\\Classes\\Interface\\{659CDEAE-489E-11D9-A9CD-000D56965251}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babd622
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{670D1D20-A068-11D0-B3F0-00AA003761C5}] 1660099896
+#time=1d8ac641bacbbdc
+@="IAMCopyCaptureFileProgress"
+
+[Software\\Classes\\Interface\\{670D1D20-A068-11D0-B3F0-00AA003761C5}\\NumMethods] 1660099896
+#time=1d8ac641bacbb14
+@="4"
+
+[Software\\Classes\\Interface\\{670D1D20-A068-11D0-B3F0-00AA003761C5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bacbc4a
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{673425BF-C082-4C7C-BDFD-569464B8E0CE}] 1660099897
+#time=1d8ac641bea402e
+@="IAutomaticUpdates"
+
+[Software\\Classes\\Interface\\{673425BF-C082-4C7C-BDFD-569464B8E0CE}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea3e4e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{673425BF-C082-4C7C-BDFD-569464B8E0CE}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea3f66
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{673425BF-C082-4C7C-BDFD-569464B8E0CE}\\TypeLib] 1660099897
+#time=1d8ac641bea40f6
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{679409C0-99F7-11D3-9FB7-00105AA620BB}] 1660099897
+#time=1d8ac641be3f8cc
+@="IWMPPlaylistArray"
+
+[Software\\Classes\\Interface\\{679409C0-99F7-11D3-9FB7-00105AA620BB}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be3f386
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{679409C0-99F7-11D3-9FB7-00105AA620BB}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be3f516
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{679409C0-99F7-11D3-9FB7-00105AA620BB}\\TypeLib] 1660099897
+#time=1d8ac641be3faf2
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{6834B120-88CB-11D2-BF45-00105A2799B5}] 1660099896
+#time=1d8ac641b88959a
+@="ITfPropertyStore"
+
+[Software\\Classes\\Interface\\{6834B120-88CB-11D2-BF45-00105A2799B5}\\NumMethods] 1660099896
+#time=1d8ac641b8894dc
+@="12"
+
+[Software\\Classes\\Interface\\{6834B120-88CB-11D2-BF45-00105A2799B5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8895fe
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{68F1C6F9-7ECC-4666-A464-247FE12496C3}] 1660099897
+#time=1d8ac641be9ef70
+@="IUpdateDownloader"
+
+[Software\\Classes\\Interface\\{68F1C6F9-7ECC-4666-A464-247FE12496C3}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9edb8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{68F1C6F9-7ECC-4666-A464-247FE12496C3}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9eec6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{68F1C6F9-7ECC-4666-A464-247FE12496C3}\\TypeLib] 1660099897
+#time=1d8ac641be9f038
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{6A67614B-6828-4FEC-AA54-6D52E8F1F2DB}] 1660099897
+#time=1d8ac641bc5b010
+@="IRunningTaskCollection"
+
+[Software\\Classes\\Interface\\{6A67614B-6828-4FEC-AA54-6D52E8F1F2DB}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc5ad4a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6A67614B-6828-4FEC-AA54-6D52E8F1F2DB}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc5af3e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6A67614B-6828-4FEC-AA54-6D52E8F1F2DB}\\TypeLib] 1660099897
+#time=1d8ac641bc5b114
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{6A92B07A-D821-4682-B423-5C805022CC4D}] 1660099897
+#time=1d8ac641be9c752
+@="IUpdate"
+
+[Software\\Classes\\Interface\\{6A92B07A-D821-4682-B423-5C805022CC4D}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9c586
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6A92B07A-D821-4682-B423-5C805022CC4D}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9c69e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6A92B07A-D821-4682-B423-5C805022CC4D}\\TypeLib] 1660099897
+#time=1d8ac641be9c81a
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{6AA2C4A0-2B53-11D4-A2A0-00104BD35090}] 1660099896
+#time=1d8ac641b2f5c96
+@="IActiveScriptGarbageCollector"
+
+[Software\\Classes\\Interface\\{6AA2C4A0-2B53-11D4-A2A0-00104BD35090}\\NumMethods] 1660099896
+#time=1d8ac641b2f5be2
+@="4"
+
+[Software\\Classes\\Interface\\{6AA2C4A0-2B53-11D4-A2A0-00104BD35090}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f5cf0
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{6BF52A4F-394A-11D3-B153-00C04F79FAA6}] 1660099897
+#time=1d8ac641be44bd8
+@="IWMPPlayer"
+
+[Software\\Classes\\Interface\\{6BF52A4F-394A-11D3-B153-00C04F79FAA6}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be449da
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6BF52A4F-394A-11D3-B153-00C04F79FAA6}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be44b06
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6BF52A4F-394A-11D3-B153-00C04F79FAA6}\\TypeLib] 1660099897
+#time=1d8ac641be44dfe
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{6C497D62-8919-413C-82DB-E935FB3EC584}] 1660099897
+#time=1d8ac641be4469c
+@="IWMPPlayer4"
+
+[Software\\Classes\\Interface\\{6C497D62-8919-413C-82DB-E935FB3EC584}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be444bc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6C497D62-8919-413C-82DB-E935FB3EC584}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be445e8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6C497D62-8919-413C-82DB-E935FB3EC584}\\TypeLib] 1660099897
+#time=1d8ac641be44778
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{6D5140C1-7436-11CE-8034-00AA006009FA}] 1660099896
+#time=1d8ac641b3001d2
+@="IServiceProvider"
+
+[Software\\Classes\\Interface\\{6D5140C1-7436-11CE-8034-00AA006009FA}\\NumMethods] 1660099896
+#time=1d8ac641b30011e
+@="4"
+
+[Software\\Classes\\Interface\\{6D5140C1-7436-11CE-8034-00AA006009FA}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30022c
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{6E26E776-04F0-495D-80E4-3330352E3169}] 1660099896
+#time=1d8ac641ba31d16
+@="IAccPropServices"
+
+[Software\\Classes\\Interface\\{6E26E776-04F0-495D-80E4-3330352E3169}\\NumMethods] 1660099896
+#time=1d8ac641ba31c58
+@="18"
+
+[Software\\Classes\\Interface\\{6E26E776-04F0-495D-80E4-3330352E3169}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba31d8e
+@="{03022430-ABC4-11D0-BDE2-00AA001A1953}"
+
+[Software\\Classes\\Interface\\{6F10711F-729B-41E5-93B8-F21D0F818DF1}] 1660099896
+#time=1d8ac641b75cfd2
+@="IStaticPortMapping"
+
+[Software\\Classes\\Interface\\{6F10711F-729B-41E5-93B8-F21D0F818DF1}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75cdd4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6F10711F-729B-41E5-93B8-F21D0F818DF1}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75cf0a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6F10711F-729B-41E5-93B8-F21D0F818DF1}\\TypeLib] 1660099896
+#time=1d8ac641b75d0b8
+@="{1C565858-F302-471E-B409-F180AA4ABEC6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{6FFA3B44-FC2D-40D1-8AFC-32911C7F1AD1}] 1660099895
+#time=1d8ac641b0ebfa4
+@="ISpeechGrammarRules"
+
+[Software\\Classes\\Interface\\{6FFA3B44-FC2D-40D1-8AFC-32911C7F1AD1}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ebde2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6FFA3B44-FC2D-40D1-8AFC-32911C7F1AD1}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ebefa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{6FFA3B44-FC2D-40D1-8AFC-32911C7F1AD1}\\TypeLib] 1660099895
+#time=1d8ac641b0ec062
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{70528852-2F26-4AEA-8C96-215150578932}] 1660099896
+#time=1d8ac641b886566
+@="ITfDisplayAttributeInfo"
+
+[Software\\Classes\\Interface\\{70528852-2F26-4AEA-8C96-215150578932}\\NumMethods] 1660099896
+#time=1d8ac641b8864b2
+@="8"
+
+[Software\\Classes\\Interface\\{70528852-2F26-4AEA-8C96-215150578932}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8865c0
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{70629033-E363-4A28-A567-0DB78006E6D7}] 1660099896
+#time=1d8ac641b303b0c
+@="IEnumShellItems"
+
+[Software\\Classes\\Interface\\{70629033-E363-4A28-A567-0DB78006E6D7}\\NumMethods] 1660099896
+#time=1d8ac641b303a44
+@="7"
+
+[Software\\Classes\\Interface\\{70629033-E363-4A28-A567-0DB78006E6D7}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b303b7a
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{70841C6F-067D-11D0-95D8-00A02463AB28}] 1660099896
+#time=1d8ac641b957526
+@="IScriptModuleCollection"
+
+[Software\\Classes\\Interface\\{70841C6F-067D-11D0-95D8-00A02463AB28}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b957364
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{70841C6F-067D-11D0-95D8-00A02463AB28}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b95747c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{70841C6F-067D-11D0-95D8-00A02463AB28}\\TypeLib] 1660099896
+#time=1d8ac641b957698
+@="{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{70841C70-067D-11D0-95D8-00A02463AB28}] 1660099896
+#time=1d8ac641b9570a8
+@="IScriptModule"
+
+[Software\\Classes\\Interface\\{70841C70-067D-11D0-95D8-00A02463AB28}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b956f04
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{70841C70-067D-11D0-95D8-00A02463AB28}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b956ffe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{70841C70-067D-11D0-95D8-00A02463AB28}\\TypeLib] 1660099896
+#time=1d8ac641b95715c
+@="{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{70841C71-067D-11D0-95D8-00A02463AB28}] 1660099896
+#time=1d8ac641b956c48
+@="IScriptProcedureCollection"
+
+[Software\\Classes\\Interface\\{70841C71-067D-11D0-95D8-00A02463AB28}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b956a5e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{70841C71-067D-11D0-95D8-00A02463AB28}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b956b62
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{70841C71-067D-11D0-95D8-00A02463AB28}\\TypeLib] 1660099896
+#time=1d8ac641b956cfc
+@="{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{70841C73-067D-11D0-95D8-00A02463AB28}] 1660099896
+#time=1d8ac641b95678e
+@="IScriptProcedure"
+
+[Software\\Classes\\Interface\\{70841C73-067D-11D0-95D8-00A02463AB28}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9565e0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{70841C73-067D-11D0-95D8-00A02463AB28}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9566e4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{70841C73-067D-11D0-95D8-00A02463AB28}\\TypeLib] 1660099896
+#time=1d8ac641b95684c
+@="{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{70841C78-067D-11D0-95D8-00A02463AB28}] 1660099896
+#time=1d8ac641b957aa8
+@="IScriptError"
+
+[Software\\Classes\\Interface\\{70841C78-067D-11D0-95D8-00A02463AB28}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9578fa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{70841C78-067D-11D0-95D8-00A02463AB28}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9579fe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{70841C78-067D-11D0-95D8-00A02463AB28}\\TypeLib] 1660099896
+#time=1d8ac641b957b5c
+@="{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{71881699-18F4-458B-B892-3FFCE5E07F75}] 1660099896
+#time=1d8ac641b75bbc8
+@="INetFwProduct"
+
+[Software\\Classes\\Interface\\{71881699-18F4-458B-B892-3FFCE5E07F75}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75b6b4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{71881699-18F4-458B-B892-3FFCE5E07F75}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75b7e0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{71881699-18F4-458B-B892-3FFCE5E07F75}\\TypeLib] 1660099896
+#time=1d8ac641b75bcd6
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{71C6E74C-0F28-11D8-A82A-00065B84435C}] 1660099896
+#time=1d8ac641b88619c
+@="ITfInputProcessorProfileMgr"
+
+[Software\\Classes\\Interface\\{71C6E74C-0F28-11D8-A82A-00065B84435C}\\NumMethods] 1660099896
+#time=1d8ac641b8860e8
+@="11"
+
+[Software\\Classes\\Interface\\{71C6E74C-0F28-11D8-A82A-00065B84435C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b886200
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{71C6E74D-0F28-11D8-A82A-00065B84435C}] 1660099896
+#time=1d8ac641b885e40
+@="IEnumTfInputProcessorProfiles"
+
+[Software\\Classes\\Interface\\{71C6E74D-0F28-11D8-A82A-00065B84435C}\\NumMethods] 1660099896
+#time=1d8ac641b885d8c
+@="7"
+
+[Software\\Classes\\Interface\\{71C6E74D-0F28-11D8-A82A-00065B84435C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b885e9a
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{71C6E74E-0F28-11D8-A82A-00065B84435C}] 1660099896
+#time=1d8ac641b88d226
+@="ITfInputProcessorProfileActivationSink"
+
+[Software\\Classes\\Interface\\{71C6E74E-0F28-11D8-A82A-00065B84435C}\\NumMethods] 1660099896
+#time=1d8ac641b88d186
+@="4"
+
+[Software\\Classes\\Interface\\{71C6E74E-0F28-11D8-A82A-00065B84435C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88d280
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{71EE5B20-FB04-11D1-B3A8-00A0C911E8B2}] 1660099896
+#time=1d8ac641b2f4bf2
+@="IActiveScriptParseProcedure2_32"
+
+[Software\\Classes\\Interface\\{71EE5B20-FB04-11D1-B3A8-00A0C911E8B2}\\NumMethods] 1660099896
+#time=1d8ac641b2f4b3e
+@="4"
+
+[Software\\Classes\\Interface\\{71EE5B20-FB04-11D1-B3A8-00A0C911E8B2}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f4c56
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{72380D55-8D2B-43A3-8513-2B6EF31434E9}] 1660099896
+#time=1d8ac641ba0f34c
+@="IProcessInitControl"
+
+[Software\\Classes\\Interface\\{72380D55-8D2B-43A3-8513-2B6EF31434E9}\\NumMethods] 1660099896
+#time=1d8ac641ba0f2ac
+@="4"
+
+[Software\\Classes\\Interface\\{72380D55-8D2B-43A3-8513-2B6EF31434E9}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba0f3a6
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA1}] 1660099895
+#time=1d8ac641b0d6956
+@="ISearchAssistantOC"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA1}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d6794
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA1}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d68a2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA1}\\TypeLib] 1660099895
+#time=1d8ac641b0d6a28
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA2}] 1660099895
+#time=1d8ac641b0d6e10
+@="ISearchAssistantOC2"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA2}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d6c58
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA2}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d6d66
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA2}\\TypeLib] 1660099895
+#time=1d8ac641b0d6ed8
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA3}] 1660099895
+#time=1d8ac641b0d72d4
+@="ISearchAssistantOC3"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA3}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d70fe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA3}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d7220
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{72423E8F-8011-11D2-BE79-00A0C9A83DA3}\\TypeLib] 1660099895
+#time=1d8ac641b0d7392
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{729FE2F8-1EA8-11D1-8F85-00C04FC2FBE1}] 1660099895
+#time=1d8ac641b0d4278
+@="IShellUIHelper"
+
+[Software\\Classes\\Interface\\{729FE2F8-1EA8-11D1-8F85-00C04FC2FBE1}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d407a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{729FE2F8-1EA8-11D1-8F85-00C04FC2FBE1}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d4192
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{729FE2F8-1EA8-11D1-8F85-00C04FC2FBE1}\\TypeLib] 1660099895
+#time=1d8ac641b0d4336
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{73131F9C-56A9-49DD-B0EE-D046633F7528}] 1660099896
+#time=1d8ac641b88cf1a
+@="ITfSourceSingle"
+
+[Software\\Classes\\Interface\\{73131F9C-56A9-49DD-B0EE-D046633F7528}\\NumMethods] 1660099896
+#time=1d8ac641b88ce7a
+@="5"
+
+[Software\\Classes\\Interface\\{73131F9C-56A9-49DD-B0EE-D046633F7528}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88cf74
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{7366EA16-7A1A-4EA2-B042-973D3E9CD99B}] 1660099897
+#time=1d8ac641bea1720
+@="ISearchJob"
+
+[Software\\Classes\\Interface\\{7366EA16-7A1A-4EA2-B042-973D3E9CD99B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea152c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7366EA16-7A1A-4EA2-B042-973D3E9CD99B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea166c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7366EA16-7A1A-4EA2-B042-973D3E9CD99B}\\TypeLib] 1660099897
+#time=1d8ac641bea17e8
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{742B0E01-14E6-101B-914E-00AA00300CAB}] 1660099896
+#time=1d8ac641ba3e322
+@="ISimpleFrameSite"
+
+[Software\\Classes\\Interface\\{742B0E01-14E6-101B-914E-00AA00300CAB}\\NumMethods] 1660099896
+#time=1d8ac641ba3e278
+@="5"
+
+[Software\\Classes\\Interface\\{742B0E01-14E6-101B-914E-00AA00300CAB}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3e386
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{743ABD5F-F26D-48DF-8CC5-238492419B64}] 1660099896
+#time=1d8ac641b88c5c4
+@="ITfCompartmentEventSink"
+
+[Software\\Classes\\Interface\\{743ABD5F-F26D-48DF-8CC5-238492419B64}\\NumMethods] 1660099896
+#time=1d8ac641b88c524
+@="4"
+
+[Software\\Classes\\Interface\\{743ABD5F-F26D-48DF-8CC5-238492419B64}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88c61e
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{744129E0-CBE5-11CE-8350-444553540000}] 1660099896
+#time=1d8ac641bbc310c
+@="FolderItems"
+
+[Software\\Classes\\Interface\\{744129E0-CBE5-11CE-8350-444553540000}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc2f36
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{744129E0-CBE5-11CE-8350-444553540000}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc3058
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{744129E0-CBE5-11CE-8350-444553540000}\\TypeLib] 1660099896
+#time=1d8ac641bbc31d4
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{74C09E02-F828-11D2-A74B-00A0C905F36E}] 1660099897
+#time=1d8ac641be3cfaa
+@="IWMPControls"
+
+[Software\\Classes\\Interface\\{74C09E02-F828-11D2-A74B-00A0C905F36E}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be3cbd6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{74C09E02-F828-11D2-A74B-00A0C905F36E}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be3ceb0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{74C09E02-F828-11D2-A74B-00A0C905F36E}\\TypeLib] 1660099897
+#time=1d8ac641be3d07c
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{7587C667-628F-499F-88E7-6A6F4E888464}] 1660099897
+#time=1d8ac641be44156
+@="IWMPCore3"
+
+[Software\\Classes\\Interface\\{7587C667-628F-499F-88E7-6A6F4E888464}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be43f62
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7587C667-628F-499F-88E7-6A6F4E888464}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be44098
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7587C667-628F-499F-88E7-6A6F4E888464}\\TypeLib] 1660099897
+#time=1d8ac641be44232
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{76A6415A-CB41-11D1-8B02-00600806D9B6}] 1660099895
+#time=1d8ac641b1037d0
+@="ISWbemObject"
+
+[Software\\Classes\\Interface\\{76A6415A-CB41-11D1-8B02-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b10362c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{76A6415A-CB41-11D1-8B02-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b103726
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{76A6415A-CB41-11D1-8B02-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b103884
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{76A6415B-CB41-11D1-8B02-00600806D9B6}] 1660099895
+#time=1d8ac641b104586
+@="ISWbemLocator"
+
+[Software\\Classes\\Interface\\{76A6415B-CB41-11D1-8B02-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1043ec
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{76A6415B-CB41-11D1-8B02-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1044e6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{76A6415B-CB41-11D1-8B02-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b104658
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{76A6415C-CB41-11D1-8B02-00600806D9B6}] 1660099895
+#time=1d8ac641b10405e
+@="ISWbemServices"
+
+[Software\\Classes\\Interface\\{76A6415C-CB41-11D1-8B02-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b103eba
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{76A6415C-CB41-11D1-8B02-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b103fbe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{76A6415C-CB41-11D1-8B02-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b1041e4
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{76A6415F-CB41-11D1-8B02-00600806D9B6}] 1660099895
+#time=1d8ac641b101930
+@="ISWbemObjectSet"
+
+[Software\\Classes\\Interface\\{76A6415F-CB41-11D1-8B02-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b10167e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{76A6415F-CB41-11D1-8B02-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b101890
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{76A6415F-CB41-11D1-8B02-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b1019e4
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{76A64164-CB41-11D1-8B02-00600806D9B6}] 1660099895
+#time=1d8ac641b0ffdec
+@="ISWbemNamedValue"
+
+[Software\\Classes\\Interface\\{76A64164-CB41-11D1-8B02-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ffc52
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{76A64164-CB41-11D1-8B02-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ffd4c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{76A64164-CB41-11D1-8B02-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b0ffea0
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{76C0DBBB-15E0-4E7B-B61B-20EEEA2001E0}] 1660099896
+#time=1d8ac641ba31960
+@="IAccPropServer"
+
+[Software\\Classes\\Interface\\{76C0DBBB-15E0-4E7B-B61B-20EEEA2001E0}\\NumMethods] 1660099896
+#time=1d8ac641ba316f4
+@="4"
+
+[Software\\Classes\\Interface\\{76C0DBBB-15E0-4E7B-B61B-20EEEA2001E0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba319ce
+@="{03022430-ABC4-11D0-BDE2-00AA001A1953}"
+
+[Software\\Classes\\Interface\\{7847EC01-2BEC-11D0-82B4-00A0C90C29C5}] 1660099896
+#time=1d8ac641b2fdd06
+@="ITargetContainer"
+
+[Software\\Classes\\Interface\\{7847EC01-2BEC-11D0-82B4-00A0C90C29C5}\\NumMethods] 1660099896
+#time=1d8ac641b2fdbe4
+@="5"
+
+[Software\\Classes\\Interface\\{7847EC01-2BEC-11D0-82B4-00A0C90C29C5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fdda6
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{7852B78D-1CFD-41C1-A615-9C0C85960B5F}] 1660099896
+#time=1d8ac641ba3137a
+@="IAccIdentity"
+
+[Software\\Classes\\Interface\\{7852B78D-1CFD-41C1-A615-9C0C85960B5F}\\NumMethods] 1660099896
+#time=1d8ac641ba31294
+@="4"
+
+[Software\\Classes\\Interface\\{7852B78D-1CFD-41C1-A615-9C0C85960B5F}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3147e
+@="{03022430-ABC4-11D0-BDE2-00AA001A1953}"
+
+[Software\\Classes\\Interface\\{79184A66-8664-423F-97F1-637356A5D812}] 1660099897
+#time=1d8ac641bc5a07a
+@="ITaskFolderCollection"
+
+[Software\\Classes\\Interface\\{79184A66-8664-423F-97F1-637356A5D812}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc59db4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{79184A66-8664-423F-97F1-637356A5D812}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc59f6c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{79184A66-8664-423F-97F1-637356A5D812}\\TypeLib] 1660099897
+#time=1d8ac641bc5a1b0
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{79649BB4-903E-421B-94C9-79848E79F6EE}] 1660099896
+#time=1d8ac641b7580e0
+@="INetFwServices"
+
+[Software\\Classes\\Interface\\{79649BB4-903E-421B-94C9-79848E79F6EE}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b757f00
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{79649BB4-903E-421B-94C9-79848E79F6EE}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75802c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{79649BB4-903E-421B-94C9-79848E79F6EE}\\TypeLib] 1660099896
+#time=1d8ac641b7581e4
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{796E7AC5-5AA2-4EFF-ACAD-3FAAF01A3288}] 1660099895
+#time=1d8ac641b059e4c
+@="IVBSAXLocator"
+
+[Software\\Classes\\Interface\\{796E7AC5-5AA2-4EFF-ACAD-3FAAF01A3288}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b059c3a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{796E7AC5-5AA2-4EFF-ACAD-3FAAF01A3288}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b059d52
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{796E7AC5-5AA2-4EFF-ACAD-3FAAF01A3288}\\TypeLib] 1660099895
+#time=1d8ac641b0b9748
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{79B05932-D3B7-11D1-8B06-00600806D9B6}] 1660099895
+#time=1d8ac641b101d9a
+@="ISWbemQualifier"
+
+[Software\\Classes\\Interface\\{79B05932-D3B7-11D1-8B06-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b101c00
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{79B05932-D3B7-11D1-8B06-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b101cfa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{79B05932-D3B7-11D1-8B06-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b101e44
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{79EAC9C0-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb4d68
+@="IBinding"
+
+[Software\\Classes\\Interface\\{79EAC9C0-BAF9-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099897
+#time=1d8ac641bcb4c96
+@="9"
+
+[Software\\Classes\\Interface\\{79EAC9C0-BAF9-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb4dd6
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{79EAC9C1-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb5150
+@="IBindStatusCallback"
+
+[Software\\Classes\\Interface\\{79EAC9C1-BAF9-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099897
+#time=1d8ac641bcb5038
+@="11"
+
+[Software\\Classes\\Interface\\{79EAC9C1-BAF9-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb51be
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{79EAC9C2-BAF9-11CE-8C82-00AA004BA90B}] 1660099896
+#time=1d8ac641b2fb312
+@="IHlinkSite"
+
+[Software\\Classes\\Interface\\{79EAC9C2-BAF9-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099896
+#time=1d8ac641b2fb272
+@="7"
+
+[Software\\Classes\\Interface\\{79EAC9C2-BAF9-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fb362
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{79EAC9C3-BAF9-11CE-8C82-00AA004BA90B}] 1660099896
+#time=1d8ac641b2fb024
+@="IHlink"
+
+[Software\\Classes\\Interface\\{79EAC9C3-BAF9-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099896
+#time=1d8ac641b2faf84
+@="17"
+
+[Software\\Classes\\Interface\\{79EAC9C3-BAF9-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fb074
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{79EAC9C4-BAF9-11CE-8C82-00AA004BA90B}] 1660099896
+#time=1d8ac641b2fb614
+@="IHlinkTarget"
+
+[Software\\Classes\\Interface\\{79EAC9C4-BAF9-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099896
+#time=1d8ac641b2fb56a
+@="8"
+
+[Software\\Classes\\Interface\\{79EAC9C4-BAF9-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fb664
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{79EAC9C5-BAF9-11CE-8C82-00AA004BA90B}] 1660099896
+#time=1d8ac641b2fb8f8
+@="IHlinkFrame"
+
+[Software\\Classes\\Interface\\{79EAC9C5-BAF9-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099896
+#time=1d8ac641b2fb858
+@="8"
+
+[Software\\Classes\\Interface\\{79EAC9C5-BAF9-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fb952
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{79EAC9C9-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb6ece
+@="IPersistMoniker"
+
+[Software\\Classes\\Interface\\{79EAC9C9-BAF9-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099897
+#time=1d8ac641bcb6e1a
+@="9"
+
+[Software\\Classes\\Interface\\{79EAC9C9-BAF9-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb6f32
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{79EAC9CB-BAF9-11CE-8C82-00AA004BA90B}] 1660099896
+#time=1d8ac641b2fbc18
+@="IExtensionServices"
+
+[Software\\Classes\\Interface\\{79EAC9CB-BAF9-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099896
+#time=1d8ac641b2fbb64
+@="5"
+
+[Software\\Classes\\Interface\\{79EAC9CB-BAF9-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fbc7c
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{79EAC9D0-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb598e
+@="IAuthenticate"
+
+[Software\\Classes\\Interface\\{79EAC9D0-BAF9-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099897
+#time=1d8ac641bcb57f4
+@="4"
+
+[Software\\Classes\\Interface\\{79EAC9D0-BAF9-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb5a24
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{79EAC9D2-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb5dbc
+@="IHttpNegotiate"
+
+[Software\\Classes\\Interface\\{79EAC9D2-BAF9-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099897
+#time=1d8ac641bcb5d08
+@="5"
+
+[Software\\Classes\\Interface\\{79EAC9D2-BAF9-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb5e20
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{79EAC9D6-BAFA-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb680c
+@="IWinInetInfo"
+
+[Software\\Classes\\Interface\\{79EAC9D6-BAFA-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099897
+#time=1d8ac641bcb6762
+@="4"
+
+[Software\\Classes\\Interface\\{79EAC9D6-BAFA-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb6870
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{79EAC9D8-BAFA-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb6b72
+@="IWinInetHttpInfo"
+
+[Software\\Classes\\Interface\\{79EAC9D8-BAFA-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099897
+#time=1d8ac641bcb6abe
+@="5"
+
+[Software\\Classes\\Interface\\{79EAC9D8-BAFA-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb6bd6
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{79EAC9EE-BAF9-11CE-8C82-00AA004BA90B}] 1660099897
+#time=1d8ac641bcb78a6
+@="IInternetSecurityManager"
+
+[Software\\Classes\\Interface\\{79EAC9EE-BAF9-11CE-8C82-00AA004BA90B}\\NumMethods] 1660099897
+#time=1d8ac641bcb77ca
+@="11"
+
+[Software\\Classes\\Interface\\{79EAC9EE-BAF9-11CE-8C82-00AA004BA90B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb7932
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{79FD57C8-908E-4A36-9888-D5B3F0A444CF}] 1660099896
+#time=1d8ac641b757b54
+@="INetFwService"
+
+[Software\\Classes\\Interface\\{79FD57C8-908E-4A36-9888-D5B3F0A444CF}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7576e0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{79FD57C8-908E-4A36-9888-D5B3F0A444CF}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75780c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{79FD57C8-908E-4A36-9888-D5B3F0A444CF}\\TypeLib] 1660099896
+#time=1d8ac641b757c3a
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{7A1EF0D5-1581-4741-88E4-209A49F11A10}] 1660099895
+#time=1d8ac641b0e5a5a
+@="ISpeechWaveFormatEx"
+
+[Software\\Classes\\Interface\\{7A1EF0D5-1581-4741-88E4-209A49F11A10}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e5898
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7A1EF0D5-1581-4741-88E4-209A49F11A10}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e59b0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7A1EF0D5-1581-4741-88E4-209A49F11A10}\\TypeLib] 1660099895
+#time=1d8ac641b0e5ba4
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{7B929C68-CCDC-4226-96B1-8724600B54C2}] 1660099897
+#time=1d8ac641bea122a
+@="IUpdateInstaller"
+
+[Software\\Classes\\Interface\\{7B929C68-CCDC-4226-96B1-8724600B54C2}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea105e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7B929C68-CCDC-4226-96B1-8724600B54C2}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea1176
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7B929C68-CCDC-4226-96B1-8724600B54C2}\\TypeLib] 1660099897
+#time=1d8ac641bea12f2
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{7BF80980-BF32-101A-8BBB-00AA00300CAB}] 1660099896
+#time=1d8ac641ba3a542
+@="IPicture"
+
+[Software\\Classes\\Interface\\{7BF80980-BF32-101A-8BBB-00AA00300CAB}\\NumMethods] 1660099896
+#time=1d8ac641ba3a498
+@="17"
+
+[Software\\Classes\\Interface\\{7BF80980-BF32-101A-8BBB-00AA00300CAB}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3a5a6
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{7BF80981-BF32-101A-8BBB-00AA00300CAB}] 1660099896
+#time=1d8ac641ba57bd8
+@="Picture"
+
+[Software\\Classes\\Interface\\{7BF80981-BF32-101A-8BBB-00AA00300CAB}\\NumMethods] 1660099896
+#time=1d8ac641ba3a808
+@="7"
+
+[Software\\Classes\\Interface\\{7BF80981-BF32-101A-8BBB-00AA00300CAB}\\ProxyStubClsid] 1660099896
+#time=1d8ac641ba579c6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7BF80981-BF32-101A-8BBB-00AA00300CAB}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba57af2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7BF80981-BF32-101A-8BBB-00AA00300CAB}\\TypeLib] 1660099896
+#time=1d8ac641bc02136
+@="{00020430-0000-0000-C000-000000000046}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{7C907864-346C-4AEB-8F3F-57DA289F969F}] 1660099897
+#time=1d8ac641be9a84e
+@="IImageInformation"
+
+[Software\\Classes\\Interface\\{7C907864-346C-4AEB-8F3F-57DA289F969F}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9a6aa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7C907864-346C-4AEB-8F3F-57DA289F969F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9a7ae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7C907864-346C-4AEB-8F3F-57DA289F969F}\\TypeLib] 1660099897
+#time=1d8ac641be9a916
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{7CC7AED8-290E-49BC-8945-C1401CC9306C}] 1660099896
+#time=1d8ac641b30bac8
+@="INameSpaceTreeControl2"
+
+[Software\\Classes\\Interface\\{7CC7AED8-290E-49BC-8945-C1401CC9306C}\\NumMethods] 1660099896
+#time=1d8ac641b30ba14
+@="26"
+
+[Software\\Classes\\Interface\\{7CC7AED8-290E-49BC-8945-C1401CC9306C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30bb2c
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{7CEF04D7-CB75-4E80-A7AB-5F5BC7D332DE}] 1660099896
+#time=1d8ac641b8868cc
+@="IEnumTfDisplayAttributeInfo"
+
+[Software\\Classes\\Interface\\{7CEF04D7-CB75-4E80-A7AB-5F5BC7D332DE}\\NumMethods] 1660099896
+#time=1d8ac641b886818
+@="7"
+
+[Software\\Classes\\Interface\\{7CEF04D7-CB75-4E80-A7AB-5F5BC7D332DE}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b886930
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{7DCF57AC-18AD-438B-824D-979BFFB74B7C}] 1660099896
+#time=1d8ac641b88c290
+@="ITfCompartmentMgr"
+
+[Software\\Classes\\Interface\\{7DCF57AC-18AD-438B-824D-979BFFB74B7C}\\NumMethods] 1660099896
+#time=1d8ac641b88be80
+@="6"
+
+[Software\\Classes\\Interface\\{7DCF57AC-18AD-438B-824D-979BFFB74B7C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88c2fe
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{7E9FB0D3-919F-4307-AB2E-9B1860310C93}] 1660099896
+#time=1d8ac641b3033d2
+@="IShellItem2"
+
+[Software\\Classes\\Interface\\{7E9FB0D3-919F-4307-AB2E-9B1860310C93}\\NumMethods] 1660099896
+#time=1d8ac641b303314
+@="21"
+
+[Software\\Classes\\Interface\\{7E9FB0D3-919F-4307-AB2E-9B1860310C93}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b303436
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{7FB9ACF1-26BE-400E-85B5-294B9C75DFD6}] 1660099897
+#time=1d8ac641bc5c74e
+@="IRepetitionPattern"
+
+[Software\\Classes\\Interface\\{7FB9ACF1-26BE-400E-85B5-294B9C75DFD6}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc5c44c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7FB9ACF1-26BE-400E-85B5-294B9C75DFD6}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc5c5e6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{7FB9ACF1-26BE-400E-85B5-294B9C75DFD6}\\TypeLib] 1660099897
+#time=1d8ac641bc5c988
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{7FD52380-4E07-101B-AE2D-08002B2EC713}] 1660099896
+#time=1d8ac641ba3e67e
+@="IPersistStreamInit"
+
+[Software\\Classes\\Interface\\{7FD52380-4E07-101B-AE2D-08002B2EC713}\\NumMethods] 1660099896
+#time=1d8ac641ba3e5ca
+@="9"
+
+[Software\\Classes\\Interface\\{7FD52380-4E07-101B-AE2D-08002B2EC713}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3e6e2
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{808F4E35-8D5A-4FBE-8466-33A41279ED30}] 1660099895
+#time=1d8ac641b05ce26
+@="IMXReaderControl"
+
+[Software\\Classes\\Interface\\{808F4E35-8D5A-4FBE-8466-33A41279ED30}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05cc64
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{808F4E35-8D5A-4FBE-8466-33A41279ED30}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05cd72
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{808F4E35-8D5A-4FBE-8466-33A41279ED30}\\TypeLib] 1660099895
+#time=1d8ac641b0bc376
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{8127D409-CCD3-4683-967A-B43D5B482BF7}] 1660099896
+#time=1d8ac641b88731c
+@="ITfTextEditSink"
+
+[Software\\Classes\\Interface\\{8127D409-CCD3-4683-967A-B43D5B482BF7}\\NumMethods] 1660099896
+#time=1d8ac641b88725e
+@="4"
+
+[Software\\Classes\\Interface\\{8127D409-CCD3-4683-967A-B43D5B482BF7}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b887380
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{816858A4-260D-4260-933A-2585F1ABC76B}] 1660099897
+#time=1d8ac641bea49c0
+@="IUpdateSession"
+
+[Software\\Classes\\Interface\\{816858A4-260D-4260-933A-2585F1ABC76B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea4808
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{816858A4-260D-4260-933A-2585F1ABC76B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea4916
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{816858A4-260D-4260-933A-2585F1ABC76B}\\TypeLib] 1660099897
+#time=1d8ac641bea4a88
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{81DDC1B8-9D35-47A6-B471-5B80F519223B}] 1660099897
+#time=1d8ac641be9d198
+@="ICategory"
+
+[Software\\Classes\\Interface\\{81DDC1B8-9D35-47A6-B471-5B80F519223B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9cfd6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{81DDC1B8-9D35-47A6-B471-5B80F519223B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9d0ee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{81DDC1B8-9D35-47A6-B471-5B80F519223B}\\TypeLib] 1660099897
+#time=1d8ac641be9d274
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{8267BBE3-F890-491C-B7B6-2DB1EF0E5D2B}] 1660099896
+#time=1d8ac641b759cd8
+@="INetFwServiceRestriction"
+
+[Software\\Classes\\Interface\\{8267BBE3-F890-491C-B7B6-2DB1EF0E5D2B}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b759ae4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8267BBE3-F890-491C-B7B6-2DB1EF0E5D2B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b759c10
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8267BBE3-F890-491C-B7B6-2DB1EF0E5D2B}\\TypeLib] 1660099896
+#time=1d8ac641b759db4
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{82A2986C-0293-4FD0-B279-B21B86C058BE}] 1660099897
+#time=1d8ac641be45286
+@="IWMPSyncDevice"
+
+[Software\\Classes\\Interface\\{82A2986C-0293-4FD0-B279-B21B86C058BE}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be450a6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{82A2986C-0293-4FD0-B279-B21B86C058BE}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be451be
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{82A2986C-0293-4FD0-B279-B21B86C058BE}\\TypeLib] 1660099897
+#time=1d8ac641be4536c
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{8363BC22-B4B4-4B19-989D-1CD765749DD1}] 1660099897
+#time=1d8ac641be3eae4
+@="IWMPMediaCollection"
+
+[Software\\Classes\\Interface\\{8363BC22-B4B4-4B19-989D-1CD765749DD1}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be3e8a0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8363BC22-B4B4-4B19-989D-1CD765749DD1}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be3ea08
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8363BC22-B4B4-4B19-989D-1CD765749DD1}\\TypeLib] 1660099897
+#time=1d8ac641be3ee22
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{83E81B93-0873-474D-8A8C-F2018B1A939C}] 1660099896
+#time=1d8ac641babc6dc
+@="IBackgroundCopyFile2"
+
+[Software\\Classes\\Interface\\{83E81B93-0873-474D-8A8C-F2018B1A939C}\\NumMethods] 1660099896
+#time=1d8ac641babc61e
+@="8"
+
+[Software\\Classes\\Interface\\{83E81B93-0873-474D-8A8C-F2018B1A939C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babc740
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{84594461-0053-4342-A8FD-088FABF11F32}] 1660099897
+#time=1d8ac641bc623b0
+@="IIdleSettings"
+
+[Software\\Classes\\Interface\\{84594461-0053-4342-A8FD-088FABF11F32}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc5dc20
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{84594461-0053-4342-A8FD-088FABF11F32}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc5fe08
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{84594461-0053-4342-A8FD-088FABF11F32}\\TypeLib] 1660099897
+#time=1d8ac641bc643b8
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{84BCCD23-5FDE-4CDB-AEA4-AF64B83D78AB}] 1660099896
+#time=1d8ac641b30d7c4
+@="IFileSaveDialog"
+
+[Software\\Classes\\Interface\\{84BCCD23-5FDE-4CDB-AEA4-AF64B83D78AB}\\NumMethods] 1660099896
+#time=1d8ac641b30d710
+@="32"
+
+[Software\\Classes\\Interface\\{84BCCD23-5FDE-4CDB-AEA4-AF64B83D78AB}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30d81e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{85CB6900-4D95-11CF-960C-0080C7F4EE85}] 1660099895
+#time=1d8ac641b0d3d8c
+@="IShellWindows"
+
+[Software\\Classes\\Interface\\{85CB6900-4D95-11CF-960C-0080C7F4EE85}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d3bd4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{85CB6900-4D95-11CF-960C-0080C7F4EE85}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d3ce2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{85CB6900-4D95-11CF-960C-0080C7F4EE85}\\TypeLib] 1660099895
+#time=1d8ac641b0d3e54
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{85DF5081-1B24-4F32-878A-D9D14DF4CB77}] 1660099897
+#time=1d8ac641bc5d7b6
+@="ITriggerCollection"
+
+[Software\\Classes\\Interface\\{85DF5081-1B24-4F32-878A-D9D14DF4CB77}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc5d4dc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{85DF5081-1B24-4F32-878A-D9D14DF4CB77}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc5d6a8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{85DF5081-1B24-4F32-878A-D9D14DF4CB77}\\TypeLib] 1660099897
+#time=1d8ac641bc5d8ec
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{863A99A0-21BC-11D0-82B4-00A0C90C29C5}] 1660099896
+#time=1d8ac641b2fd1b2
+@="ITargetNotify"
+
+[Software\\Classes\\Interface\\{863A99A0-21BC-11D0-82B4-00A0C90C29C5}\\NumMethods] 1660099896
+#time=1d8ac641b2fd112
+@="5"
+
+[Software\\Classes\\Interface\\{863A99A0-21BC-11D0-82B4-00A0C90C29C5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fd20c
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{86462810-593B-4916-9764-19C08E9CE110}] 1660099896
+#time=1d8ac641b88a760
+@="ITfContextOwnerCompositionServices"
+
+[Software\\Classes\\Interface\\{86462810-593B-4916-9764-19C08E9CE110}\\NumMethods] 1660099896
+#time=1d8ac641b88a6a2
+@="8"
+
+[Software\\Classes\\Interface\\{86462810-593B-4916-9764-19C08E9CE110}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88a7ba
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{86627EB4-42A7-41E4-A4D9-AC33A72F2D52}] 1660099897
+#time=1d8ac641bc6b83e
+@="IRegisteredTaskCollection"
+
+[Software\\Classes\\Interface\\{86627EB4-42A7-41E4-A4D9-AC33A72F2D52}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc6b67c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{86627EB4-42A7-41E4-A4D9-AC33A72F2D52}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc6b78a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{86627EB4-42A7-41E4-A4D9-AC33A72F2D52}\\TypeLib] 1660099897
+#time=1d8ac641bc6b910
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{866738B9-6CF2-4DE8-8767-F794EBE74F4E}] 1660099896
+#time=1d8ac641bbc678a
+@="IShellDispatch5"
+
+[Software\\Classes\\Interface\\{866738B9-6CF2-4DE8-8767-F794EBE74F4E}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc65c8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{866738B9-6CF2-4DE8-8767-F794EBE74F4E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc66e0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{866738B9-6CF2-4DE8-8767-F794EBE74F4E}\\TypeLib] 1660099896
+#time=1d8ac641bbc6852
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{86D52E11-94A8-11D0-82AF-00C04FD5AE38}] 1660099896
+#time=1d8ac641b2fd892
+@="ITargetFrame2"
+
+[Software\\Classes\\Interface\\{86D52E11-94A8-11D0-82AF-00C04FD5AE38}\\NumMethods] 1660099896
+#time=1d8ac641b2fd70c
+@="15"
+
+[Software\\Classes\\Interface\\{86D52E11-94A8-11D0-82AF-00C04FD5AE38}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fd914
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{88A05C00-F000-11CE-8350-444553540000}] 1660099896
+#time=1d8ac641bbc806c
+@="IShellLinkDual"
+
+[Software\\Classes\\Interface\\{88A05C00-F000-11CE-8350-444553540000}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc7ea0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{88A05C00-F000-11CE-8350-444553540000}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc7fb8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{88A05C00-F000-11CE-8350-444553540000}\\TypeLib] 1660099896
+#time=1d8ac641bbc8134
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{88AFB4B2-140A-44D2-91E6-4543DA467CD1}] 1660099897
+#time=1d8ac641be457ea
+@="IWMPSyncDevice2"
+
+[Software\\Classes\\Interface\\{88AFB4B2-140A-44D2-91E6-4543DA467CD1}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be455f6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{88AFB4B2-140A-44D2-91E6-4543DA467CD1}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be45736
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{88AFB4B2-140A-44D2-91E6-4543DA467CD1}\\TypeLib] 1660099897
+#time=1d8ac641be458c6
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{88E39E80-3578-11CF-AE69-08002B2E1262}] 1660099896
+#time=1d8ac641b304ebc
+@="IShellView2"
+
+[Software\\Classes\\Interface\\{88E39E80-3578-11CF-AE69-08002B2E1262}\\NumMethods] 1660099896
+#time=1d8ac641b304dfe
+@="20"
+
+[Software\\Classes\\Interface\\{88E39E80-3578-11CF-AE69-08002B2E1262}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b304f16
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{894AD3B0-EF97-11CE-9BC9-00AA00608E01}] 1660099896
+#time=1d8ac641ba40b2c
+@="IOleUndoUnit"
+
+[Software\\Classes\\Interface\\{894AD3B0-EF97-11CE-9BC9-00AA00608E01}\\NumMethods] 1660099896
+#time=1d8ac641ba40a78
+@="7"
+
+[Software\\Classes\\Interface\\{894AD3B0-EF97-11CE-9BC9-00AA00608E01}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba40ba4
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{89C31040-846B-11CE-97D3-00AA0055595A}] 1660099896
+#time=1d8ac641bac585e
+@="IEnumMediaTypes"
+
+[Software\\Classes\\Interface\\{89C31040-846B-11CE-97D3-00AA0055595A}\\NumMethods] 1660099896
+#time=1d8ac641bac57b4
+@="7"
+
+[Software\\Classes\\Interface\\{89C31040-846B-11CE-97D3-00AA0055595A}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac58c2
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{8B167D60-8605-11D0-ABCB-00A0C90FFFC0}] 1660099896
+#time=1d8ac641b9583ae
+@="DScriptControlSource"
+
+[Software\\Classes\\Interface\\{8B167D60-8605-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9581f6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8B167D60-8605-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b9582fa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8B167D60-8605-11D0-ABCB-00A0C90FFFC0}\\TypeLib] 1660099896
+#time=1d8ac641b958462
+@="{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{8BE2D872-86AA-4D47-B776-32CCA40C7018}] 1660099896
+#time=1d8ac641b30e818
+@="IKnownFolderManager"
+
+[Software\\Classes\\Interface\\{8BE2D872-86AA-4D47-B776-32CCA40C7018}\\NumMethods] 1660099896
+#time=1d8ac641b30e778
+@="13"
+
+[Software\\Classes\\Interface\\{8BE2D872-86AA-4D47-B776-32CCA40C7018}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30e868
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{8BE47B07-57F6-11D2-9EEE-00C04F797396}] 1660099895
+#time=1d8ac641b0eb626
+@="ISpeechVoiceStatus"
+
+[Software\\Classes\\Interface\\{8BE47B07-57F6-11D2-9EEE-00C04F797396}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0eb450
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8BE47B07-57F6-11D2-9EEE-00C04F797396}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0eb572
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8BE47B07-57F6-11D2-9EEE-00C04F797396}\\TypeLib] 1660099895
+#time=1d8ac641b0eb6e4
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{8C033CAA-6CD6-4F73-B728-4531AF74945F}] 1660099895
+#time=1d8ac641b05bfee
+@="IVBSAXXMLReader"
+
+[Software\\Classes\\Interface\\{8C033CAA-6CD6-4F73-B728-4531AF74945F}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05be2c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8C033CAA-6CD6-4F73-B728-4531AF74945F}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05bf3a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8C033CAA-6CD6-4F73-B728-4531AF74945F}\\TypeLib] 1660099895
+#time=1d8ac641b0bba16
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{8CC497C0-A1DF-11CE-8098-00AA0047BE5D}] 1660099896
+#time=1d8ac641bb03618
+@="ITextDocument"
+
+[Software\\Classes\\Interface\\{8CC497C0-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb0342e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C0-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb03564
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C0-A1DF-11CE-8098-00AA0047BE5D}\\TypeLib] 1660099896
+#time=1d8ac641bb036f4
+@="{8CC497C9-A1DF-11CE-8098-00AA0047BE5D}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{8CC497C1-A1DF-11CE-8098-00AA0047BE5D}] 1660099896
+#time=1d8ac641bb02aec
+@="ITextSelection"
+
+[Software\\Classes\\Interface\\{8CC497C1-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb02920
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C1-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb02a38
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C1-A1DF-11CE-8098-00AA0047BE5D}\\TypeLib] 1660099896
+#time=1d8ac641bb02bfa
+@="{8CC497C9-A1DF-11CE-8098-00AA0047BE5D}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{8CC497C2-A1DF-11CE-8098-00AA0047BE5D}] 1660099896
+#time=1d8ac641bb02614
+@="ITextRange"
+
+[Software\\Classes\\Interface\\{8CC497C2-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb02448
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C2-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb02560
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C2-A1DF-11CE-8098-00AA0047BE5D}\\TypeLib] 1660099896
+#time=1d8ac641bb026dc
+@="{8CC497C9-A1DF-11CE-8098-00AA0047BE5D}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{8CC497C3-A1DF-11CE-8098-00AA0047BE5D}] 1660099896
+#time=1d8ac641bb01c0a
+@="ITextFont"
+
+[Software\\Classes\\Interface\\{8CC497C3-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb01a2a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C3-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb01b4c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C3-A1DF-11CE-8098-00AA0047BE5D}\\TypeLib] 1660099896
+#time=1d8ac641bb01cdc
+@="{8CC497C9-A1DF-11CE-8098-00AA0047BE5D}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{8CC497C4-A1DF-11CE-8098-00AA0047BE5D}] 1660099896
+#time=1d8ac641bb02128
+@="ITextPara"
+
+[Software\\Classes\\Interface\\{8CC497C4-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb01f48
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C4-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb0206a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C4-A1DF-11CE-8098-00AA0047BE5D}\\TypeLib] 1660099896
+#time=1d8ac641bb021f0
+@="{8CC497C9-A1DF-11CE-8098-00AA0047BE5D}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{8CC497C5-A1DF-11CE-8098-00AA0047BE5D}] 1660099896
+#time=1d8ac641bb03028
+@="ITextStoryRanges"
+
+[Software\\Classes\\Interface\\{8CC497C5-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb02e48
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C5-A1DF-11CE-8098-00AA0047BE5D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb02f60
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CC497C5-A1DF-11CE-8098-00AA0047BE5D}\\TypeLib] 1660099896
+#time=1d8ac641bb030f0
+@="{8CC497C9-A1DF-11CE-8098-00AA0047BE5D}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{8CFAC062-A080-4C15-9A88-AA7C2AF80DFC}] 1660099897
+#time=1d8ac641bc6bd2a
+@="ITaskFolder"
+
+[Software\\Classes\\Interface\\{8CFAC062-A080-4C15-9A88-AA7C2AF80DFC}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc6bb68
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CFAC062-A080-4C15-9A88-AA7C2AF80DFC}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc6bc80
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8CFAC062-A080-4C15-9A88-AA7C2AF80DFC}\\TypeLib] 1660099897
+#time=1d8ac641bc6bdf2
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{8D19C834-8879-11D1-83E9-00C04FC2C6D4}] 1660099896
+#time=1d8ac641ba13384
+@="IOplockStorage"
+
+[Software\\Classes\\Interface\\{8D19C834-8879-11D1-83E9-00C04FC2C6D4}\\NumMethods] 1660099896
+#time=1d8ac641ba132e4
+@="5"
+
+[Software\\Classes\\Interface\\{8D19C834-8879-11D1-83E9-00C04FC2C6D4}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba133de
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8DA61686-4668-4A5C-AE5D-803193293DBE}] 1660099897
+#time=1d8ac641be4165e
+@="IWMPDVD"
+
+[Software\\Classes\\Interface\\{8DA61686-4668-4A5C-AE5D-803193293DBE}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be41474
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8DA61686-4668-4A5C-AE5D-803193293DBE}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be415a0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8DA61686-4668-4A5C-AE5D-803193293DBE}\\TypeLib] 1660099897
+#time=1d8ac641be4173a
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{8F1A7EA6-1654-4502-A86E-B2902344D507}] 1660099896
+#time=1d8ac641b88c8c6
+@="IEnumTfContexts"
+
+[Software\\Classes\\Interface\\{8F1A7EA6-1654-4502-A86E-B2902344D507}\\NumMethods] 1660099896
+#time=1d8ac641b88c826
+@="7"
+
+[Software\\Classes\\Interface\\{8F1A7EA6-1654-4502-A86E-B2902344D507}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88c920
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{8F45ABF1-F9AE-4B95-A933-F0F66E5056EA}] 1660099897
+#time=1d8ac641bea3638
+@="IUpdateSearcher"
+
+[Software\\Classes\\Interface\\{8F45ABF1-F9AE-4B95-A933-F0F66E5056EA}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea3476
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8F45ABF1-F9AE-4B95-A933-F0F66E5056EA}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea358e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8F45ABF1-F9AE-4B95-A933-F0F66E5056EA}\\TypeLib] 1660099897
+#time=1d8ac641bea371e
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{8FD4711D-2D02-4C8C-87E3-EFF699DE127E}] 1660099897
+#time=1d8ac641bc6953e
+@="ITaskSettings"
+
+[Software\\Classes\\Interface\\{8FD4711D-2D02-4C8C-87E3-EFF699DE127E}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc66d0c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8FD4711D-2D02-4C8C-87E3-EFF699DE127E}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc693f4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{8FD4711D-2D02-4C8C-87E3-EFF699DE127E}\\TypeLib] 1660099897
+#time=1d8ac641bc69638
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{9047D593-01DD-4B72-81A3-E4A0CA69F407}] 1660099895
+#time=1d8ac641b0e9e52
+@="ISpeechPhraseRules"
+
+[Software\\Classes\\Interface\\{9047D593-01DD-4B72-81A3-E4A0CA69F407}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e9c40
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9047D593-01DD-4B72-81A3-E4A0CA69F407}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e9d4e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9047D593-01DD-4B72-81A3-E4A0CA69F407}\\TypeLib] 1660099895
+#time=1d8ac641b0e9f1a
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{9104D1AB-80C9-4FED-ABF0-2E6417A6DF14}] 1660099897
+#time=1d8ac641be3da0e
+@="IWMPSettings"
+
+[Software\\Classes\\Interface\\{9104D1AB-80C9-4FED-ABF0-2E6417A6DF14}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be3d770
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9104D1AB-80C9-4FED-ABF0-2E6417A6DF14}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be3d8e2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9104D1AB-80C9-4FED-ABF0-2E6417A6DF14}\\TypeLib] 1660099897
+#time=1d8ac641be3db08
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{91A565C1-E38F-11D0-94BF-00A0C9055CBF}] 1660099896
+#time=1d8ac641b78ced0
+@="IPersistHistory"
+
+[Software\\Classes\\Interface\\{91A565C1-E38F-11D0-94BF-00A0C9055CBF}\\NumMethods] 1660099896
+#time=1d8ac641b78cdea
+@="8"
+
+[Software\\Classes\\Interface\\{91A565C1-E38F-11D0-94BF-00A0C9055CBF}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b78cf5c
+@="{A4A1A128-768F-41E0-BF75-E4FDDD701CBA}"
+
+[Software\\Classes\\Interface\\{9216E421-2BF5-11D0-82B4-00A0C90C29C5}] 1660099896
+#time=1d8ac641b2fc744
+@="ITargetFramePriv"
+
+[Software\\Classes\\Interface\\{9216E421-2BF5-11D0-82B4-00A0C90C29C5}\\NumMethods] 1660099896
+#time=1d8ac641b2fc690
+@="9"
+
+[Software\\Classes\\Interface\\{9216E421-2BF5-11D0-82B4-00A0C90C29C5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fc7a8
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{92218CAB-ECAA-4335-8133-807FD234C2EE}] 1660099896
+#time=1d8ac641b3100d2
+@="IAssocHandlerInvoker"
+
+[Software\\Classes\\Interface\\{92218CAB-ECAA-4335-8133-807FD234C2EE}\\NumMethods] 1660099896
+#time=1d8ac641b31001e
+@="5"
+
+[Software\\Classes\\Interface\\{92218CAB-ECAA-4335-8133-807FD234C2EE}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b310136
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{9285B776-2E7B-4BC0-B53E-580EB6FA967F}] 1660099895
+#time=1d8ac641b0e8f16
+@="ISpeechObjectTokens"
+
+[Software\\Classes\\Interface\\{9285B776-2E7B-4BC0-B53E-580EB6FA967F}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e8c64
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9285B776-2E7B-4BC0-B53E-580EB6FA967F}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e8e58
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9285B776-2E7B-4BC0-B53E-580EB6FA967F}\\TypeLib] 1660099895
+#time=1d8ac641b0e8fde
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{92980B30-C1DE-11D2-ABF5-00A0C905F375}] 1660099896
+#time=1d8ac641bac73f2
+@="IMemAllocatorNotifyCallbackTemp"
+
+[Software\\Classes\\Interface\\{92980B30-C1DE-11D2-ABF5-00A0C905F375}\\NumMethods] 1660099896
+#time=1d8ac641bac7334
+@="4"
+
+[Software\\Classes\\Interface\\{92980B30-C1DE-11D2-ABF5-00A0C905F375}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac7456
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{93E5A4E0-2D50-11D2-ABFA-00A0C9C6E38D}] 1660099896
+#time=1d8ac641bacbfba
+@="ICaptureGraphBuilder2"
+
+[Software\\Classes\\Interface\\{93E5A4E0-2D50-11D2-ABFA-00A0C9C6E38D}\\NumMethods] 1660099896
+#time=1d8ac641bacbefc
+@="12"
+
+[Software\\Classes\\Interface\\{93E5A4E0-2D50-11D2-ABFA-00A0C9C6E38D}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bacc01e
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{93F2F68C-1D1B-11D3-A30E-00C04F79ABD1}] 1660099896
+#time=1d8ac641b302b30
+@="IShellFolder2"
+
+[Software\\Classes\\Interface\\{93F2F68C-1D1B-11D3-A30E-00C04F79ABD1}\\NumMethods] 1660099896
+#time=1d8ac641b302a7c
+@="20"
+
+[Software\\Classes\\Interface\\{93F2F68C-1D1B-11D3-A30E-00C04F79ABD1}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b302c2a
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{947990DE-CC28-11D2-A0F7-00805F858FB1}] 1660099896
+#time=1d8ac641ba15012
+@="IDummyHICONIncluder"
+
+[Software\\Classes\\Interface\\{947990DE-CC28-11D2-A0F7-00805F858FB1}\\NumMethods] 1660099896
+#time=1d8ac641ba14f5e
+@="4"
+
+[Software\\Classes\\Interface\\{947990DE-CC28-11D2-A0F7-00805F858FB1}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba15076
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{94C9B4EE-A09F-4F92-8A1E-4A9BCE7E76FB}] 1660099897
+#time=1d8ac641bd7dde4
+@="IWICBitmapEncoderInfo"
+
+[Software\\Classes\\Interface\\{94C9B4EE-A09F-4F92-8A1E-4A9BCE7E76FB}\\NumMethods] 1660099897
+#time=1d8ac641bd7da60
+@="24"
+
+[Software\\Classes\\Interface\\{94C9B4EE-A09F-4F92-8A1E-4A9BCE7E76FB}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7de84
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{94D55E95-3FAC-11D3-B155-00C04F79FAA6}] 1660099897
+#time=1d8ac641be3c8b6
+@="IWMPMedia"
+
+[Software\\Classes\\Interface\\{94D55E95-3FAC-11D3-B155-00C04F79FAA6}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be3c6ea
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{94D55E95-3FAC-11D3-B155-00C04F79FAA6}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be3c802
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{94D55E95-3FAC-11D3-B155-00C04F79FAA6}\\TypeLib] 1660099897
+#time=1d8ac641be3c97e
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{961559CF-4E67-4662-8BF0-D93F1FCD61B3}] 1660099895
+#time=1d8ac641b0ef1a4
+@="ISpeechPhraseInfo"
+
+[Software\\Classes\\Interface\\{961559CF-4E67-4662-8BF0-D93F1FCD61B3}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0eefce
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{961559CF-4E67-4662-8BF0-D93F1FCD61B3}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ef0fa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{961559CF-4E67-4662-8BF0-D93F1FCD61B3}\\TypeLib] 1660099895
+#time=1d8ac641b0ef26c
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{969DC708-5C76-11D1-8D86-0000F804B057}] 1660099896
+#time=1d8ac641ba14ce8
+@="IThumbnailExtractor"
+
+[Software\\Classes\\Interface\\{969DC708-5C76-11D1-8D86-0000F804B057}\\NumMethods] 1660099896
+#time=1d8ac641ba14c3e
+@="5"
+
+[Software\\Classes\\Interface\\{969DC708-5C76-11D1-8D86-0000F804B057}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba14d42
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{96A0A4E0-D062-11CF-94B6-00AA0060275C}] 1660099896
+#time=1d8ac641b9014b4
+@="HTMLWindowEvents"
+
+[Software\\Classes\\Interface\\{96A0A4E0-D062-11CF-94B6-00AA0060275C}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b9012e8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{96A0A4E0-D062-11CF-94B6-00AA0060275C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b901400
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{96A0A4E0-D062-11CF-94B6-00AA0060275C}\\TypeLib] 1660099896
+#time=1d8ac641b9017a2
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{973510DB-7D7F-452B-8975-74A85828D354}] 1660099896
+#time=1d8ac641b30c716
+@="IFileDialogEvents"
+
+[Software\\Classes\\Interface\\{973510DB-7D7F-452B-8975-74A85828D354}\\NumMethods] 1660099896
+#time=1d8ac641b30c658
+@="10"
+
+[Software\\Classes\\Interface\\{973510DB-7D7F-452B-8975-74A85828D354}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30c770
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{973810AE-9599-4B88-9E4D-6EE98C9552DA}] 1660099896
+#time=1d8ac641b3107d0
+@="IEnumAssocHandlers"
+
+[Software\\Classes\\Interface\\{973810AE-9599-4B88-9E4D-6EE98C9552DA}\\NumMethods] 1660099896
+#time=1d8ac641b31071c
+@="4"
+
+[Software\\Classes\\Interface\\{973810AE-9599-4B88-9E4D-6EE98C9552DA}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b31082a
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{97EA99C7-0186-4AD4-8DF9-C5B4E0ED6B22}] 1660099896
+#time=1d8ac641babb8f4
+@="IBackgroundCopyCallback"
+
+[Software\\Classes\\Interface\\{97EA99C7-0186-4AD4-8DF9-C5B4E0ED6B22}\\NumMethods] 1660099896
+#time=1d8ac641babb836
+@="6"
+
+[Software\\Classes\\Interface\\{97EA99C7-0186-4AD4-8DF9-C5B4E0ED6B22}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babb94e
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{98325047-C671-4174-8D81-DEFCD3F03186}] 1660099896
+#time=1d8ac641b75ac82
+@="INetFwPolicy2"
+
+[Software\\Classes\\Interface\\{98325047-C671-4174-8D81-DEFCD3F03186}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75aa98
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{98325047-C671-4174-8D81-DEFCD3F03186}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75abb0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{98325047-C671-4174-8D81-DEFCD3F03186}\\TypeLib] 1660099896
+#time=1d8ac641b75ad5e
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{98B5E8A0-29CC-491A-AAC0-E6DB4FDCCEB6}] 1660099896
+#time=1d8ac641bc0d360
+@="IWiaPropertyStorage"
+
+[Software\\Classes\\Interface\\{98B5E8A0-29CC-491A-AAC0-E6DB4FDCCEB6}\\NumMethods] 1660099896
+#time=1d8ac641bc0d270
+@="3"
+
+[Software\\Classes\\Interface\\{98B5E8A0-29CC-491A-AAC0-E6DB4FDCCEB6}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bc0d3d8
+@="{4DB1AD10-3391-11D2-9A33-00C04FA36145}"
+
+[Software\\Classes\\Interface\\{99CAF010-415E-11CF-8814-00AA00B569F5}] 1660099896
+#time=1d8ac641ba126f0
+@="IFillLockBytes"
+
+[Software\\Classes\\Interface\\{99CAF010-415E-11CF-8814-00AA00B569F5}\\NumMethods] 1660099896
+#time=1d8ac641ba1263c
+@="7"
+
+[Software\\Classes\\Interface\\{99CAF010-415E-11CF-8814-00AA00B569F5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba1274a
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9B16ED16-D3DF-11D1-8B08-00600806D9B6}] 1660099895
+#time=1d8ac641b1021dc
+@="ISWbemQualifierSet"
+
+[Software\\Classes\\Interface\\{9B16ED16-D3DF-11D1-8B08-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b10204c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9B16ED16-D3DF-11D1-8B08-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b10213c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9B16ED16-D3DF-11D1-8B08-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b1022a4
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{9BA05970-F6A8-11CF-A442-00A0C90A8F39}] 1660099896
+#time=1d8ac641bbc1014
+@="IFolderViewOC"
+
+[Software\\Classes\\Interface\\{9BA05970-F6A8-11CF-A442-00A0C90A8F39}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc0b96
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9BA05970-F6A8-11CF-A442-00A0C90A8F39}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc0f2e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9BA05970-F6A8-11CF-A442-00A0C90A8F39}\\TypeLib] 1660099896
+#time=1d8ac641bbc126c
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{9BFBBC02-EFF1-101A-84ED-00AA00341D07}] 1660099896
+#time=1d8ac641ba3dfb2
+@="IPropertyNotifySink"
+
+[Software\\Classes\\Interface\\{9BFBBC02-EFF1-101A-84ED-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3def4
+@="5"
+
+[Software\\Classes\\Interface\\{9BFBBC02-EFF1-101A-84ED-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3e00c
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{9C2CAD80-3424-11CF-B670-00AA004CD6D8}] 1660099896
+#time=1d8ac641ba3b2d0
+@="IOleInPlaceSiteEx"
+
+[Software\\Classes\\Interface\\{9C2CAD80-3424-11CF-B670-00AA004CD6D8}\\NumMethods] 1660099896
+#time=1d8ac641ba3b226
+@="18"
+
+[Software\\Classes\\Interface\\{9C2CAD80-3424-11CF-B670-00AA004CD6D8}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3b334
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{9C4C6277-5027-441E-AFAE-CA1F542DA009}] 1660099896
+#time=1d8ac641b75976a
+@="INetFwRules"
+
+[Software\\Classes\\Interface\\{9C4C6277-5027-441E-AFAE-CA1F542DA009}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b759562
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9C4C6277-5027-441E-AFAE-CA1F542DA009}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b759698
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9C4C6277-5027-441E-AFAE-CA1F542DA009}\\TypeLib] 1660099896
+#time=1d8ac641b759846
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{9C86F320-DEE3-4DD1-B972-A303F26B061E}] 1660099897
+#time=1d8ac641bc6b366
+@="IRegisteredTask"
+
+[Software\\Classes\\Interface\\{9C86F320-DEE3-4DD1-B972-A303F26B061E}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc6b15e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9C86F320-DEE3-4DD1-B972-A303F26B061E}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc6b2b2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9C86F320-DEE3-4DD1-B972-A303F26B061E}\\TypeLib] 1660099897
+#time=1d8ac641bc6b42e
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{9EDDE9E7-8DEE-47EA-99DF-E6FAF2ED44BF}] 1660099897
+#time=1d8ac641bd7d16e
+@="IWICBitmapDecoder"
+
+[Software\\Classes\\Interface\\{9EDDE9E7-8DEE-47EA-99DF-E6FAF2ED44BF}\\NumMethods] 1660099897
+#time=1d8ac641bd7d07e
+@="14"
+
+[Software\\Classes\\Interface\\{9EDDE9E7-8DEE-47EA-99DF-E6FAF2ED44BF}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7d1f0
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{9F34FB65-13F4-4F15-BC57-3726B5E53D9F}] 1660099897
+#time=1d8ac641bd7f162
+@="IWICFormatConverterInfo"
+
+[Software\\Classes\\Interface\\{9F34FB65-13F4-4F15-BC57-3726B5E53D9F}\\NumMethods] 1660099897
+#time=1d8ac641bd7f086
+@="13"
+
+[Software\\Classes\\Interface\\{9F34FB65-13F4-4F15-BC57-3726B5E53D9F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7f1e4
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{9F7DEA84-C30B-4245-80B6-00E9F646F1B4}] 1660099897
+#time=1d8ac641bc6628a
+@="INetworkSettings"
+
+[Software\\Classes\\Interface\\{9F7DEA84-C30B-4245-80B6-00E9F646F1B4}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc65fc4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9F7DEA84-C30B-4245-80B6-00E9F646F1B4}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc66190
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{9F7DEA84-C30B-4245-80B6-00E9F646F1B4}\\TypeLib] 1660099897
+#time=1d8ac641bc665e6
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{A12DCF7D-14AB-4C1B-A8CD-63909F06025B}] 1660099897
+#time=1d8ac641be429b4
+@="IWMPError"
+
+[Software\\Classes\\Interface\\{A12DCF7D-14AB-4C1B-A8CD-63909F06025B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be427d4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A12DCF7D-14AB-4C1B-A8CD-63909F06025B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be428f6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A12DCF7D-14AB-4C1B-A8CD-63909F06025B}\\TypeLib] 1660099897
+#time=1d8ac641be42a86
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{A1FAF330-EF97-11CE-9BC9-00AA00608E01}] 1660099896
+#time=1d8ac641ba40e9c
+@="IOleParentUndoUnit"
+
+[Software\\Classes\\Interface\\{A1FAF330-EF97-11CE-9BC9-00AA00608E01}\\NumMethods] 1660099896
+#time=1d8ac641ba40de8
+@="12"
+
+[Software\\Classes\\Interface\\{A1FAF330-EF97-11CE-9BC9-00AA00608E01}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba40ef6
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{A2104830-7C70-11CF-8BCE-00AA00A3F1A6}] 1660099896
+#time=1d8ac641baca106
+@="IFileSinkFilter"
+
+[Software\\Classes\\Interface\\{A2104830-7C70-11CF-8BCE-00AA00A3F1A6}\\NumMethods] 1660099896
+#time=1d8ac641baca052
+@="5"
+
+[Software\\Classes\\Interface\\{A2104830-7C70-11CF-8BCE-00AA00A3F1A6}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641baca160
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{A376DD5E-09D4-427F-AF7C-FED5B6E1C1D6}] 1660099897
+#time=1d8ac641bea1bee
+@="IUpdateException"
+
+[Software\\Classes\\Interface\\{A376DD5E-09D4-427F-AF7C-FED5B6E1C1D6}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea1a22
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A376DD5E-09D4-427F-AF7C-FED5B6E1C1D6}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea1b3a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A376DD5E-09D4-427F-AF7C-FED5B6E1C1D6}\\TypeLib] 1660099897
+#time=1d8ac641bea1cb6
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{A39EE748-6A27-4817-A6F2-13914BEF5890}] 1660099897
+#time=1d8ac641bcb8364
+@="IUri"
+
+[Software\\Classes\\Interface\\{A39EE748-6A27-4817-A6F2-13914BEF5890}\\NumMethods] 1660099897
+#time=1d8ac641bcb82b0
+@="28"
+
+[Software\\Classes\\Interface\\{A39EE748-6A27-4817-A6F2-13914BEF5890}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb83c8
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{A3D8CEC0-7E5A-11CF-BBC5-00805F6CEF20}] 1660099896
+#time=1d8ac641bac7ad2
+@="IAMovieSetup"
+
+[Software\\Classes\\Interface\\{A3D8CEC0-7E5A-11CF-BBC5-00805F6CEF20}\\NumMethods] 1660099896
+#time=1d8ac641bac7a1e
+@="5"
+
+[Software\\Classes\\Interface\\{A3D8CEC0-7E5A-11CF-BBC5-00805F6CEF20}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac7b2c
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{A43C56D6-7451-48D4-AF96-B6CD2D0D9B7A}] 1660099897
+#time=1d8ac641bea0d3e
+@="IInstallationResult"
+
+[Software\\Classes\\Interface\\{A43C56D6-7451-48D4-AF96-B6CD2D0D9B7A}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea0b7c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A43C56D6-7451-48D4-AF96-B6CD2D0D9B7A}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea0c94
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A43C56D6-7451-48D4-AF96-B6CD2D0D9B7A}\\TypeLib] 1660099897
+#time=1d8ac641bea0e24
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{A4C6892C-3BA9-11D2-9DEA-00C04FB16162}] 1660099896
+#time=1d8ac641bbc58d0
+@="IShellDispatch2"
+
+[Software\\Classes\\Interface\\{A4C6892C-3BA9-11D2-9DEA-00C04FB16162}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc570e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A4C6892C-3BA9-11D2-9DEA-00C04FB16162}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc5826
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A4C6892C-3BA9-11D2-9DEA-00C04FB16162}\\TypeLib] 1660099896
+#time=1d8ac641bbc59a2
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{A5CA5F7F-1847-4D87-9C5B-918509F7511D}] 1660099897
+#time=1d8ac641bcb7432
+@="IMonikerProp"
+
+[Software\\Classes\\Interface\\{A5CA5F7F-1847-4D87-9C5B-918509F7511D}\\NumMethods] 1660099897
+#time=1d8ac641bcb7338
+@="4"
+
+[Software\\Classes\\Interface\\{A5CA5F7F-1847-4D87-9C5B-918509F7511D}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb74a0
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{A6207B2E-7CDD-426A-951E-5E1CBC5AFEAD}] 1660099896
+#time=1d8ac641b75684e
+@="INetFwIcmpSettings"
+
+[Software\\Classes\\Interface\\{A6207B2E-7CDD-426A-951E-5E1CBC5AFEAD}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b7565d8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A6207B2E-7CDD-426A-951E-5E1CBC5AFEAD}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b756786
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A6207B2E-7CDD-426A-951E-5E1CBC5AFEAD}\\TypeLib] 1660099896
+#time=1d8ac641b7569b6
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{A6BC3AC0-DBAA-11CE-9DE3-00AA004BB851}] 1660099896
+#time=1d8ac641ba3bf46
+@="IProvideClassInfo2"
+
+[Software\\Classes\\Interface\\{A6BC3AC0-DBAA-11CE-9DE3-00AA004BB851}\\NumMethods] 1660099896
+#time=1d8ac641ba3be92
+@="5"
+
+[Software\\Classes\\Interface\\{A6BC3AC0-DBAA-11CE-9DE3-00AA004BB851}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3bfaa
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{A6D897FF-0A95-11D1-B0BA-006008166E11}] 1660099896
+#time=1d8ac641b9071e8
+@="DWebBridgeEvents"
+
+[Software\\Classes\\Interface\\{A6D897FF-0A95-11D1-B0BA-006008166E11}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b906fe0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A6D897FF-0A95-11D1-B0BA-006008166E11}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90712a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A6D897FF-0A95-11D1-B0BA-006008166E11}\\TypeLib] 1660099896
+#time=1d8ac641b9072ba
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{A6EF9860-C720-11D0-9337-00A0C90DCAA9}] 1660099896
+#time=1d8ac641b5db834
+@="IDispatchEx"
+
+[Software\\Classes\\Interface\\{A6EF9860-C720-11D0-9337-00A0C90DCAA9}\\NumMethods] 1660099896
+#time=1d8ac641b5db622
+@="15"
+
+[Software\\Classes\\Interface\\{A6EF9860-C720-11D0-9337-00A0C90DCAA9}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5db8ac
+@="{10E2414A-EC59-49D2-BC51-5ADD2C36FEBC}"
+
+[Software\\Classes\\Interface\\{A6EF9861-C720-11D0-9337-00A0C90DCAA9}] 1660099896
+#time=1d8ac641b5dbbf4
+@="IDispError"
+
+[Software\\Classes\\Interface\\{A6EF9861-C720-11D0-9337-00A0C90DCAA9}\\NumMethods] 1660099896
+#time=1d8ac641b5dbb18
+@="9"
+
+[Software\\Classes\\Interface\\{A6EF9861-C720-11D0-9337-00A0C90DCAA9}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5dbc62
+@="{10E2414A-EC59-49D2-BC51-5ADD2C36FEBC}"
+
+[Software\\Classes\\Interface\\{A6EF9862-C720-11D0-9337-00A0C90DCAA9}] 1660099896
+#time=1d8ac641b5dbfe6
+@="IVariantChangeType"
+
+[Software\\Classes\\Interface\\{A6EF9862-C720-11D0-9337-00A0C90DCAA9}\\NumMethods] 1660099896
+#time=1d8ac641b5dbee2
+@="4"
+
+[Software\\Classes\\Interface\\{A6EF9862-C720-11D0-9337-00A0C90DCAA9}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5dc04a
+@="{10E2414A-EC59-49D2-BC51-5ADD2C36FEBC}"
+
+[Software\\Classes\\Interface\\{A721791A-0DEF-4D06-BD91-2118BF1DB10B}] 1660099897
+#time=1d8ac641bd7aec8
+@="IWICMetadataQueryWriter"
+
+[Software\\Classes\\Interface\\{A721791A-0DEF-4D06-BD91-2118BF1DB10B}\\NumMethods] 1660099897
+#time=1d8ac641bd7ade2
+@="9"
+
+[Software\\Classes\\Interface\\{A721791A-0DEF-4D06-BD91-2118BF1DB10B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7af86
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{A781718C-579A-4B15-A280-32B8577ACC5E}] 1660099896
+#time=1d8ac641b889fcc
+@="ITfCompositionSink"
+
+[Software\\Classes\\Interface\\{A781718C-579A-4B15-A280-32B8577ACC5E}\\NumMethods] 1660099896
+#time=1d8ac641b889f0e
+@="4"
+
+[Software\\Classes\\Interface\\{A781718C-579A-4B15-A280-32B8577ACC5E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88a026
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{A7ABA9C1-8983-11CF-8F20-00805F2CD064}] 1660099896
+#time=1d8ac641ba3c2c0
+@="IProvideMultipleClassInfo"
+
+[Software\\Classes\\Interface\\{A7ABA9C1-8983-11CF-8F20-00805F2CD064}\\NumMethods] 1660099896
+#time=1d8ac641ba3c20c
+@="7"
+
+[Software\\Classes\\Interface\\{A7ABA9C1-8983-11CF-8F20-00805F2CD064}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3c324
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{A7AE5F64-C4D7-4D7F-9307-4D24EE54B841}] 1660099896
+#time=1d8ac641bbc400c
+@="Folder3"
+
+[Software\\Classes\\Interface\\{A7AE5F64-C4D7-4D7F-9307-4D24EE54B841}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc3e4a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A7AE5F64-C4D7-4D7F-9307-4D24EE54B841}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc3f62
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A7AE5F64-C4D7-4D7F-9307-4D24EE54B841}\\TypeLib] 1660099896
+#time=1d8ac641bbc40d4
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{A7BFE112-A4A0-48D9-B602-C313843F6964}] 1660099895
+#time=1d8ac641b0ea316
+@="ISpeechPhraseRule"
+
+[Software\\Classes\\Interface\\{A7BFE112-A4A0-48D9-B602-C313843F6964}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ea154
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A7BFE112-A4A0-48D9-B602-C313843F6964}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ea262
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A7BFE112-A4A0-48D9-B602-C313843F6964}\\TypeLib] 1660099895
+#time=1d8ac641b0ea3d4
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{A7F04F3C-A290-435B-AADF-A116C3357A5C}] 1660099897
+#time=1d8ac641bea316a
+@="IUpdateHistoryEntryCollection"
+
+[Software\\Classes\\Interface\\{A7F04F3C-A290-435B-AADF-A116C3357A5C}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea2db4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A7F04F3C-A290-435B-AADF-A116C3357A5C}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea30b6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A7F04F3C-A290-435B-AADF-A116C3357A5C}\\TypeLib] 1660099897
+#time=1d8ac641bea3232
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{A7FE6EDA-1932-4281-B881-87B31B8BC52C}] 1660099895
+#time=1d8ac641b0d4728
+@="IShellUIHelper2"
+
+[Software\\Classes\\Interface\\{A7FE6EDA-1932-4281-B881-87B31B8BC52C}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d4570
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A7FE6EDA-1932-4281-B881-87B31B8BC52C}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d467e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A7FE6EDA-1932-4281-B881-87B31B8BC52C}\\TypeLib] 1660099895
+#time=1d8ac641b0d47f0
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{A9D758A0-4617-11CF-95FC-00AA00680DB4}] 1660099896
+#time=1d8ac641ba12a2e
+@="IProgressNotify"
+
+[Software\\Classes\\Interface\\{A9D758A0-4617-11CF-95FC-00AA00680DB4}\\NumMethods] 1660099896
+#time=1d8ac641ba1295c
+@="4"
+
+[Software\\Classes\\Interface\\{A9D758A0-4617-11CF-95FC-00AA00680DB4}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba12a92
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{A9DB33A2-AF5F-43C7-B679-74F5984B5AA4}] 1660099897
+#time=1d8ac641bd7c20a
+@="IWICPixelFormatInfo2"
+
+[Software\\Classes\\Interface\\{A9DB33A2-AF5F-43C7-B679-74F5984B5AA4}\\NumMethods] 1660099897
+#time=1d8ac641bd7c124
+@="18"
+
+[Software\\Classes\\Interface\\{A9DB33A2-AF5F-43C7-B679-74F5984B5AA4}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7c282
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{AA5B6A80-B834-11D0-932F-00A0C90DCAA9}] 1660099896
+#time=1d8ac641b2f433c
+@="IActiveScriptParseProcedure32"
+
+[Software\\Classes\\Interface\\{AA5B6A80-B834-11D0-932F-00A0C90DCAA9}\\NumMethods] 1660099896
+#time=1d8ac641b2f4288
+@="4"
+
+[Software\\Classes\\Interface\\{AA5B6A80-B834-11D0-932F-00A0C90DCAA9}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f43a0
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{AA634FC7-5888-44A7-A257-3A47150D3A0E}] 1660099895
+#time=1d8ac641b03d3f0
+@="IXMLDOMSelection"
+
+[Software\\Classes\\Interface\\{AA634FC7-5888-44A7-A257-3A47150D3A0E}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b03d1f2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AA634FC7-5888-44A7-A257-3A47150D3A0E}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b03d314
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AA634FC7-5888-44A7-A257-3A47150D3A0E}\\TypeLib] 1660099895
+#time=1d8ac641b0b7114
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{AA80E7F4-2021-11D2-93E0-0060B067B86E}] 1660099896
+#time=1d8ac641b883546
+@="ITfDocumentMgr"
+
+[Software\\Classes\\Interface\\{AA80E7F4-2021-11D2-93E0-0060B067B86E}\\NumMethods] 1660099896
+#time=1d8ac641b8834a6
+@="9"
+
+[Software\\Classes\\Interface\\{AA80E7F4-2021-11D2-93E0-0060B067B86E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b8835a0
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{AA80E7FD-2021-11D2-93E0-0060B067B86E}] 1660099896
+#time=1d8ac641b88556c
+@="ITfContext"
+
+[Software\\Classes\\Interface\\{AA80E7FD-2021-11D2-93E0-0060B067B86E}\\NumMethods] 1660099896
+#time=1d8ac641b885440
+@="18"
+
+[Software\\Classes\\Interface\\{AA80E7FD-2021-11D2-93E0-0060B067B86E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88562a
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{AA80E7FF-2021-11D2-93E0-0060B067B86E}] 1660099896
+#time=1d8ac641b888b54
+@="ITfRange"
+
+[Software\\Classes\\Interface\\{AA80E7FF-2021-11D2-93E0-0060B067B86E}\\NumMethods] 1660099896
+#time=1d8ac641b888aa0
+@="25"
+
+[Software\\Classes\\Interface\\{AA80E7FF-2021-11D2-93E0-0060B067B86E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b888bcc
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{AA80E801-2021-11D2-93E0-0060B067B86E}] 1660099896
+#time=1d8ac641b882c36
+@="ITfThreadMgr"
+
+[Software\\Classes\\Interface\\{AA80E801-2021-11D2-93E0-0060B067B86E}\\NumMethods] 1660099896
+#time=1d8ac641b882b8c
+@="14"
+
+[Software\\Classes\\Interface\\{AA80E801-2021-11D2-93E0-0060B067B86E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b882c86
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{AA80E803-2021-11D2-93E0-0060B067B86E}] 1660099896
+#time=1d8ac641b888802
+@="ITfEditSession"
+
+[Software\\Classes\\Interface\\{AA80E803-2021-11D2-93E0-0060B067B86E}\\NumMethods] 1660099896
+#time=1d8ac641b888744
+@="4"
+
+[Software\\Classes\\Interface\\{AA80E803-2021-11D2-93E0-0060B067B86E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88885c
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{AA80E808-2021-11D2-93E0-0060B067B86E}] 1660099896
+#time=1d8ac641b88cc18
+@="IEnumTfDocumentMgrs"
+
+[Software\\Classes\\Interface\\{AA80E808-2021-11D2-93E0-0060B067B86E}\\NumMethods] 1660099896
+#time=1d8ac641b88cb6e
+@="7"
+
+[Software\\Classes\\Interface\\{AA80E808-2021-11D2-93E0-0060B067B86E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88cc72
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{AA80E80E-2021-11D2-93E0-0060B067B86E}] 1660099896
+#time=1d8ac641b88810e
+@="ITfThreadMgrEventSink"
+
+[Software\\Classes\\Interface\\{AA80E80E-2021-11D2-93E0-0060B067B86E}\\NumMethods] 1660099896
+#time=1d8ac641b88805a
+@="8"
+
+[Software\\Classes\\Interface\\{AA80E80E-2021-11D2-93E0-0060B067B86E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b888172
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{AA80E901-2021-11D2-93E0-0060B067B86E}] 1660099896
+#time=1d8ac641b88493c
+@="ITextStoreACPServices"
+
+[Software\\Classes\\Interface\\{AA80E901-2021-11D2-93E0-0060B067B86E}\\NumMethods] 1660099896
+#time=1d8ac641b8847f2
+@="7"
+
+[Software\\Classes\\Interface\\{AA80E901-2021-11D2-93E0-0060B067B86E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b884c02
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{AAA74EF9-8EE7-4659-88D9-F8C504DA73CC}] 1660099897
+#time=1d8ac641bcb54e8
+@="IBindStatusCallbackEx"
+
+[Software\\Classes\\Interface\\{AAA74EF9-8EE7-4659-88D9-F8C504DA73CC}\\NumMethods] 1660099897
+#time=1d8ac641bcb5434
+@="12"
+
+[Software\\Classes\\Interface\\{AAA74EF9-8EE7-4659-88D9-F8C504DA73CC}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb554c
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{AADC65F6-CFF1-11D1-B747-00C04FC2B085}] 1660099896
+#time=1d8ac641bb5701a
+@="IScriptEncoder"
+
+[Software\\Classes\\Interface\\{AADC65F6-CFF1-11D1-B747-00C04FC2B085}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb56df4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AADC65F6-CFF1-11D1-B747-00C04FC2B085}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb56f5c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AADC65F6-CFF1-11D1-B747-00C04FC2B085}\\TypeLib] 1660099896
+#time=1d8ac641bb570f6
+@="{420B2830-E718-11CF-893D-00A0C9054228}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{acc84351-04ff-44f9-b23f-655ed168c6d5}] 1660099896
+#time=1d8ac641b78b7e2
+@="IInternetExplorerManager"
+
+[Software\\Classes\\Interface\\{acc84351-04ff-44f9-b23f-655ed168c6d5}\\NumMethods] 1660099896
+#time=1d8ac641b78b83c
+@="4"
+
+[Software\\Classes\\Interface\\{acc84351-04ff-44f9-b23f-655ed168c6d5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b78b954
+@="{A4A1A128-768F-41E0-BF75-E4FDDD701CBA}"
+
+[Software\\Classes\\Interface\\{ADB880A1-D8FF-11CF-9377-00AA003B7A11}] 1660099896
+#time=1d8ac641b742b00
+@="IHHCtrl"
+
+[Software\\Classes\\Interface\\{ADB880A1-D8FF-11CF-9377-00AA003B7A11}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b74289e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{ADB880A1-D8FF-11CF-9377-00AA003B7A11}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b742a06
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{ADB880A1-D8FF-11CF-9377-00AA003B7A11}\\TypeLib] 1660099896
+#time=1d8ac641b742c40
+@="{ADB880A2-D8FF-11CF-9377-00AA003B7A11}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{ADB880A3-D8FF-11CF-9377-00AA003B7A11}] 1660099896
+#time=1d8ac641b74312c
+@="_HHCtrlEvents"
+
+[Software\\Classes\\Interface\\{ADB880A3-D8FF-11CF-9377-00AA003B7A11}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b742efc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{ADB880A3-D8FF-11CF-9377-00AA003B7A11}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b743078
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{ADB880A3-D8FF-11CF-9377-00AA003B7A11}\\TypeLib] 1660099896
+#time=1d8ac641b7431fe
+@="{ADB880A2-D8FF-11CF-9377-00AA003B7A11}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{ADE87BF7-7B56-4275-8FAB-B9B0E591844B}] 1660099897
+#time=1d8ac641bea4f10
+@="ISystemInformation"
+
+[Software\\Classes\\Interface\\{ADE87BF7-7B56-4275-8FAB-B9B0E591844B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea4d3a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{ADE87BF7-7B56-4275-8FAB-B9B0E591844B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea4e5c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{ADE87BF7-7B56-4275-8FAB-B9B0E591844B}\\TypeLib] 1660099897
+#time=1d8ac641bea4fec
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{AE24FDAD-03C6-11D1-8B76-0080C744F389}] 1660099896
+#time=1d8ac641b907738
+@="IWebBridge"
+
+[Software\\Classes\\Interface\\{AE24FDAD-03C6-11D1-8B76-0080C744F389}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b90753a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AE24FDAD-03C6-11D1-8B76-0080C744F389}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b90767a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AE24FDAD-03C6-11D1-8B76-0080C744F389}\\TypeLib] 1660099896
+#time=1d8ac641b907846
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{AE6287B0-0084-11D2-973B-00A0C9068F2E}] 1660099896
+#time=1d8ac641bc0e01c
+@="IWiaEventCallback"
+
+[Software\\Classes\\Interface\\{AE6287B0-0084-11D2-973B-00A0C9068F2E}\\NumMethods] 1660099896
+#time=1d8ac641bc0df22
+@="4"
+
+[Software\\Classes\\Interface\\{AE6287B0-0084-11D2-973B-00A0C9068F2E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bc0e102
+@="{4DB1AD10-3391-11D2-9A33-00C04FA36145}"
+
+[Software\\Classes\\Interface\\{AEDAE97E-D7EE-4796-B960-7F092AE844AB}] 1660099896
+#time=1d8ac641b2f22d0
+@="IActiveScriptSiteUIControl"
+
+[Software\\Classes\\Interface\\{AEDAE97E-D7EE-4796-B960-7F092AE844AB}\\NumMethods] 1660099896
+#time=1d8ac641b2f221c
+@="4"
+
+[Software\\Classes\\Interface\\{AEDAE97E-D7EE-4796-B960-7F092AE844AB}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f232a
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{AF230D27-BABA-4E42-ACED-F524F22CFCE2}] 1660099896
+#time=1d8ac641b759206
+@="INetFwRule"
+
+[Software\\Classes\\Interface\\{AF230D27-BABA-4E42-ACED-F524F22CFCE2}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75901c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AF230D27-BABA-4E42-ACED-F524F22CFCE2}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b759152
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AF230D27-BABA-4E42-ACED-F524F22CFCE2}\\TypeLib] 1660099896
+#time=1d8ac641b7592ec
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{AF67F125-AB39-4E93-B4A2-CC2E66E182A7}] 1660099895
+#time=1d8ac641b0f144a
+@="ISpeechFileStream"
+
+[Software\\Classes\\Interface\\{AF67F125-AB39-4E93-B4A2-CC2E66E182A7}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0f1256
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AF67F125-AB39-4E93-B4A2-CC2E66E182A7}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0f138c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AF67F125-AB39-4E93-B4A2-CC2E66E182A7}\\TypeLib] 1660099895
+#time=1d8ac641b0f1526
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{AFA0DC11-C313-11D0-831A-00C04FD5AE38}] 1660099896
+#time=1d8ac641b3120c6
+@="IUrlHistoryStg2"
+
+[Software\\Classes\\Interface\\{AFA0DC11-C313-11D0-831A-00C04FD5AE38}\\NumMethods] 1660099896
+#time=1d8ac641b31201c
+@="10"
+
+[Software\\Classes\\Interface\\{AFA0DC11-C313-11D0-831A-00C04FD5AE38}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b312120
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{AFE719CF-5DD1-44F2-999C-7A399F1CFCCC}] 1660099895
+#time=1d8ac641b0e7af8
+@="ISpeechGrammarRule"
+
+[Software\\Classes\\Interface\\{AFE719CF-5DD1-44F2-999C-7A399F1CFCCC}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e7904
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AFE719CF-5DD1-44F2-999C-7A399F1CFCCC}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e7a4e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{AFE719CF-5DD1-44F2-999C-7A399F1CFCCC}\\TypeLib] 1660099895
+#time=1d8ac641b0e7bc0
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{B08400BD-F9D1-4D02-B856-71D5DBA123E9}] 1660099895
+#time=1d8ac641b1683c4
+@="_Command"
+
+[Software\\Classes\\Interface\\{B08400BD-F9D1-4D02-B856-71D5DBA123E9}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1680fe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B08400BD-F9D1-4D02-B856-71D5DBA123E9}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b16831a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B08400BD-F9D1-4D02-B856-71D5DBA123E9}\\TypeLib] 1660099895
+#time=1d8ac641b168478
+@="{2A75196C-D9EB-4129-B803-931327F72D5C}"
+"Version"="2.8"
+
+[Software\\Classes\\Interface\\{B171C812-CC76-485A-94D8-B6B3A2794E99}] 1660099896
+#time=1d8ac641b75eea4
+@="IUPnPNAT"
+
+[Software\\Classes\\Interface\\{B171C812-CC76-485A-94D8-B6B3A2794E99}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75ecba
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B171C812-CC76-485A-94D8-B6B3A2794E99}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75eddc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B171C812-CC76-485A-94D8-B6B3A2794E99}\\TypeLib] 1660099896
+#time=1d8ac641b75ef76
+@="{1C565858-F302-471E-B409-F180AA4ABEC6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{B196B283-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba3ba64
+@="IProvideClassInfo"
+
+[Software\\Classes\\Interface\\{B196B283-BAB4-101A-B69C-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3b9b0
+@="4"
+
+[Software\\Classes\\Interface\\{B196B283-BAB4-101A-B69C-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3bac8
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B196B284-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba3ca40
+@="IConnectionPointContainer"
+
+[Software\\Classes\\Interface\\{B196B284-BAB4-101A-B69C-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3c98c
+@="5"
+
+[Software\\Classes\\Interface\\{B196B284-BAB4-101A-B69C-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3caa4
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B196B285-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba3d0ee
+@="IEnumConnectionPoints"
+
+[Software\\Classes\\Interface\\{B196B285-BAB4-101A-B69C-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3d026
+@="7"
+
+[Software\\Classes\\Interface\\{B196B285-BAB4-101A-B69C-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3d152
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B196B286-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba3c608
+@="IConnectionPoint"
+
+[Software\\Classes\\Interface\\{B196B286-BAB4-101A-B69C-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3c55e
+@="8"
+
+[Software\\Classes\\Interface\\{B196B286-BAB4-101A-B69C-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3c70c
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B196B287-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba3cd92
+@="IEnumConnections"
+
+[Software\\Classes\\Interface\\{B196B287-BAB4-101A-B69C-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3ccde
+@="7"
+
+[Software\\Classes\\Interface\\{B196B287-BAB4-101A-B69C-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3cdec
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B196B288-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba3ac0e
+@="IOleControl"
+
+[Software\\Classes\\Interface\\{B196B288-BAB4-101A-B69C-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3ab5a
+@="7"
+
+[Software\\Classes\\Interface\\{B196B288-BAB4-101A-B69C-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3ac7c
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B196B289-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba3af7e
+@="IOleControlSite"
+
+[Software\\Classes\\Interface\\{B196B289-BAB4-101A-B69C-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3aeca
+@="10"
+
+[Software\\Classes\\Interface\\{B196B289-BAB4-101A-B69C-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3afe2
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B196B28B-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba3f9fc
+@="ISpecifyPropertyPages"
+
+[Software\\Classes\\Interface\\{B196B28B-BAB4-101A-B69C-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3f948
+@="4"
+
+[Software\\Classes\\Interface\\{B196B28B-BAB4-101A-B69C-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3fa60
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B196B28C-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba3db20
+@="IPropertyPageSite"
+
+[Software\\Classes\\Interface\\{B196B28C-BAB4-101A-B69C-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3da6c
+@="7"
+
+[Software\\Classes\\Interface\\{B196B28C-BAB4-101A-B69C-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3db7a
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B196B28D-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba3d440
+@="IPropertyPage"
+
+[Software\\Classes\\Interface\\{B196B28D-BAB4-101A-B69C-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3d38c
+@="14"
+
+[Software\\Classes\\Interface\\{B196B28D-BAB4-101A-B69C-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3d4a4
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B196B28F-BAB4-101A-B69C-00AA00341D07}] 1660099896
+#time=1d8ac641ba3b712
+@="IClassFactory2"
+
+[Software\\Classes\\Interface\\{B196B28F-BAB4-101A-B69C-00AA00341D07}\\NumMethods] 1660099896
+#time=1d8ac641ba3b636
+@="8"
+
+[Software\\Classes\\Interface\\{B196B28F-BAB4-101A-B69C-00AA00341D07}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3b776
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B238B6D5-F276-4C3D-A6C1-2974801C3CC2}] 1660099895
+#time=1d8ac641b0efb18
+@="ISpeechPhraseAlternates"
+
+[Software\\Classes\\Interface\\{B238B6D5-F276-4C3D-A6C1-2974801C3CC2}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ef956
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B238B6D5-F276-4C3D-A6C1-2974801C3CC2}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0efa64
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B238B6D5-F276-4C3D-A6C1-2974801C3CC2}\\TypeLib] 1660099895
+#time=1d8ac641b0efbe0
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{B23EB630-3E1C-11D3-A745-0050040AB407}] 1660099896
+#time=1d8ac641b88ae2c
+@="ITfContextOwnerServices"
+
+[Software\\Classes\\Interface\\{B23EB630-3E1C-11D3-A745-0050040AB407}\\NumMethods] 1660099896
+#time=1d8ac641b88ad78
+@="10"
+
+[Software\\Classes\\Interface\\{B23EB630-3E1C-11D3-A745-0050040AB407}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88ae86
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{B246CB75-A93E-4652-BF8C-B3FE0CFD7E57}] 1660099896
+#time=1d8ac641b887a2e
+@="ITfActiveLanguageProfileNotifySink"
+
+[Software\\Classes\\Interface\\{B246CB75-A93E-4652-BF8C-B3FE0CFD7E57}\\NumMethods] 1660099896
+#time=1d8ac641b88797a
+@="4"
+
+[Software\\Classes\\Interface\\{B246CB75-A93E-4652-BF8C-B3FE0CFD7E57}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b887a92
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{B2C867E6-69D6-46F2-A611-DED9A4BD7FEF}] 1660099896
+#time=1d8ac641b2fcad2
+@="ITargetFramePriv2"
+
+[Software\\Classes\\Interface\\{B2C867E6-69D6-46F2-A611-DED9A4BD7FEF}\\NumMethods] 1660099896
+#time=1d8ac641b2fca28
+@="10"
+
+[Software\\Classes\\Interface\\{B2C867E6-69D6-46F2-A611-DED9A4BD7FEF}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fcb22
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{B2D0778B-AC99-4C58-A5C8-E7724E5316B5}] 1660099896
+#time=1d8ac641b44a844
+@="IAxWinAmbientDispatchEx"
+
+[Software\\Classes\\Interface\\{B2D0778B-AC99-4C58-A5C8-E7724E5316B5}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b44a646
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B2D0778B-AC99-4C58-A5C8-E7724E5316B5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b44a75e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B2D0778B-AC99-4C58-A5C8-E7724E5316B5}\\TypeLib] 1660099896
+#time=1d8ac641b44a916
+@="{44EC0535-400F-11D0-9DCD-00A0C90391D3}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{B3E7C340-EF97-11CE-9BC9-00AA00608E01}] 1660099896
+#time=1d8ac641ba411e4
+@="IEnumOleUndoUnits"
+
+[Software\\Classes\\Interface\\{B3E7C340-EF97-11CE-9BC9-00AA00608E01}\\NumMethods] 1660099896
+#time=1d8ac641ba41130
+@="7"
+
+[Software\\Classes\\Interface\\{B3E7C340-EF97-11CE-9BC9-00AA00608E01}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba41248
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{B45747E0-EBA7-4276-9F29-85C5BB300006}] 1660099897
+#time=1d8ac641bc6cc66
+@="ITimeTrigger"
+
+[Software\\Classes\\Interface\\{B45747E0-EBA7-4276-9F29-85C5BB300006}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc6ca54
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B45747E0-EBA7-4276-9F29-85C5BB300006}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc6cb76
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B45747E0-EBA7-4276-9F29-85C5BB300006}\\TypeLib] 1660099897
+#time=1d8ac641bc6cd4c
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{B4DB1657-70D7-485E-8E3E-6FCB5A5C1802}] 1660099896
+#time=1d8ac641b30ca5e
+@="IModalWindow"
+
+[Software\\Classes\\Interface\\{B4DB1657-70D7-485E-8E3E-6FCB5A5C1802}\\NumMethods] 1660099896
+#time=1d8ac641b30c9aa
+@="4"
+
+[Software\\Classes\\Interface\\{B4DB1657-70D7-485E-8E3E-6FCB5A5C1802}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30cab8
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{B54D66E6-2287-11D2-8B33-00600806D9B6}] 1660099895
+#time=1d8ac641b100f6c
+@="ISWbemSecurity"
+
+[Software\\Classes\\Interface\\{B54D66E6-2287-11D2-8B33-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b100dd2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B54D66E6-2287-11D2-8B33-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b100ecc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B54D66E6-2287-11D2-8B33-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b101020
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{B5E64FFA-C2C5-444E-A301-FB5E00018050}] 1660099896
+#time=1d8ac641b758748
+@="INetFwAuthorizedApplication"
+
+[Software\\Classes\\Interface\\{B5E64FFA-C2C5-444E-A301-FB5E00018050}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b758478
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B5E64FFA-C2C5-444E-A301-FB5E00018050}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7585a4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B5E64FFA-C2C5-444E-A301-FB5E00018050}\\TypeLib] 1660099896
+#time=1d8ac641b75886a
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{B60DE00F-156E-4E8D-9EC1-3A2342C10899}] 1660099896
+#time=1d8ac641b75e422
+@="IDynamicPortMappingCollection"
+
+[Software\\Classes\\Interface\\{B60DE00F-156E-4E8D-9EC1-3A2342C10899}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75e1f2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B60DE00F-156E-4E8D-9EC1-3A2342C10899}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75e35a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B60DE00F-156E-4E8D-9EC1-3A2342C10899}\\TypeLib] 1660099896
+#time=1d8ac641b75e4fe
+@="{1C565858-F302-471E-B409-F180AA4ABEC6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{B63EA76D-1F85-456F-A19C-48159EFA858B}] 1660099896
+#time=1d8ac641b30400c
+@="IShellItemArray"
+
+[Software\\Classes\\Interface\\{B63EA76D-1F85-456F-A19C-48159EFA858B}\\NumMethods] 1660099896
+#time=1d8ac641b303f4e
+@="10"
+
+[Software\\Classes\\Interface\\{B63EA76D-1F85-456F-A19C-48159EFA858B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b304070
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{B66F034F-D0E2-40AB-B436-6DE39E321A94}] 1660099897
+#time=1d8ac641bd80774
+@="IWICColorTransform"
+
+[Software\\Classes\\Interface\\{B66F034F-D0E2-40AB-B436-6DE39E321A94}\\NumMethods] 1660099897
+#time=1d8ac641bd80684
+@="9"
+
+[Software\\Classes\\Interface\\{B66F034F-D0E2-40AB-B436-6DE39E321A94}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd807f6
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{B6D6F79F-2158-4E50-B5BC-9A9CCD852A09}] 1660099895
+#time=1d8ac641b0ec92c
+@="ISpeechRecoGrammar"
+
+[Software\\Classes\\Interface\\{B6D6F79F-2158-4E50-B5BC-9A9CCD852A09}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ec76a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B6D6F79F-2158-4E50-B5BC-9A9CCD852A09}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ec878
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B6D6F79F-2158-4E50-B5BC-9A9CCD852A09}\\TypeLib] 1660099895
+#time=1d8ac641b0ec9f4
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{B6EA2051-048A-11D1-82B9-00C04FB9942E}] 1660099896
+#time=1d8ac641b44a2e0
+@="IAxWinAmbientDispatch"
+
+[Software\\Classes\\Interface\\{B6EA2051-048A-11D1-82B9-00C04FB9942E}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b44a0ce
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B6EA2051-048A-11D1-82B9-00C04FB9942E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b44a22c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{B6EA2051-048A-11D1-82B9-00C04FB9942E}\\TypeLib] 1660099896
+#time=1d8ac641b44a3b2
+@="{44EC0535-400F-11D0-9DCD-00A0C90391D3}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{B722BCC5-4E68-101B-A2BC-00AA00404770}] 1660099896
+#time=1d8ac641b2f9742
+@="IOleDocument"
+
+[Software\\Classes\\Interface\\{B722BCC5-4E68-101B-A2BC-00AA00404770}\\NumMethods] 1660099896
+#time=1d8ac641b2f9698
+@="6"
+
+[Software\\Classes\\Interface\\{B722BCC5-4E68-101B-A2BC-00AA00404770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f9792
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{B722BCC6-4E68-101B-A2BC-00AA00404770}] 1660099896
+#time=1d8ac641b2f9d3c
+@="IOleDocumentView"
+
+[Software\\Classes\\Interface\\{B722BCC6-4E68-101B-A2BC-00AA00404770}\\NumMethods] 1660099896
+#time=1d8ac641b2f9c9c
+@="16"
+
+[Software\\Classes\\Interface\\{B722BCC6-4E68-101B-A2BC-00AA00404770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f9d96
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{B722BCC7-4E68-101B-A2BC-00AA00404770}] 1660099896
+#time=1d8ac641b2f9a30
+@="IOleDocumentSite"
+
+[Software\\Classes\\Interface\\{B722BCC7-4E68-101B-A2BC-00AA00404770}\\NumMethods] 1660099896
+#time=1d8ac641b2f999a
+@="4"
+
+[Software\\Classes\\Interface\\{B722BCC7-4E68-101B-A2BC-00AA00404770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f9a8a
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{B722BCC8-4E68-101B-A2BC-00AA00404770}] 1660099896
+#time=1d8ac641b2fa034
+@="IEnumOleDocumentViews"
+
+[Software\\Classes\\Interface\\{B722BCC8-4E68-101B-A2BC-00AA00404770}\\NumMethods] 1660099896
+#time=1d8ac641b2f9f94
+@="7"
+
+[Software\\Classes\\Interface\\{B722BCC8-4E68-101B-A2BC-00AA00404770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fa084
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{B722BCC9-4E68-101B-A2BC-00AA00404770}] 1660099896
+#time=1d8ac641b2fa91c
+@="IPrint"
+
+[Software\\Classes\\Interface\\{B722BCC9-4E68-101B-A2BC-00AA00404770}\\NumMethods] 1660099896
+#time=1d8ac641b2fa872
+@="6"
+
+[Software\\Classes\\Interface\\{B722BCC9-4E68-101B-A2BC-00AA00404770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fa96c
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{B722BCCA-4E68-101B-A2BC-00AA00404770}] 1660099896
+#time=1d8ac641b2fa624
+@="IContinueCallback"
+
+[Software\\Classes\\Interface\\{B722BCCA-4E68-101B-A2BC-00AA00404770}\\NumMethods] 1660099896
+#time=1d8ac641b2fa584
+@="5"
+
+[Software\\Classes\\Interface\\{B722BCCA-4E68-101B-A2BC-00AA00404770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fa67e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{B722BCCB-4E68-101B-A2BC-00AA00404770}] 1660099896
+#time=1d8ac641b2fa32c
+@="IOleCommandTarget"
+
+[Software\\Classes\\Interface\\{B722BCCB-4E68-101B-A2BC-00AA00404770}\\NumMethods] 1660099896
+#time=1d8ac641b2fa282
+@="5"
+
+[Software\\Classes\\Interface\\{B722BCCB-4E68-101B-A2BC-00AA00404770}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fa386
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{B79BB0B0-33C1-11D1-ABE1-00A0C905F375}] 1660099896
+#time=1d8ac641bac8bee
+@="IFilterMapper2"
+
+[Software\\Classes\\Interface\\{B79BB0B0-33C1-11D1-ABE1-00A0C905F375}\\NumMethods] 1660099896
+#time=1d8ac641bac8b30
+@="7"
+
+[Software\\Classes\\Interface\\{B79BB0B0-33C1-11D1-ABE1-00A0C905F375}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac8c48
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{B79BB0B1-33C1-11D1-ABE1-00A0C905F375}] 1660099896
+#time=1d8ac641bac8f4a
+@="IFilterMapper3"
+
+[Software\\Classes\\Interface\\{B79BB0B1-33C1-11D1-ABE1-00A0C905F375}\\NumMethods] 1660099896
+#time=1d8ac641bac8e8c
+@="8"
+
+[Software\\Classes\\Interface\\{B79BB0B1-33C1-11D1-ABE1-00A0C905F375}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac8fa4
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{B84E2C09-78C9-4AC4-8BD3-524AE1663A2F}] 1660099897
+#time=1d8ac641bd80c10
+@="IWICFastMetadataEncoder"
+
+[Software\\Classes\\Interface\\{B84E2C09-78C9-4AC4-8BD3-524AE1663A2F}\\NumMethods] 1660099897
+#time=1d8ac641bd80b16
+@="5"
+
+[Software\\Classes\\Interface\\{B84E2C09-78C9-4AC4-8BD3-524AE1663A2F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd80c9c
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}] 1660099896
+#time=1d8ac641b2f55f2
+@="IActiveScriptStats"
+
+[Software\\Classes\\Interface\\{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}\\NumMethods] 1660099896
+#time=1d8ac641b2f553e
+@="6"
+
+[Software\\Classes\\Interface\\{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f5656
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{B9BD430D-28A8-41D3-A1F5-F36EE02840BF}] 1660099897
+#time=1d8ac641bd81f16
+@="IWICWineDecoder"
+
+[Software\\Classes\\Interface\\{B9BD430D-28A8-41D3-A1F5-F36EE02840BF}\\NumMethods] 1660099897
+#time=1d8ac641bd81e08
+@="4"
+
+[Software\\Classes\\Interface\\{B9BD430D-28A8-41D3-A1F5-F36EE02840BF}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd81fac
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{BA9239A4-3DD5-11D2-BF8B-00C04FB93661}] 1660099895
+#time=1d8ac641b0d5fe2
+@="ISearch"
+
+[Software\\Classes\\Interface\\{BA9239A4-3DD5-11D2-BF8B-00C04FB93661}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d5e20
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BA9239A4-3DD5-11D2-BF8B-00C04FB93661}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d5f2e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BA9239A4-3DD5-11D2-BF8B-00C04FB93661}\\TypeLib] 1660099895
+#time=1d8ac641b0d60a0
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{BAE54997-48B1-4CBE-9965-D6BE263EBEA4}] 1660099897
+#time=1d8ac641bc6a092
+@="IAction"
+
+[Software\\Classes\\Interface\\{BAE54997-48B1-4CBE-9965-D6BE263EBEA4}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc69e62
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BAE54997-48B1-4CBE-9965-D6BE263EBEA4}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc69fb6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BAE54997-48B1-4CBE-9965-D6BE263EBEA4}\\TypeLib] 1660099897
+#time=1d8ac641bc6a1b4
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{BB08F7A9-607A-4384-8623-056892B64371}] 1660099896
+#time=1d8ac641b88bbd8
+@="ITfCompartment"
+
+[Software\\Classes\\Interface\\{BB08F7A9-607A-4384-8623-056892B64371}\\NumMethods] 1660099896
+#time=1d8ac641b88bb2e
+@="5"
+
+[Software\\Classes\\Interface\\{BB08F7A9-607A-4384-8623-056892B64371}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88bc3c
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{BB1A2AE1-A4F9-11CF-8F20-00805F2CD064}] 1660099896
+#time=1d8ac641b2f2974
+@="IActiveScript"
+
+[Software\\Classes\\Interface\\{BB1A2AE1-A4F9-11CF-8F20-00805F2CD064}\\NumMethods] 1660099896
+#time=1d8ac641b2f28ca
+@="16"
+
+[Software\\Classes\\Interface\\{BB1A2AE1-A4F9-11CF-8F20-00805F2CD064}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f29d8
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{BB1A2AE2-A4F9-11CF-8F20-00805F2CD064}] 1660099896
+#time=1d8ac641b2f2cb2
+@="IActiveScriptParse32"
+
+[Software\\Classes\\Interface\\{BB1A2AE2-A4F9-11CF-8F20-00805F2CD064}\\NumMethods] 1660099896
+#time=1d8ac641b2f2c08
+@="6"
+
+[Software\\Classes\\Interface\\{BB1A2AE2-A4F9-11CF-8F20-00805F2CD064}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f2d16
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{BBCBDE60-C3FF-11CE-8350-444553540000}] 1660099896
+#time=1d8ac641bbc3634
+@="Folder"
+
+[Software\\Classes\\Interface\\{BBCBDE60-C3FF-11CE-8350-444553540000}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc3468
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BBCBDE60-C3FF-11CE-8350-444553540000}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc3580
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BBCBDE60-C3FF-11CE-8350-444553540000}\\TypeLib] 1660099896
+#time=1d8ac641bbc36fc
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{BC0BF6AE-8878-11D1-83E9-00C04FC2C6D4}] 1660099896
+#time=1d8ac641ba13064
+@="ITimeAndNoticeControl"
+
+[Software\\Classes\\Interface\\{BC0BF6AE-8878-11D1-83E9-00C04FC2C6D4}\\NumMethods] 1660099896
+#time=1d8ac641ba12fba
+@="4"
+
+[Software\\Classes\\Interface\\{BC0BF6AE-8878-11D1-83E9-00C04FC2C6D4}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba130be
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BC17E5B7-7561-4C18-BB90-17D485775659}] 1660099897
+#time=1d8ac641be43c10
+@="IWMPCore2"
+
+[Software\\Classes\\Interface\\{BC17E5B7-7561-4C18-BB90-17D485775659}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be439e0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BC17E5B7-7561-4C18-BB90-17D485775659}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be43b48
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BC17E5B7-7561-4C18-BB90-17D485775659}\\TypeLib] 1660099897
+#time=1d8ac641be43ce2
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{BC40BEC1-C493-11D0-831B-00C04FD5AE38}] 1660099896
+#time=1d8ac641b3123b4
+@="IUrlHistoryNotify"
+
+[Software\\Classes\\Interface\\{BC40BEC1-C493-11D0-831B-00C04FD5AE38}\\NumMethods] 1660099896
+#time=1d8ac641b312314
+@="5"
+
+[Software\\Classes\\Interface\\{BC40BEC1-C493-11D0-831B-00C04FD5AE38}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b31240e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{BC5513C8-B3B8-4BF7-A4D4-361C0D8C88BA}] 1660099897
+#time=1d8ac641be9c270
+@="IUpdateDownloadContentCollection"
+
+[Software\\Classes\\Interface\\{BC5513C8-B3B8-4BF7-A4D4-361C0D8C88BA}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9c086
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BC5513C8-B3B8-4BF7-A4D4-361C0D8C88BA}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9c19e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BC5513C8-B3B8-4BF7-A4D4-361C0D8C88BA}\\TypeLib] 1660099897
+#time=1d8ac641be9c338
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{BD1AE5E0-A6AE-11CE-BD37-504200C10000}] 1660099896
+#time=1d8ac641ba3e9ee
+@="IPersistMemory"
+
+[Software\\Classes\\Interface\\{BD1AE5E0-A6AE-11CE-BD37-504200C10000}\\NumMethods] 1660099896
+#time=1d8ac641ba3e930
+@="9"
+
+[Software\\Classes\\Interface\\{BD1AE5E0-A6AE-11CE-BD37-504200C10000}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba3ea52
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{BD94DBEB-417F-4928-AA06-087D56ED9B59}] 1660099897
+#time=1d8ac641be466ae
+@="IWMPCdromBurn"
+
+[Software\\Classes\\Interface\\{BD94DBEB-417F-4928-AA06-087D56ED9B59}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be464ba
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BD94DBEB-417F-4928-AA06-087D56ED9B59}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be465f0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BD94DBEB-417F-4928-AA06-087D56ED9B59}\\TypeLib] 1660099897
+#time=1d8ac641be46794
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{BE56A644-AF0E-4E0E-A311-C1D8E695CBFF}] 1660099897
+#time=1d8ac641bea2a76
+@="IUpdateHistoryEntry"
+
+[Software\\Classes\\Interface\\{BE56A644-AF0E-4E0E-A311-C1D8E695CBFF}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea28b4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BE56A644-AF0E-4E0E-A311-C1D8E695CBFF}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea29c2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BE56A644-AF0E-4E0E-A311-C1D8E695CBFF}\\TypeLib] 1660099897
+#time=1d8ac641bea2b34
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{BEF6E002-A874-101A-8BBA-00AA00300CAB}] 1660099896
+#time=1d8ac641ba39b1a
+@="IFont"
+
+[Software\\Classes\\Interface\\{BEF6E002-A874-101A-8BBA-00AA00300CAB}\\NumMethods] 1660099896
+#time=1d8ac641ba39a66
+@="27"
+
+[Software\\Classes\\Interface\\{BEF6E002-A874-101A-8BBA-00AA00300CAB}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba39b7e
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{BEF6E003-A874-101A-8BBA-00AA00300CAB}] 1660099896
+#time=1d8ac641ba57674
+@="Font"
+
+[Software\\Classes\\Interface\\{BEF6E003-A874-101A-8BBA-00AA00300CAB}\\NumMethods] 1660099896
+#time=1d8ac641ba39db8
+@="7"
+
+[Software\\Classes\\Interface\\{BEF6E003-A874-101A-8BBA-00AA00300CAB}\\ProxyStubClsid] 1660099896
+#time=1d8ac641ba5748a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BEF6E003-A874-101A-8BBA-00AA00300CAB}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba575ac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BEF6E003-A874-101A-8BBA-00AA00300CAB}\\TypeLib] 1660099896
+#time=1d8ac641bc01c40
+@="{00020430-0000-0000-C000-000000000046}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{BF87B6E0-8C27-11D0-B3F0-00AA003761C5}] 1660099896
+#time=1d8ac641bacb830
+@="ICaptureGraphBuilder"
+
+[Software\\Classes\\Interface\\{BF87B6E0-8C27-11D0-B3F0-00AA003761C5}\\NumMethods] 1660099896
+#time=1d8ac641bacb75e
+@="11"
+
+[Software\\Classes\\Interface\\{BF87B6E0-8C27-11D0-B3F0-00AA003761C5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bacb89e
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{BF99AF76-B575-42AD-8AA4-33CBB5477AF1}] 1660099897
+#time=1d8ac641be9dc10
+@="IUpdateDownloadResult"
+
+[Software\\Classes\\Interface\\{BF99AF76-B575-42AD-8AA4-33CBB5477AF1}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9d986
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BF99AF76-B575-42AD-8AA4-33CBB5477AF1}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9dabc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BF99AF76-B575-42AD-8AA4-33CBB5477AF1}\\TypeLib] 1660099897
+#time=1d8ac641be9dce2
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{BFF9E781-53EC-484E-BB8A-0E1B5551E35C}] 1660099895
+#time=1d8ac641b0eb158
+@="ISpeechRecognizerStatus"
+
+[Software\\Classes\\Interface\\{BFF9E781-53EC-484E-BB8A-0E1B5551E35C}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0eafa0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BFF9E781-53EC-484E-BB8A-0E1B5551E35C}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0eb0ae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{BFF9E781-53EC-484E-BB8A-0E1B5551E35C}\\TypeLib] 1660099895
+#time=1d8ac641b0eb220
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{C0E9D7FA-E07E-430A-B19A-090CE82D92E2}] 1660099896
+#time=1d8ac641b75738e
+@="INetFwOpenPorts"
+
+[Software\\Classes\\Interface\\{C0E9D7FA-E07E-430A-B19A-090CE82D92E2}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b757186
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C0E9D7FA-E07E-430A-B19A-090CE82D92E2}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b7572d0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C0E9D7FA-E07E-430A-B19A-090CE82D92E2}\\TypeLib] 1660099896
+#time=1d8ac641b757474
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{C1960960-17F5-11D1-ABE1-00A0C905F375}] 1660099896
+#time=1d8ac641bac81b2
+@="IAMStreamSelect"
+
+[Software\\Classes\\Interface\\{C1960960-17F5-11D1-ABE1-00A0C905F375}\\NumMethods] 1660099896
+#time=1d8ac641bac80fe
+@="6"
+
+[Software\\Classes\\Interface\\{C1960960-17F5-11D1-ABE1-00A0C905F375}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bac820c
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{C43DC798-95D1-4BEA-9030-BB99E2983A1A}] 1660099896
+#time=1d8ac641b308c74
+@="ITaskbarList4"
+
+[Software\\Classes\\Interface\\{C43DC798-95D1-4BEA-9030-BB99E2983A1A}\\NumMethods] 1660099896
+#time=1d8ac641b308bca
+@="22"
+
+[Software\\Classes\\Interface\\{C43DC798-95D1-4BEA-9030-BB99E2983A1A}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b308cc4
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{C5598E60-B307-11D1-B27D-006008C3FBFB}] 1660099896
+#time=1d8ac641b5dc6f8
+@="ICanHandleException"
+
+[Software\\Classes\\Interface\\{C5598E60-B307-11D1-B27D-006008C3FBFB}\\NumMethods] 1660099896
+#time=1d8ac641b5dc63a
+@="4"
+
+[Software\\Classes\\Interface\\{C5598E60-B307-11D1-B27D-006008C3FBFB}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5dc75c
+@="{10E2414A-EC59-49D2-BC51-5ADD2C36FEBC}"
+
+[Software\\Classes\\Interface\\{C574DE85-7358-43F6-AAE8-8697E62D8BA7}] 1660099897
+#time=1d8ac641be9e5ca
+@="IDownloadJob"
+
+[Software\\Classes\\Interface\\{C574DE85-7358-43F6-AAE8-8697E62D8BA7}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9e3fe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C574DE85-7358-43F6-AAE8-8697E62D8BA7}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9e520
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C574DE85-7358-43F6-AAE8-8697E62D8BA7}\\TypeLib] 1660099897
+#time=1d8ac641be9e692
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{C62D9C91-7458-47F6-862D-1EF86FB0B278}] 1660099895
+#time=1d8ac641b0eac94
+@="ISpeechAudioStatus"
+
+[Software\\Classes\\Interface\\{C62D9C91-7458-47F6-862D-1EF86FB0B278}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0eaad2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C62D9C91-7458-47F6-862D-1EF86FB0B278}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0eabe0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C62D9C91-7458-47F6-862D-1EF86FB0B278}\\TypeLib] 1660099895
+#time=1d8ac641b0ead70
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{C64713B6-E029-4CC5-9200-438B72890B6A}] 1660099896
+#time=1d8ac641b2f47f6
+@="IActiveScriptParseProcedure64"
+
+[Software\\Classes\\Interface\\{C64713B6-E029-4CC5-9200-438B72890B6A}\\NumMethods] 1660099896
+#time=1d8ac641b2f460c
+@="4"
+
+[Software\\Classes\\Interface\\{C64713B6-E029-4CC5-9200-438B72890B6A}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f488c
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{C6E13340-30AC-11D0-A18C-00A0C9118956}] 1660099896
+#time=1d8ac641bacc9ba
+@="IAMStreamConfig"
+
+[Software\\Classes\\Interface\\{C6E13340-30AC-11D0-A18C-00A0C9118956}\\NumMethods] 1660099896
+#time=1d8ac641bacc8fc
+@="7"
+
+[Software\\Classes\\Interface\\{C6E13340-30AC-11D0-A18C-00A0C9118956}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bacca46
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{C6E13360-30AC-11D0-A18C-00A0C9118956}] 1660099896
+#time=1d8ac641baccef6
+@="IAMVideoProcAmp"
+
+[Software\\Classes\\Interface\\{C6E13360-30AC-11D0-A18C-00A0C9118956}\\NumMethods] 1660099896
+#time=1d8ac641bacce38
+@="6"
+
+[Software\\Classes\\Interface\\{C6E13360-30AC-11D0-A18C-00A0C9118956}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641baccf5a
+@="{670D1D20-A068-11D0-B3F0-00AA003761C5}"
+
+[Software\\Classes\\Interface\\{C74A3ADC-B727-4500-A84A-B526721C8B8C}] 1660099895
+#time=1d8ac641b0e896c
+@="ISpeechObjectToken"
+
+[Software\\Classes\\Interface\\{C74A3ADC-B727-4500-A84A-B526721C8B8C}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e87b4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C74A3ADC-B727-4500-A84A-B526721C8B8C}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e88c2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C74A3ADC-B727-4500-A84A-B526721C8B8C}\\TypeLib] 1660099895
+#time=1d8ac641b0e8a34
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{C7C3F5A0-88A3-11D0-ABCB-00A0C90FFFC0}] 1660099896
+#time=1d8ac641bb531c2
+@="IDrive"
+
+[Software\\Classes\\Interface\\{C7C3F5A0-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb52fd8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A0-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb5310e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A0-88A3-11D0-ABCB-00A0C90FFFC0}\\TypeLib] 1660099897
+#time=1d8ac641be7e996
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{C7C3F5A1-88A3-11D0-ABCB-00A0C90FFFC0}] 1660099896
+#time=1d8ac641bb55fa8
+@="IDriveCollection"
+
+[Software\\Classes\\Interface\\{C7C3F5A1-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb55dbe
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A1-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb55eea
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A1-88A3-11D0-ABCB-00A0C90FFFC0}\\TypeLib] 1660099896
+#time=1d8ac641bb5607a
+@="{420B2830-E718-11CF-893D-00A0C9054228}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{C7C3F5A2-88A3-11D0-ABCB-00A0C90FFFC0}] 1660099896
+#time=1d8ac641bb554ea
+@="IFolder"
+
+[Software\\Classes\\Interface\\{C7C3F5A2-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb552b0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A2-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb55422
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A2-88A3-11D0-ABCB-00A0C90FFFC0}\\TypeLib] 1660099897
+#time=1d8ac641be8125e
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{C7C3F5A3-88A3-11D0-ABCB-00A0C90FFFC0}] 1660099896
+#time=1d8ac641bb53ee2
+@="IFolderCollection"
+
+[Software\\Classes\\Interface\\{C7C3F5A3-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb53ce4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A3-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb53e24
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A3-88A3-11D0-ABCB-00A0C90FFFC0}\\TypeLib] 1660099897
+#time=1d8ac641be7ef86
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{C7C3F5A4-88A3-11D0-ABCB-00A0C90FFFC0}] 1660099896
+#time=1d8ac641bb549dc
+@="IFile"
+
+[Software\\Classes\\Interface\\{C7C3F5A4-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb547de
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A4-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb54914
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A4-88A3-11D0-ABCB-00A0C90FFFC0}\\TypeLib] 1660099897
+#time=1d8ac641be7fabc
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{C7C3F5A5-88A3-11D0-ABCB-00A0C90FFFC0}] 1660099896
+#time=1d8ac641bb54f40
+@="IFileCollection"
+
+[Software\\Classes\\Interface\\{C7C3F5A5-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bb54d2e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A5-88A3-11D0-ABCB-00A0C90FFFC0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bb54e78
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C7C3F5A5-88A3-11D0-ABCB-00A0C90FFFC0}\\TypeLib] 1660099897
+#time=1d8ac641be801f6
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{C7EF7658-E1EE-480E-97EA-D52CB4D76D17}] 1660099896
+#time=1d8ac641b2f30e0
+@="IActiveScriptParse64"
+
+[Software\\Classes\\Interface\\{C7EF7658-E1EE-480E-97EA-D52CB4D76D17}\\NumMethods] 1660099896
+#time=1d8ac641b2f3022
+@="6"
+
+[Software\\Classes\\Interface\\{C7EF7658-E1EE-480E-97EA-D52CB4D76D17}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f3496
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{C8AD25A1-3294-41EE-8165-71174BD01C57}] 1660099896
+#time=1d8ac641b3072b6
+@="ICommDlgBrowser3"
+
+[Software\\Classes\\Interface\\{C8AD25A1-3294-41EE-8165-71174BD01C57}\\NumMethods] 1660099896
+#time=1d8ac641b3071f8
+@="12"
+
+[Software\\Classes\\Interface\\{C8AD25A1-3294-41EE-8165-71174BD01C57}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b307310
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{C90352F4-643C-4FBC-BB23-E996EB2D51FD}] 1660099895
+#time=1d8ac641b064cf2
+@="IMXNamespacePrefixes"
+
+[Software\\Classes\\Interface\\{C90352F4-643C-4FBC-BB23-E996EB2D51FD}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b064b1c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C90352F4-643C-4FBC-BB23-E996EB2D51FD}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b064c3e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C90352F4-643C-4FBC-BB23-E996EB2D51FD}\\TypeLib] 1660099895
+#time=1d8ac641b0c4346
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{C90352F5-643C-4FBC-BB23-E996EB2D51FD}] 1660099895
+#time=1d8ac641b0651a2
+@="IVBMXNamespaceManager"
+
+[Software\\Classes\\Interface\\{C90352F5-643C-4FBC-BB23-E996EB2D51FD}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b064fea
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C90352F5-643C-4FBC-BB23-E996EB2D51FD}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0650f8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C90352F5-643C-4FBC-BB23-E996EB2D51FD}\\TypeLib] 1660099895
+#time=1d8ac641b0c4864
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{C90352F7-643C-4FBC-BB23-E996EB2D51FD}] 1660099895
+#time=1d8ac641b065670
+@="IMXXMLFilter"
+
+[Software\\Classes\\Interface\\{C90352F7-643C-4FBC-BB23-E996EB2D51FD}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0654ae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C90352F7-643C-4FBC-BB23-E996EB2D51FD}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0655bc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C90352F7-643C-4FBC-BB23-E996EB2D51FD}\\TypeLib] 1660099895
+#time=1d8ac641b0bffb2
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{C93BA292-D955-11D1-8B09-00600806D9B6}] 1660099895
+#time=1d8ac641b10337a
+@="ISWbemMethodSet"
+
+[Software\\Classes\\Interface\\{C93BA292-D955-11D1-8B09-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1031e0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C93BA292-D955-11D1-8B09-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1032da
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C93BA292-D955-11D1-8B09-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b10342e
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{C94F0AD0-F363-11D2-A327-00C04F8EEC7F}] 1660099896
+#time=1d8ac641bbc49c6
+@="FolderItems2"
+
+[Software\\Classes\\Interface\\{C94F0AD0-F363-11D2-A327-00C04F8EEC7F}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc47fa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C94F0AD0-F363-11D2-A327-00C04F8EEC7F}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc4912
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{C94F0AD0-F363-11D2-A327-00C04F8EEC7F}\\TypeLib] 1660099896
+#time=1d8ac641bbc4a8e
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{CA04B7E6-0D21-11D1-8CC5-00C04FC2B085}] 1660099896
+#time=1d8ac641b5dc36a
+@="IObjectIdentity"
+
+[Software\\Classes\\Interface\\{CA04B7E6-0D21-11D1-8CC5-00C04FC2B085}\\NumMethods] 1660099896
+#time=1d8ac641b5dc2ac
+@="4"
+
+[Software\\Classes\\Interface\\{CA04B7E6-0D21-11D1-8CC5-00C04FC2B085}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5dc3ce
+@="{10E2414A-EC59-49D2-BC51-5ADD2C36FEBC}"
+
+[Software\\Classes\\Interface\\{CA51E165-C365-424C-8D41-24AAA4FF3C40}] 1660099896
+#time=1d8ac641babaaf8
+@="IEnumBackgroundCopyFiles"
+
+[Software\\Classes\\Interface\\{CA51E165-C365-424C-8D41-24AAA4FF3C40}\\NumMethods] 1660099896
+#time=1d8ac641babaa44
+@="8"
+
+[Software\\Classes\\Interface\\{CA51E165-C365-424C-8D41-24AAA4FF3C40}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babab5c
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{CA7EAC50-2D01-4145-86D4-5AE7D70F4469}] 1660099895
+#time=1d8ac641b0e849e
+@="ISpeechObjectTokenCategory"
+
+[Software\\Classes\\Interface\\{CA7EAC50-2D01-4145-86D4-5AE7D70F4469}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e82dc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CA7EAC50-2D01-4145-86D4-5AE7D70F4469}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e83ea
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CA7EAC50-2D01-4145-86D4-5AE7D70F4469}\\TypeLib] 1660099895
+#time=1d8ac641b0e857a
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{CAFD1DB1-41D1-4A06-9863-E2E81DA17A9A}] 1660099895
+#time=1d8ac641b0e6946
+@="ISpeechGrammarRuleStateTransition"
+
+[Software\\Classes\\Interface\\{CAFD1DB1-41D1-4A06-9863-E2E81DA17A9A}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e6720
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CAFD1DB1-41D1-4A06-9863-E2E81DA17A9A}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e6874
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CAFD1DB1-41D1-4A06-9863-E2E81DA17A9A}\\TypeLib] 1660099895
+#time=1d8ac641b0e6a40
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{CB5BDC81-93C1-11CF-8F20-00805F2CD064}] 1660099896
+#time=1d8ac641b2feb52
+@="IObjectSafety"
+
+[Software\\Classes\\Interface\\{CB5BDC81-93C1-11CF-8F20-00805F2CD064}\\NumMethods] 1660099896
+#time=1d8ac641b2fea9e
+@="5"
+
+[Software\\Classes\\Interface\\{CB5BDC81-93C1-11CF-8F20-00805F2CD064}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2febac
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{CB728B20-F786-11CE-92AD-00AA00A74CD0}] 1660099896
+#time=1d8ac641b309282
+@="IProfferService"
+
+[Software\\Classes\\Interface\\{CB728B20-F786-11CE-92AD-00AA00A74CD0}\\NumMethods] 1660099896
+#time=1d8ac641b3091d8
+@="5"
+
+[Software\\Classes\\Interface\\{CB728B20-F786-11CE-92AD-00AA00A74CD0}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b3092d2
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{CD1F3E77-66D6-4664-82C7-36DBB641D0F1}] 1660099896
+#time=1d8ac641b75d50e
+@="IStaticPortMappingCollection"
+
+[Software\\Classes\\Interface\\{CD1F3E77-66D6-4664-82C7-36DBB641D0F1}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75d32e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CD1F3E77-66D6-4664-82C7-36DBB641D0F1}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75d450
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CD1F3E77-66D6-4664-82C7-36DBB641D0F1}\\TypeLib] 1660099896
+#time=1d8ac641b75d5fe
+@="{1C565858-F302-471E-B409-F180AA4ABEC6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{CDE725B0-CCC9-4519-917E-325D72FAB4CE}] 1660099896
+#time=1d8ac641b305592
+@="IFolderView"
+
+[Software\\Classes\\Interface\\{CDE725B0-CCC9-4519-917E-325D72FAB4CE}\\NumMethods] 1660099896
+#time=1d8ac641b3054d4
+@="17"
+
+[Software\\Classes\\Interface\\{CDE725B0-CCC9-4519-917E-325D72FAB4CE}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b3055f6
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{CE04B590-2B1F-11D2-8D1E-00A0C959BC0A}] 1660099896
+#time=1d8ac641b5c1f92
+@="IDHTMLSafe"
+
+[Software\\Classes\\Interface\\{CE04B590-2B1F-11D2-8D1E-00A0C959BC0A}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5c1d8a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CE04B590-2B1F-11D2-8D1E-00A0C959BC0A}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5c1eb6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CE04B590-2B1F-11D2-8D1E-00A0C959BC0A}\\TypeLib] 1660099896
+#time=1d8ac641b5c2064
+@="{683364A1-B37D-11D1-ADC5-006008A5848C}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{CE04B591-2B1F-11D2-8D1E-00A0C959BC0A}] 1660099896
+#time=1d8ac641b5c2960
+@="IDHTMLEdit"
+
+[Software\\Classes\\Interface\\{CE04B591-2B1F-11D2-8D1E-00A0C959BC0A}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5c2794
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CE04B591-2B1F-11D2-8D1E-00A0C959BC0A}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5c28ac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CE04B591-2B1F-11D2-8D1E-00A0C959BC0A}\\TypeLib] 1660099896
+#time=1d8ac641b5c2a28
+@="{683364A1-B37D-11D1-ADC5-006008A5848C}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{CE17C09B-4EFA-44D5-A4C9-59D9585AB0CD}] 1660099895
+#time=1d8ac641b0e7fe4
+@="ISpeechDataKey"
+
+[Software\\Classes\\Interface\\{CE17C09B-4EFA-44D5-A4C9-59D9585AB0CD}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e7e18
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CE17C09B-4EFA-44D5-A4C9-59D9585AB0CD}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e7f30
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CE17C09B-4EFA-44D5-A4C9-59D9585AB0CD}\\TypeLib] 1660099895
+#time=1d8ac641b0e80a2
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{CE563D48-961E-4732-A2E1-378A42B430BE}] 1660099895
+#time=1d8ac641b0e9466
+@="ISpeechPhraseProperty"
+
+[Software\\Classes\\Interface\\{CE563D48-961E-4732-A2E1-378A42B430BE}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e920e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CE563D48-961E-4732-A2E1-378A42B430BE}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e93b2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CE563D48-961E-4732-A2E1-378A42B430BE}\\TypeLib] 1660099895
+#time=1d8ac641b0e952e
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{CEF04FDF-FE72-11D2-87A5-00C04F6837CF}] 1660099896
+#time=1d8ac641b3067f8
+@="IPersistFolder3"
+
+[Software\\Classes\\Interface\\{CEF04FDF-FE72-11D2-87A5-00C04F6837CF}\\NumMethods] 1660099896
+#time=1d8ac641b306726
+@="8"
+
+[Software\\Classes\\Interface\\{CEF04FDF-FE72-11D2-87A5-00C04F6837CF}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b306866
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{CF2376EA-CE8C-11D1-8B05-00600806D9B6}] 1660099895
+#time=1d8ac641b10024c
+@="ISWbemNamedValueSet"
+
+[Software\\Classes\\Interface\\{CF2376EA-CE8C-11D1-8B05-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1000b2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CF2376EA-CE8C-11D1-8B05-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b1001ac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CF2376EA-CE8C-11D1-8B05-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b100300
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{CF51ED10-62FE-11CF-BF86-00A0C9034836}] 1660099896
+#time=1d8ac641ba41892
+@="IQuickActivate"
+
+[Software\\Classes\\Interface\\{CF51ED10-62FE-11CF-BF86-00A0C9034836}\\NumMethods] 1660099896
+#time=1d8ac641ba417de
+@="6"
+
+[Software\\Classes\\Interface\\{CF51ED10-62FE-11CF-BF86-00A0C9034836}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba418ec
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{CFAB6E98-8730-11D3-B388-00C04F68574B}] 1660099897
+#time=1d8ac641be40b96
+@="IWMPCdrom"
+
+[Software\\Classes\\Interface\\{CFAB6E98-8730-11D3-B388-00C04F68574B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be409ac
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CFAB6E98-8730-11D3-B388-00C04F68574B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be40ad8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{CFAB6E98-8730-11D3-B388-00C04F68574B}\\TypeLib] 1660099897
+#time=1d8ac641be40c72
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{D001F200-EF97-11CE-9BC9-00AA00608E01}] 1660099896
+#time=1d8ac641ba4154a
+@="IOleUndoManager"
+
+[Software\\Classes\\Interface\\{D001F200-EF97-11CE-9BC9-00AA00608E01}\\NumMethods] 1660099896
+#time=1d8ac641ba41496
+@="15"
+
+[Software\\Classes\\Interface\\{D001F200-EF97-11CE-9BC9-00AA00608E01}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba415ae
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{D10F6761-83E9-11CF-8F20-00805F2CD064}] 1660099896
+#time=1d8ac641b2f1f60
+@="IActiveScriptSiteWindow"
+
+[Software\\Classes\\Interface\\{D10F6761-83E9-11CF-8F20-00805F2CD064}\\NumMethods] 1660099896
+#time=1d8ac641b2f1eb6
+@="5"
+
+[Software\\Classes\\Interface\\{D10F6761-83E9-11CF-8F20-00805F2CD064}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f1fe2
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{D1FC78E8-B380-11D1-ADC5-006008A5848C}] 1660099896
+#time=1d8ac641b5c2474
+@="_DHTMLSafeEvents"
+
+[Software\\Classes\\Interface\\{D1FC78E8-B380-11D1-ADC5-006008A5848C}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5c22b2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D1FC78E8-B380-11D1-ADC5-006008A5848C}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5c23ca
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D1FC78E8-B380-11D1-ADC5-006008A5848C}\\TypeLib] 1660099896
+#time=1d8ac641b5c255a
+@="{683364A1-B37D-11D1-ADC5-006008A5848C}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{D2BC4C84-3F72-4A52-A604-7BCBF3982CBB}] 1660099896
+#time=1d8ac641b30376a
+@="INewWindowManager"
+
+[Software\\Classes\\Interface\\{D2BC4C84-3F72-4A52-A604-7BCBF3982CBB}\\NumMethods] 1660099896
+#time=1d8ac641b303698
+@="4"
+
+[Software\\Classes\\Interface\\{D2BC4C84-3F72-4A52-A604-7BCBF3982CBB}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b3037c4
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{D30C1661-CDAF-11D0-8A3E-00C04FC9E26E}] 1660099895
+#time=1d8ac641b0d2b12
+@="IWebBrowser2"
+
+[Software\\Classes\\Interface\\{D30C1661-CDAF-11D0-8A3E-00C04FC9E26E}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d2950
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D30C1661-CDAF-11D0-8A3E-00C04FC9E26E}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d2a5e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D30C1661-CDAF-11D0-8A3E-00C04FC9E26E}\\TypeLib] 1660099895
+#time=1d8ac641b0d2bd0
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{D31A5BAC-F719-4178-9DBB-5E2CB47FD18A}] 1660099897
+#time=1d8ac641be9e0de
+@="IDownloadProgress"
+
+[Software\\Classes\\Interface\\{D31A5BAC-F719-4178-9DBB-5E2CB47FD18A}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9df1c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D31A5BAC-F719-4178-9DBB-5E2CB47FD18A}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9e02a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D31A5BAC-F719-4178-9DBB-5E2CB47FD18A}\\TypeLib] 1660099897
+#time=1d8ac641be9e1a6
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{D40C8AAE-AC92-4FC7-9A11-0EE0E23AA39B}] 1660099896
+#time=1d8ac641b88a33c
+@="ITfContextComposition"
+
+[Software\\Classes\\Interface\\{D40C8AAE-AC92-4FC7-9A11-0EE0E23AA39B}\\NumMethods] 1660099896
+#time=1d8ac641b88a260
+@="7"
+
+[Software\\Classes\\Interface\\{D40C8AAE-AC92-4FC7-9A11-0EE0E23AA39B}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88a396
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{D40CFF62-E08C-4498-941A-01E25F0FD33C}] 1660099897
+#time=1d8ac641bea25b2
+@="ISearchResult"
+
+[Software\\Classes\\Interface\\{D40CFF62-E08C-4498-941A-01E25F0FD33C}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bea23d2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D40CFF62-E08C-4498-941A-01E25F0FD33C}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bea24ea
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D40CFF62-E08C-4498-941A-01E25F0FD33C}\\TypeLib] 1660099897
+#time=1d8ac641bea267a
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{D4286F2C-EE67-45AE-B928-28D695362EDA}] 1660099895
+#time=1d8ac641b0e753a
+@="ISpeechGrammarRuleState"
+
+[Software\\Classes\\Interface\\{D4286F2C-EE67-45AE-B928-28D695362EDA}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e7314
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D4286F2C-EE67-45AE-B928-28D695362EDA}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e745e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D4286F2C-EE67-45AE-B928-28D695362EDA}\\TypeLib] 1660099895
+#time=1d8ac641b0e7648
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{D46D2478-9AC9-4008-9DC7-5563CE5536CC}] 1660099896
+#time=1d8ac641b75a746
+@="INetFwPolicy"
+
+[Software\\Classes\\Interface\\{D46D2478-9AC9-4008-9DC7-5563CE5536CC}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75a55c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D46D2478-9AC9-4008-9DC7-5563CE5536CC}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75a67e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D46D2478-9AC9-4008-9DC7-5563CE5536CC}\\TypeLib] 1660099896
+#time=1d8ac641b75a822
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{D4BECDDF-6F73-4A83-B832-9C66874CD20E}] 1660099896
+#time=1d8ac641b75474c
+@="INetFwRemoteAdminSettings"
+
+[Software\\Classes\\Interface\\{D4BECDDF-6F73-4A83-B832-9C66874CD20E}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b754530
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D4BECDDF-6F73-4A83-B832-9C66874CD20E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75467a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D4BECDDF-6F73-4A83-B832-9C66874CD20E}\\TypeLib] 1660099896
+#time=1d8ac641b755e6c
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{D57C7288-D4AD-4768-BE02-9D969532D960}] 1660099896
+#time=1d8ac641b30db02
+@="IFileOpenDialog"
+
+[Software\\Classes\\Interface\\{D57C7288-D4AD-4768-BE02-9D969532D960}\\NumMethods] 1660099896
+#time=1d8ac641b30da4e
+@="29"
+
+[Software\\Classes\\Interface\\{D57C7288-D4AD-4768-BE02-9D969532D960}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30db7a
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{D592AED4-F420-11D0-A36E-00C04FB950DC}] 1660099896
+#time=1d8ac641b2ef990
+@="IADsPathname"
+
+[Software\\Classes\\Interface\\{D592AED4-F420-11D0-A36E-00C04FB950DC}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b2ef7b0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D592AED4-F420-11D0-A36E-00C04FB950DC}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2ef8dc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D592AED4-F420-11D0-A36E-00C04FB950DC}\\TypeLib] 1660099896
+#time=1d8ac641b2efa58
+@="{97D25DB0-0363-11CF-ABC4-02608C9E7553}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{D594D0D8-8DA7-457B-B3B4-CE5DBAAC0B88}] 1660099896
+#time=1d8ac641b30f79a
+@="ITransferAdviseSink"
+
+[Software\\Classes\\Interface\\{D594D0D8-8DA7-457B-B3B4-CE5DBAAC0B88}\\NumMethods] 1660099896
+#time=1d8ac641b30f6e6
+@="10"
+
+[Software\\Classes\\Interface\\{D594D0D8-8DA7-457B-B3B4-CE5DBAAC0B88}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30f7f4
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{D5F0F4F1-130C-11D3-B14E-00C04F79FAA6}] 1660099897
+#time=1d8ac641be3c3b6
+@="IWMPPlaylist"
+
+[Software\\Classes\\Interface\\{D5F0F4F1-130C-11D3-B14E-00C04F79FAA6}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be3c1f4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D5F0F4F1-130C-11D3-B14E-00C04F79FAA6}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be3c30c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D5F0F4F1-130C-11D3-B14E-00C04F79FAA6}\\TypeLib] 1660099897
+#time=1d8ac641be3c488
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{D5F78C80-5252-11CF-90FA-00AA0042106E}] 1660099896
+#time=1d8ac641b2fc3c0
+@="ITargetFrame"
+
+[Software\\Classes\\Interface\\{D5F78C80-5252-11CF-90FA-00AA0042106E}\\NumMethods] 1660099896
+#time=1d8ac641b2fc30c
+@="17"
+
+[Software\\Classes\\Interface\\{D5F78C80-5252-11CF-90FA-00AA0042106E}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2fc42e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{D7540241-F9A1-4364-BEFC-DBCD2C4395B7}] 1660099896
+#time=1d8ac641b88324e
+@="ITfCompositionView"
+
+[Software\\Classes\\Interface\\{D7540241-F9A1-4364-BEFC-DBCD2C4395B7}\\NumMethods] 1660099896
+#time=1d8ac641b8831a4
+@="5"
+
+[Software\\Classes\\Interface\\{D7540241-F9A1-4364-BEFC-DBCD2C4395B7}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88329e
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{D84CCA99-CCE2-11D2-9ECC-0000F8085981}] 1660099897
+#time=1d8ac641be43652
+@="IWMPCore"
+
+[Software\\Classes\\Interface\\{D84CCA99-CCE2-11D2-9ECC-0000F8085981}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be4330a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D84CCA99-CCE2-11D2-9ECC-0000F8085981}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be4354e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D84CCA99-CCE2-11D2-9ECC-0000F8085981}\\TypeLib] 1660099897
+#time=1d8ac641be43738
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{D8CD007F-D08F-4191-9BFC-236EA7F0E4B5}] 1660099897
+#time=1d8ac641bd7cd18
+@="IWICBitmapDecoderInfo"
+
+[Software\\Classes\\Interface\\{D8CD007F-D08F-4191-9BFC-236EA7F0E4B5}\\NumMethods] 1660099897
+#time=1d8ac641bd7cc32
+@="26"
+
+[Software\\Classes\\Interface\\{D8CD007F-D08F-4191-9BFC-236EA7F0E4B5}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7cd90
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{D8F015C0-C278-11CE-A49E-444553540000}] 1660099896
+#time=1d8ac641bbc53f8
+@="IShellDispatch"
+
+[Software\\Classes\\Interface\\{D8F015C0-C278-11CE-A49E-444553540000}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc5218
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D8F015C0-C278-11CE-A49E-444553540000}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc5326
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D8F015C0-C278-11CE-A49E-444553540000}\\TypeLib] 1660099896
+#time=1d8ac641bbc54c0
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{D940F0F8-3CBB-4FD0-993F-471E7F2328AD}] 1660099897
+#time=1d8ac641be9f452
+@="IUpdateInstallationResult"
+
+[Software\\Classes\\Interface\\{D940F0F8-3CBB-4FD0-993F-471E7F2328AD}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9f272
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D940F0F8-3CBB-4FD0-993F-471E7F2328AD}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9f39e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D940F0F8-3CBB-4FD0-993F-471E7F2328AD}\\TypeLib] 1660099897
+#time=1d8ac641be9f51a
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{D963D3FE-173C-4862-9095-B92F66995F52}] 1660099895
+#time=1d8ac641b05b670
+@="IVBSAXErrorHandler"
+
+[Software\\Classes\\Interface\\{D963D3FE-173C-4862-9095-B92F66995F52}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05b454
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D963D3FE-173C-4862-9095-B92F66995F52}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05b5bc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D963D3FE-173C-4862-9095-B92F66995F52}\\TypeLib] 1660099895
+#time=1d8ac641b0bb570
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{D98D51E5-C9B4-496A-A9C1-18980261CF0F}] 1660099897
+#time=1d8ac641bc69aac
+@="IPrincipal"
+
+[Software\\Classes\\Interface\\{D98D51E5-C9B4-496A-A9C1-18980261CF0F}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc698cc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D98D51E5-C9B4-496A-A9C1-18980261CF0F}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc699f8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D98D51E5-C9B4-496A-A9C1-18980261CF0F}\\TypeLib] 1660099897
+#time=1d8ac641bc69b88
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{D9A59339-E245-4DBD-9686-4D5763E39624}] 1660099897
+#time=1d8ac641be9b348
+@="IInstallationBehavior"
+
+[Software\\Classes\\Interface\\{D9A59339-E245-4DBD-9686-4D5763E39624}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9b0f0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D9A59339-E245-4DBD-9686-4D5763E39624}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9b28a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{D9A59339-E245-4DBD-9686-4D5763E39624}\\TypeLib] 1660099897
+#time=1d8ac641be9b41a
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{DAA4FDD0-4727-4DBE-A1E7-745DCA317144}] 1660099897
+#time=1d8ac641be9ea98
+@="IDownloadResult"
+
+[Software\\Classes\\Interface\\{DAA4FDD0-4727-4DBE-A1E7-745DCA317144}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9e8cc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{DAA4FDD0-4727-4DBE-A1E7-745DCA317144}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9e9e4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{DAA4FDD0-4727-4DBE-A1E7-745DCA317144}\\TypeLib] 1660099897
+#time=1d8ac641be9eb74
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{DB01A1E3-A42B-11CF-8F20-00805F2CD064}] 1660099896
+#time=1d8ac641b2f1c22
+@="IActiveScriptSite"
+
+[Software\\Classes\\Interface\\{DB01A1E3-A42B-11CF-8F20-00805F2CD064}\\NumMethods] 1660099896
+#time=1d8ac641b2f1b6e
+@="11"
+
+[Software\\Classes\\Interface\\{DB01A1E3-A42B-11CF-8F20-00805F2CD064}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f1c7c
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{DDEFE873-6997-4E68-BE26-39B633ADBE12}] 1660099896
+#time=1d8ac641b30f498
+@="IQueryCancelAutoPlay"
+
+[Software\\Classes\\Interface\\{DDEFE873-6997-4E68-BE26-39B633ADBE12}\\NumMethods] 1660099896
+#time=1d8ac641b30f3f8
+@="4"
+
+[Software\\Classes\\Interface\\{DDEFE873-6997-4E68-BE26-39B633ADBE12}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30f4e8
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{DDF2891E-0F9C-11D0-8AD4-00C04FD8D503}] 1660099896
+#time=1d8ac641b2ef4b8
+@="IADsOpenDSObject"
+
+[Software\\Classes\\Interface\\{DDF2891E-0F9C-11D0-8AD4-00C04FD8D503}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b2ef2f6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{DDF2891E-0F9C-11D0-8AD4-00C04FD8D503}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2ef404
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{DDF2891E-0F9C-11D0-8AD4-00C04FD8D503}\\TypeLib] 1660099896
+#time=1d8ac641b2ef580
+@="{97D25DB0-0363-11CF-ABC4-02608C9E7553}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{DEA0A7B2-D4BA-11D1-8B09-00600806D9B6}] 1660099895
+#time=1d8ac641b102ad8
+@="ISWbemPropertySet"
+
+[Software\\Classes\\Interface\\{DEA0A7B2-D4BA-11D1-8B09-00600806D9B6}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b1028ee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{DEA0A7B2-D4BA-11D1-8B09-00600806D9B6}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b102a38
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{DEA0A7B2-D4BA-11D1-8B09-00600806D9B6}\\TypeLib] 1660099895
+#time=1d8ac641b102b8c
+@="{565783C6-CB41-11D1-8B02-00600806D9B6}"
+"Version"="1.2"
+
+[Software\\Classes\\Interface\\{DF0B3D60-548F-101B-8E65-08002B2BD119}] 1660099896
+#time=1d8ac641ba387c4
+@="ISupportErrorInfo"
+
+[Software\\Classes\\Interface\\{DF0B3D60-548F-101B-8E65-08002B2BD119}\\NumMethods] 1660099896
+#time=1d8ac641ba38710
+@="4"
+
+[Software\\Classes\\Interface\\{DF0B3D60-548F-101B-8E65-08002B2BD119}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba48b10
+@="{DF0B3D60-548F-101B-8E65-08002B2BD119}"
+
+[Software\\Classes\\Interface\\{DFD3B6B5-C10C-4BE9-85F6-A66969F402F6}] 1660099896
+#time=1d8ac641b309bc4
+@="IExplorerBrowser"
+
+[Software\\Classes\\Interface\\{DFD3B6B5-C10C-4BE9-85F6-A66969F402F6}\\NumMethods] 1660099896
+#time=1d8ac641b309b10
+@="18"
+
+[Software\\Classes\\Interface\\{DFD3B6B5-C10C-4BE9-85F6-A66969F402F6}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b309c1e
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{E0483BA0-47FF-4D9C-A6D6-7741D0B195F7}] 1660099896
+#time=1d8ac641b756e16
+@="INetFwOpenPort"
+
+[Software\\Classes\\Interface\\{E0483BA0-47FF-4D9C-A6D6-7741D0B195F7}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b756c2c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E0483BA0-47FF-4D9C-A6D6-7741D0B195F7}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b756d58
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E0483BA0-47FF-4D9C-A6D6-7741D0B195F7}\\TypeLib] 1660099896
+#time=1d8ac641b756efc
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{E07010EC-BC17-44C0-97B0-46C7C95B9EDC}] 1660099896
+#time=1d8ac641b3098c2
+@="IExplorerPaneVisibility"
+
+[Software\\Classes\\Interface\\{E07010EC-BC17-44C0-97B0-46C7C95B9EDC}\\NumMethods] 1660099896
+#time=1d8ac641b309822
+@="4"
+
+[Software\\Classes\\Interface\\{E07010EC-BC17-44C0-97B0-46C7C95B9EDC}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b309912
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{E2449660-9542-11D2-BF46-00105A2799B5}] 1660099896
+#time=1d8ac641b88b89a
+@="ITfProperty"
+
+[Software\\Classes\\Interface\\{E2449660-9542-11D2-BF46-00105A2799B5}\\NumMethods] 1660099896
+#time=1d8ac641b88b7e6
+@="11"
+
+[Software\\Classes\\Interface\\{E2449660-9542-11D2-BF46-00105A2799B5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b88b8f4
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{E4B24DB0-0990-11D3-8DF0-00105A2799B5}] 1660099896
+#time=1d8ac641b882934
+@="IEnumTfFunctionProviders"
+
+[Software\\Classes\\Interface\\{E4B24DB0-0990-11D3-8DF0-00105A2799B5}\\NumMethods] 1660099896
+#time=1d8ac641b882894
+@="7"
+
+[Software\\Classes\\Interface\\{E4B24DB0-0990-11D3-8DF0-00105A2799B5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b882984
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{E4FBCF03-223D-4E81-9333-D635556DD1B5}] 1660099897
+#time=1d8ac641bd802c4
+@="IWICBitmapClipper"
+
+[Software\\Classes\\Interface\\{E4FBCF03-223D-4E81-9333-D635556DD1B5}\\NumMethods] 1660099897
+#time=1d8ac641bd80198
+@="9"
+
+[Software\\Classes\\Interface\\{E4FBCF03-223D-4E81-9333-D635556DD1B5}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd80346
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{E572D3C9-37BE-4AE2-825D-D521763E3108}] 1660099895
+#time=1d8ac641b0d5560
+@="IShellNameSpace"
+
+[Software\\Classes\\Interface\\{E572D3C9-37BE-4AE2-825D-D521763E3108}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d53a8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E572D3C9-37BE-4AE2-825D-D521763E3108}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d54b6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E572D3C9-37BE-4AE2-825D-D521763E3108}\\TypeLib] 1660099895
+#time=1d8ac641b0d5628
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{E6176F96-E373-4801-B223-3B62C068C0B4}] 1660099895
+#time=1d8ac641b0ed2a0
+@="ISpeechPhraseElement"
+
+[Software\\Classes\\Interface\\{E6176F96-E373-4801-B223-3B62C068C0B4}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0ed0de
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E6176F96-E373-4801-B223-3B62C068C0B4}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0ed1f6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E6176F96-E373-4801-B223-3B62C068C0B4}\\TypeLib] 1660099895
+#time=1d8ac641b0ed368
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{E6E9C590-3E18-40E3-8299-061F98BDE7C7}] 1660099895
+#time=1d8ac641b0e627a
+@="ISpeechAudioFormat"
+
+[Software\\Classes\\Interface\\{E6E9C590-3E18-40E3-8299-061F98BDE7C7}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e5e7e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E6E9C590-3E18-40E3-8299-061F98BDE7C7}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e5fd2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E6E9C590-3E18-40E3-8299-061F98BDE7C7}\\TypeLib] 1660099895
+#time=1d8ac641b0e645a
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{E6FDD21A-163F-4975-9C8C-A69F1BA37034}] 1660099896
+#time=1d8ac641b30de68
+@="IFileDialogCustomize"
+
+[Software\\Classes\\Interface\\{E6FDD21A-163F-4975-9C8C-A69F1BA37034}\\NumMethods] 1660099896
+#time=1d8ac641b30ddaa
+@="30"
+
+[Software\\Classes\\Interface\\{E6FDD21A-163F-4975-9C8C-A69F1BA37034}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b30dec2
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{E7A1AF80-4D96-11CF-960C-0080C7F4EE85}] 1660099896
+#time=1d8ac641bbc7162
+@="IShellFolderViewDual"
+
+[Software\\Classes\\Interface\\{E7A1AF80-4D96-11CF-960C-0080C7F4EE85}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc6f8c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E7A1AF80-4D96-11CF-960C-0080C7F4EE85}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc70a4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E7A1AF80-4D96-11CF-960C-0080C7F4EE85}\\TypeLib] 1660099896
+#time=1d8ac641bbc722a
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{E87A44C4-B76E-4C47-8B09-298EB12A2714}] 1660099897
+#time=1d8ac641bd7c886
+@="IWICBitmapCodecInfo"
+
+[Software\\Classes\\Interface\\{E87A44C4-B76E-4C47-8B09-298EB12A2714}\\NumMethods] 1660099897
+#time=1d8ac641bd7c7aa
+@="23"
+
+[Software\\Classes\\Interface\\{E87A44C4-B76E-4C47-8B09-298EB12A2714}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7c908
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{E8917260-7579-4BE1-B5DD-7AFBFA6F077B}] 1660099895
+#time=1d8ac641b05a7e8
+@="IVBSAXDeclHandler"
+
+[Software\\Classes\\Interface\\{E8917260-7579-4BE1-B5DD-7AFBFA6F077B}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05a630
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E8917260-7579-4BE1-B5DD-7AFBFA6F077B}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05a73e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{E8917260-7579-4BE1-B5DD-7AFBFA6F077B}\\TypeLib] 1660099895
+#time=1d8ac641b0c3928
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{E8EDA601-3D48-431A-AB44-69059BE88BBE}] 1660099897
+#time=1d8ac641bd7bb16
+@="IWICPixelFormatInfo"
+
+[Software\\Classes\\Interface\\{E8EDA601-3D48-431A-AB44-69059BE88BBE}\\NumMethods] 1660099897
+#time=1d8ac641bd7b92c
+@="16"
+
+[Software\\Classes\\Interface\\{E8EDA601-3D48-431A-AB44-69059BE88BBE}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd7bba2
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{EA1AFB91-9E28-4B86-90E9-9E9F8A5EEFAF}] 1660099896
+#time=1d8ac641b308972
+@="ITaskbarList3"
+
+[Software\\Classes\\Interface\\{EA1AFB91-9E28-4B86-90E9-9E9F8A5EEFAF}\\NumMethods] 1660099896
+#time=1d8ac641b3088c8
+@="21"
+
+[Software\\Classes\\Interface\\{EA1AFB91-9E28-4B86-90E9-9E9F8A5EEFAF}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b3089cc
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{EAA7C309-BBEC-49D5-821D-64D966CB667F}] 1660099896
+#time=1d8ac641bbc4f02
+@="FolderItems3"
+
+[Software\\Classes\\Interface\\{EAA7C309-BBEC-49D5-821D-64D966CB667F}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc4d40
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EAA7C309-BBEC-49D5-821D-64D966CB667F}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc4e4e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EAA7C309-BBEC-49D5-821D-64D966CB667F}\\TypeLib] 1660099896
+#time=1d8ac641bbc4fd4
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{EAB22AC1-30C1-11CF-A7EB-0000C05BAE0B}] 1660099895
+#time=1d8ac641b0d1c9e
+@="IWebBrowser"
+
+[Software\\Classes\\Interface\\{EAB22AC1-30C1-11CF-A7EB-0000C05BAE0B}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d1afa
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EAB22AC1-30C1-11CF-A7EB-0000C05BAE0B}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d1bf4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EAB22AC1-30C1-11CF-A7EB-0000C05BAE0B}\\TypeLib] 1660099895
+#time=1d8ac641b0d1d52
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{EAB22AC2-30C1-11CF-A7EB-0000C05BAE0B}] 1660099895
+#time=1d8ac641b0d2108
+@="DWebBrowserEvents"
+
+[Software\\Classes\\Interface\\{EAB22AC2-30C1-11CF-A7EB-0000C05BAE0B}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d1f5a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EAB22AC2-30C1-11CF-A7EB-0000C05BAE0B}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d2054
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EAB22AC2-30C1-11CF-A7EB-0000C05BAE0B}\\TypeLib] 1660099895
+#time=1d8ac641b0d21d0
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{EABCE657-75BC-44A2-AA7F-C56476742963}] 1660099895
+#time=1d8ac641b0e6f68
+@="ISpeechGrammarRuleStateTransitions"
+
+[Software\\Classes\\Interface\\{EABCE657-75BC-44A2-AA7F-C56476742963}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0e6d38
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EABCE657-75BC-44A2-AA7F-C56476742963}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0e6e8c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EABCE657-75BC-44A2-AA7F-C56476742963}\\TypeLib] 1660099895
+#time=1d8ac641b0e7058
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{EAE1BA61-A4ED-11CF-8F20-00805F2CD064}] 1660099896
+#time=1d8ac641b2f18da
+@="IActiveScriptError"
+
+[Software\\Classes\\Interface\\{EAE1BA61-A4ED-11CF-8F20-00805F2CD064}\\NumMethods] 1660099896
+#time=1d8ac641b2f181c
+@="6"
+
+[Software\\Classes\\Interface\\{EAE1BA61-A4ED-11CF-8F20-00805F2CD064}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f1934
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{EC21B779-EDEF-462D-BBA4-AD9DDE2B29A7}] 1660099897
+#time=1d8ac641be4052e
+@="IWMPNetwork"
+
+[Software\\Classes\\Interface\\{EC21B779-EDEF-462D-BBA4-AD9DDE2B29A7}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be4033a
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EC21B779-EDEF-462D-BBA4-AD9DDE2B29A7}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be40470
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EC21B779-EDEF-462D-BBA4-AD9DDE2B29A7}\\TypeLib] 1660099897
+#time=1d8ac641be40600
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{EC39FA88-F8AF-41C5-8421-38BED28F4673}] 1660099896
+#time=1d8ac641b305218
+@="IShellView3"
+
+[Software\\Classes\\Interface\\{EC39FA88-F8AF-41C5-8421-38BED28F4673}\\NumMethods] 1660099896
+#time=1d8ac641b305164
+@="21"
+
+[Software\\Classes\\Interface\\{EC39FA88-F8AF-41C5-8421-38BED28F4673}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b305286
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{EC5EC8A9-C395-4314-9C77-54D7A935FF70}] 1660099897
+#time=1d8ac641bd81110
+@="IWICImagingFactory"
+
+[Software\\Classes\\Interface\\{EC5EC8A9-C395-4314-9C77-54D7A935FF70}\\NumMethods] 1660099897
+#time=1d8ac641bd81020
+@="28"
+
+[Software\\Classes\\Interface\\{EC5EC8A9-C395-4314-9C77-54D7A935FF70}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bd8119c
+@="{00000301-A8F2-4877-BA0A-FD2B6645FB94}"
+
+[Software\\Classes\\Interface\\{ED2879CF-CED9-4EE6-A534-DE0191D5468D}] 1660099895
+#time=1d8ac641b0f0496
+@="ISpeechRecoResult"
+
+[Software\\Classes\\Interface\\{ED2879CF-CED9-4EE6-A534-DE0191D5468D}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0f02d4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{ED2879CF-CED9-4EE6-A534-DE0191D5468D}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0f03e2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{ED2879CF-CED9-4EE6-A534-DE0191D5468D}\\TypeLib] 1660099895
+#time=1d8ac641b0f0554
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{ED8C108D-4349-11D2-91A4-00C04F7969E8}] 1660099895
+#time=1d8ac641b03db70
+@="IXMLHTTPRequest"
+
+[Software\\Classes\\Interface\\{ED8C108D-4349-11D2-91A4-00C04F7969E8}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b02c1c2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{ED8C108D-4349-11D2-91A4-00C04F7969E8}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b02c2ee
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{ED8C108D-4349-11D2-91A4-00C04F7969E8}\\TypeLib] 1660099895
+#time=1d8ac641b0c5a70
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{EDC817AA-92B8-11D1-B075-00C04FC33AA5}] 1660099896
+#time=1d8ac641bbc44f8
+@="FolderItem2"
+
+[Software\\Classes\\Interface\\{EDC817AA-92B8-11D1-B075-00C04FC33AA5}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc430e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EDC817AA-92B8-11D1-B075-00C04FC33AA5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc4444
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EDC817AA-92B8-11D1-B075-00C04FC33AA5}\\TypeLib] 1660099896
+#time=1d8ac641bbc45c0
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{EE4C8FE2-34B2-11D3-A3BF-006097C9B344}] 1660099897
+#time=1d8ac641be41122
+@="IWMPCdromCollection"
+
+[Software\\Classes\\Interface\\{EE4C8FE2-34B2-11D3-A3BF-006097C9B344}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be40f38
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EE4C8FE2-34B2-11D3-A3BF-006097C9B344}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be41064
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EE4C8FE2-34B2-11D3-A3BF-006097C9B344}\\TypeLib] 1660099897
+#time=1d8ac641be411fe
+@="{6BF52A50-394A-11D3-B153-00C04F79FAA6}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{EEB14B68-808B-4ABE-A5EA-B51DA7588008}] 1660099895
+#time=1d8ac641b0effe6
+@="ISpeechMemoryStream"
+
+[Software\\Classes\\Interface\\{EEB14B68-808B-4ABE-A5EA-B51DA7588008}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0efe10
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EEB14B68-808B-4ABE-A5EA-B51DA7588008}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0eff1e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EEB14B68-808B-4ABE-A5EA-B51DA7588008}\\TypeLib] 1660099895
+#time=1d8ac641b0f00a4
+@="{C866CA3A-32F7-11D2-9602-00C04F8EE628}"
+"Version"="5.4"
+
+[Software\\Classes\\Interface\\{EFD84B2D-4BCF-4298-BE25-EB542A59FBDA}] 1660099896
+#time=1d8ac641bbc62a8
+@="IShellDispatch4"
+
+[Software\\Classes\\Interface\\{EFD84B2D-4BCF-4298-BE25-EB542A59FBDA}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc60d2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EFD84B2D-4BCF-4298-BE25-EB542A59FBDA}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc61ea
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EFD84B2D-4BCF-4298-BE25-EB542A59FBDA}\\TypeLib] 1660099896
+#time=1d8ac641bbc6384
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{EFF90582-2DDC-480F-A06D-60F3FBC362C3}] 1660099897
+#time=1d8ac641be9b85c
+@="IStringCollection"
+
+[Software\\Classes\\Interface\\{EFF90582-2DDC-480F-A06D-60F3FBC362C3}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be9b67c
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EFF90582-2DDC-480F-A06D-60F3FBC362C3}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be9b7a8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{EFF90582-2DDC-480F-A06D-60F3FBC362C3}\\TypeLib] 1660099897
+#time=1d8ac641be9b92e
+@="{B596CC9F-56E5-419E-A622-E01BB457431E}"
+"Version"="2.0"
+
+[Software\\Classes\\Interface\\{F04061AC-1659-4A3F-A954-775AA57FC083}] 1660099896
+#time=1d8ac641b310474
+@="IAssocHandler"
+
+[Software\\Classes\\Interface\\{F04061AC-1659-4A3F-A954-775AA57FC083}\\NumMethods] 1660099896
+#time=1d8ac641b3103ac
+@="10"
+
+[Software\\Classes\\Interface\\{F04061AC-1659-4A3F-A954-775AA57FC083}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b3104ce
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{F0C0F8DD-CF38-44E1-BB0F-68CF0D551C78}] 1660099896
+#time=1d8ac641b883b54
+@="IEnumTfContextViews"
+
+[Software\\Classes\\Interface\\{F0C0F8DD-CF38-44E1-BB0F-68CF0D551C78}\\NumMethods] 1660099896
+#time=1d8ac641b883ab4
+@="7"
+
+[Software\\Classes\\Interface\\{F0C0F8DD-CF38-44E1-BB0F-68CF0D551C78}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b883bae
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{F0D2D8EF-3890-11D2-BF8B-00C04FB93661}] 1660099896
+#time=1d8ac641bbc3b2a
+@="Folder2"
+
+[Software\\Classes\\Interface\\{F0D2D8EF-3890-11D2-BF8B-00C04FB93661}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc3940
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F0D2D8EF-3890-11D2-BF8B-00C04FB93661}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc3a58
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F0D2D8EF-3890-11D2-BF8B-00C04FB93661}\\TypeLib] 1660099896
+#time=1d8ac641bbc3bf2
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{F10D27CC-3EC0-415C-8ED8-77AB1C5E7262}] 1660099895
+#time=1d8ac641b05c958
+@="IMXAttributes"
+
+[Software\\Classes\\Interface\\{F10D27CC-3EC0-415C-8ED8-77AB1C5E7262}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b05c7a0
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F10D27CC-3EC0-415C-8ED8-77AB1C5E7262}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b05c8ae
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F10D27CC-3EC0-415C-8ED8-77AB1C5E7262}\\TypeLib] 1660099895
+#time=1d8ac641b0c4d64
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{F164EDF1-CC7C-4F0D-9A94-34222625C393}] 1660099897
+#time=1d8ac641bcb7c52
+@="IInternetSecurityManagerEx"
+
+[Software\\Classes\\Interface\\{F164EDF1-CC7C-4F0D-9A94-34222625C393}\\NumMethods] 1660099897
+#time=1d8ac641bcb7b9e
+@="12"
+
+[Software\\Classes\\Interface\\{F164EDF1-CC7C-4F0D-9A94-34222625C393}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb7cb6
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{F1BD1079-9F01-4BDC-8036-F09B70095066}] 1660099896
+#time=1d8ac641babca60
+@="IBackgroundCopyJobHttpOptions"
+
+[Software\\Classes\\Interface\\{F1BD1079-9F01-4BDC-8036-F09B70095066}\\NumMethods] 1660099896
+#time=1d8ac641babc9ac
+@="11"
+
+[Software\\Classes\\Interface\\{F1BD1079-9F01-4BDC-8036-F09B70095066}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641babcac4
+@="{5CE34C0D-0DC9-4C1F-897C-DAA1B78CEE7C}"
+
+[Software\\Classes\\Interface\\{F1E50292-A795-4117-8E09-2B560A72AC60}] 1660099897
+#time=1d8ac641bcb7ff4
+@="IInternetSecurityManagerEx2"
+
+[Software\\Classes\\Interface\\{F1E50292-A795-4117-8E09-2B560A72AC60}\\NumMethods] 1660099897
+#time=1d8ac641bcb7f2c
+@="16"
+
+[Software\\Classes\\Interface\\{F1E50292-A795-4117-8E09-2B560A72AC60}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb8058
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{F29F6BC0-5021-11CE-AA15-00006901293F}] 1660099896
+#time=1d8ac641ba10c60
+@="IROTData"
+
+[Software\\Classes\\Interface\\{F29F6BC0-5021-11CE-AA15-00006901293F}\\NumMethods] 1660099896
+#time=1d8ac641ba10bc0
+@="4"
+
+[Software\\Classes\\Interface\\{F29F6BC0-5021-11CE-AA15-00006901293F}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba10cba
+@="{00000320-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F3470F24-15FD-11D2-BB2E-00805FF7EFCA}] 1660099895
+#time=1d8ac641b0d5b28
+@="IScriptErrorList"
+
+[Software\\Classes\\Interface\\{F3470F24-15FD-11D2-BB2E-00805FF7EFCA}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d5858
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F3470F24-15FD-11D2-BB2E-00805FF7EFCA}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d5966
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F3470F24-15FD-11D2-BB2E-00805FF7EFCA}\\TypeLib] 1660099895
+#time=1d8ac641b0d5bf0
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{F5BC8FC5-536D-4F77-B852-FBC1356FDEB6}] 1660099897
+#time=1d8ac641bc6ace0
+@="ITaskDefinition"
+
+[Software\\Classes\\Interface\\{F5BC8FC5-536D-4F77-B852-FBC1356FDEB6}\\ProxyStubClsid] 1660099897
+#time=1d8ac641bc6aa88
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F5BC8FC5-536D-4F77-B852-FBC1356FDEB6}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bc6ac04
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F5BC8FC5-536D-4F77-B852-FBC1356FDEB6}\\TypeLib] 1660099897
+#time=1d8ac641bc6add0
+@="{E34CB9F1-C7F7-424C-BE29-027DCC09363A}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{F7898AF5-CAC4-4632-A2EC-DA06E5111AF2}] 1660099896
+#time=1d8ac641b75b33a
+@="INetFwMgr"
+
+[Software\\Classes\\Interface\\{F7898AF5-CAC4-4632-A2EC-DA06E5111AF2}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b75afca
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F7898AF5-CAC4-4632-A2EC-DA06E5111AF2}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b75b268
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F7898AF5-CAC4-4632-A2EC-DA06E5111AF2}\\TypeLib] 1660099896
+#time=1d8ac641b75b42a
+@="{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{F935DC21-1CF0-11D0-ADB9-00C04FD58A0B}] 1660099897
+#time=1d8ac641be83162
+@="IWshShell"
+
+[Software\\Classes\\Interface\\{F935DC21-1CF0-11D0-ADB9-00C04FD58A0B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be82f82
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F935DC21-1CF0-11D0-ADB9-00C04FD58A0B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be830a4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F935DC21-1CF0-11D0-ADB9-00C04FD58A0B}\\TypeLib] 1660099897
+#time=1d8ac641be83270
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{F935DC23-1CF0-11D0-ADB9-00C04FD58A0B}] 1660099897
+#time=1d8ac641be82bfe
+@="IWshShortcut"
+
+[Software\\Classes\\Interface\\{F935DC23-1CF0-11D0-ADB9-00C04FD58A0B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be82780
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F935DC23-1CF0-11D0-ADB9-00C04FD58A0B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be828a2
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F935DC23-1CF0-11D0-ADB9-00C04FD58A0B}\\TypeLib] 1660099897
+#time=1d8ac641be82d02
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{F935DC27-1CF0-11D0-ADB9-00C04FD58A0B}] 1660099897
+#time=1d8ac641be817b8
+@="IWshCollection"
+
+[Software\\Classes\\Interface\\{F935DC27-1CF0-11D0-ADB9-00C04FD58A0B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be815c4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F935DC27-1CF0-11D0-ADB9-00C04FD58A0B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be81704
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F935DC27-1CF0-11D0-ADB9-00C04FD58A0B}\\TypeLib] 1660099897
+#time=1d8ac641be8188a
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{F935DC29-1CF0-11D0-ADB9-00C04FD58A0B}] 1660099897
+#time=1d8ac641be81eb6
+@="IWshEnvironment"
+
+[Software\\Classes\\Interface\\{F935DC29-1CF0-11D0-ADB9-00C04FD58A0B}\\ProxyStubClsid] 1660099897
+#time=1d8ac641be81c72
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F935DC29-1CF0-11D0-ADB9-00C04FD58A0B}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641be81d9e
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{F935DC29-1CF0-11D0-ADB9-00C04FD58A0B}\\TypeLib] 1660099897
+#time=1d8ac641be81f92
+@="{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{F99D3F40-8E32-11D2-BF46-00105A2799B5}] 1660099896
+#time=1d8ac641b886c50
+@="IEnumTfRanges"
+
+[Software\\Classes\\Interface\\{F99D3F40-8E32-11D2-BF46-00105A2799B5}\\NumMethods] 1660099896
+#time=1d8ac641b886b7e
+@="7"
+
+[Software\\Classes\\Interface\\{F99D3F40-8E32-11D2-BF46-00105A2799B5}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b886cb4
+@="{B5F8FB3B-393F-4F7C-84CB-504924C2705A}"
+
+[Software\\Classes\\Interface\\{FA4BB38C-FAF9-4CCA-9302-D1DD0FE520DB}] 1660099895
+#time=1d8ac641b064798
+@="IMXSchemaDeclHandler"
+
+[Software\\Classes\\Interface\\{FA4BB38C-FAF9-4CCA-9302-D1DD0FE520DB}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0645d6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FA4BB38C-FAF9-4CCA-9302-D1DD0FE520DB}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0646e4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FA4BB38C-FAF9-4CCA-9302-D1DD0FE520DB}\\TypeLib] 1660099895
+#time=1d8ac641b0bf9ea
+@="{F5078F18-C551-11D3-89B9-0000F81FE221}"
+"Version"="6.0"
+
+[Software\\Classes\\Interface\\{FAC32C80-CBE4-11CE-8350-444553540000}] 1660099896
+#time=1d8ac641bbc2c20
+@="FolderItem"
+
+[Software\\Classes\\Interface\\{FAC32C80-CBE4-11CE-8350-444553540000}\\ProxyStubClsid] 1660099896
+#time=1d8ac641bbc2a22
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FAC32C80-CBE4-11CE-8350-444553540000}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641bbc2b62
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FAC32C80-CBE4-11CE-8350-444553540000}\\TypeLib] 1660099896
+#time=1d8ac641bbc2ce8
+@="{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{FC4801A1-2BA9-11CF-A229-00AA003D7352}] 1660099897
+#time=1d8ac641bcb64c4
+@="IBindHost"
+
+[Software\\Classes\\Interface\\{FC4801A1-2BA9-11CF-A229-00AA003D7352}\\NumMethods] 1660099897
+#time=1d8ac641bcb6410
+@="6"
+
+[Software\\Classes\\Interface\\{FC4801A1-2BA9-11CF-A229-00AA003D7352}\\ProxyStubClsid32] 1660099897
+#time=1d8ac641bcb6528
+@="{79EAC9F1-BAF9-11CE-8C82-00AA004BA90B}"
+
+[Software\\Classes\\Interface\\{FC4801A3-2BA9-11CF-A229-00AA003D7352}] 1660099896
+#time=1d8ac641ba407da
+@="IObjectWithSite"
+
+[Software\\Classes\\Interface\\{FC4801A3-2BA9-11CF-A229-00AA003D7352}\\NumMethods] 1660099896
+#time=1d8ac641ba4071c
+@="5"
+
+[Software\\Classes\\Interface\\{FC4801A3-2BA9-11CF-A229-00AA003D7352}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641ba40834
+@="{B196B286-BAB4-101A-B69C-00AA00341D07}"
+
+[Software\\Classes\\Interface\\{FD8256D0-FD15-11CE-ABC4-02608C9E7553}] 1660099896
+#time=1d8ac641b2ee090
+@="IADs"
+
+[Software\\Classes\\Interface\\{FD8256D0-FD15-11CE-ABC4-02608C9E7553}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b2edec4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FD8256D0-FD15-11CE-ABC4-02608C9E7553}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2edfdc
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FD8256D0-FD15-11CE-ABC4-02608C9E7553}\\TypeLib] 1660099896
+#time=1d8ac641b2ee158
+@="{97D25DB0-0363-11CF-ABC4-02608C9E7553}"
+"Version"="1.0"
+
+[Software\\Classes\\Interface\\{FE4106E0-399A-11D0-A48C-00A0C90A8F39}] 1660099895
+#time=1d8ac641b0d38aa
+@="DShellWindowsEvents"
+
+[Software\\Classes\\Interface\\{FE4106E0-399A-11D0-A48C-00A0C90A8F39}\\ProxyStubClsid] 1660099895
+#time=1d8ac641b0d36e8
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FE4106E0-399A-11D0-A48C-00A0C90A8F39}\\ProxyStubClsid32] 1660099895
+#time=1d8ac641b0d37f6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FE4106E0-399A-11D0-A48C-00A0C90A8F39}\\TypeLib] 1660099895
+#time=1d8ac641b0d3968
+@="{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}"
+"Version"="1.1"
+
+[Software\\Classes\\Interface\\{FE7C4271-210C-448D-9F54-76DAB7047B28}] 1660099896
+#time=1d8ac641b2f4f62
+@="IActiveScriptParseProcedure2_64"
+
+[Software\\Classes\\Interface\\{FE7C4271-210C-448D-9F54-76DAB7047B28}\\NumMethods] 1660099896
+#time=1d8ac641b2f4e86
+@="4"
+
+[Software\\Classes\\Interface\\{FE7C4271-210C-448D-9F54-76DAB7047B28}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b2f4fc6
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{FEC87AAF-35F9-447A-ADB7-20234491401A}] 1660099896
+#time=1d8ac641b31131a
+@="IPreviewHandlerFrame"
+
+[Software\\Classes\\Interface\\{FEC87AAF-35F9-447A-ADB7-20234491401A}\\NumMethods] 1660099896
+#time=1d8ac641b31125c
+@="5"
+
+[Software\\Classes\\Interface\\{FEC87AAF-35F9-447A-ADB7-20234491401A}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b311374
+@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
+
+[Software\\Classes\\Interface\\{FECEAAA2-8405-11CF-8BA1-00AA00476DA6}] 1660099896
+#time=1d8ac641b5b8a00
+@="IOmHistory"
+
+[Software\\Classes\\Interface\\{FECEAAA2-8405-11CF-8BA1-00AA00476DA6}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5b70c4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FECEAAA2-8405-11CF-8BA1-00AA00476DA6}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5b72a4
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FECEAAA2-8405-11CF-8BA1-00AA00476DA6}\\TypeLib] 1660099896
+#time=1d8ac641b8b8a7a
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Interface\\{FECEAAA5-8405-11CF-8BA1-00AA00476DA6}] 1660099896
+#time=1d8ac641b5bbf02
+@="IOmNavigator"
+
+[Software\\Classes\\Interface\\{FECEAAA5-8405-11CF-8BA1-00AA00476DA6}\\ProxyStubClsid] 1660099896
+#time=1d8ac641b5bbce6
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FECEAAA5-8405-11CF-8BA1-00AA00476DA6}\\ProxyStubClsid32] 1660099896
+#time=1d8ac641b5bbe30
+@="{00020424-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\Interface\\{FECEAAA5-8405-11CF-8BA1-00AA00476DA6}\\TypeLib] 1660099896
+#time=1d8ac641b8b9d26
+@="{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}"
+"Version"="4.0"
+
+[Software\\Classes\\Internet.HHCtrl] 1660099896
+#time=1d8ac641b745d3c
+@="HHCtrl Object"
+
+[Software\\Classes\\Internet.HHCtrl\\CLSID] 1660099896
+#time=1d8ac641b747470
+@="{52A2AAAE-085D-4187-97EA-8C30DB990436}"
+
+[Software\\Classes\\Internet.HHCtrl\\CurVer] 1660099896
+#time=1d8ac641b745da0
+@="Internet.HHCtrl.1"
+
+[Software\\Classes\\Internet.HHCtrl.1] 1660099896
+#time=1d8ac641b7458b4
+@="HHCtrl Object"
+
+[Software\\Classes\\Internet.HHCtrl.1\\CLSID] 1660099896
+#time=1d8ac641b747204
+@="{52A2AAAE-085D-4187-97EA-8C30DB990436}"
+
+[Software\\Classes\\InternetExplorer.Application] 1660099895
+#time=1d8ac641b0dc360
+@="Internet Explorer(Ver 1.0)"
+
+[Software\\Classes\\InternetExplorer.Application\\CLSID] 1660099895
+#time=1d8ac641b0dc298
+@="{0002DF01-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\InternetExplorer.Application\\CurVer] 1660099895
+#time=1d8ac641b0dc3ba
+@="InternetExplorer.Application.1"
+
+[Software\\Classes\\InternetExplorer.Application.1] 1660099895
+#time=1d8ac641b0dc018
+@="Internet Explorer(Ver 1.0)"
+
+[Software\\Classes\\InternetExplorer.Application.1\\CLSID] 1660099895
+#time=1d8ac641b0dc072
+@="{0002DF01-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\InternetShortcut] 1660099896
+#time=1d8ac641b788470
+@="Internet Shortcut"
+"EditFlags"="2"
+"IsShortcut"=""
+"NeverShowExt"=""
+
+[Software\\Classes\\InternetShortcut\\CLSID] 1660099896
+#time=1d8ac641b787156
+@="{FBF23B40-E3F0-101B-8488-00AA003E56F8}"
+
+[Software\\Classes\\InternetShortcut\\DefaultIcon] 1660099896
+#time=1d8ac641b7883c6
+@="url.dll,0"
+
+[Software\\Classes\\InternetShortcut\\shell\\open\\command] 1660099896
+#time=1d8ac641b7885a6
+@="rundll32.exe ieframe.dll,OpenURL %l"
+
+[Software\\Classes\\ITS FILE] 1660099896
+#time=1d8ac641b7c1f86
+@="Internet Document Set"
+
+[Software\\Classes\\ITS FILE\\DefaultIcon] 1660099896
+#time=1d8ac641b7c1fea
+@="C:\\windows\\system32\\itss.dll,0"
+
+[Software\\Classes\\ITSProtocol] 1660099896
+#time=1d8ac641b7c2710
+@="Microsoft InfoTech Protocols for IE 4.0"
+
+[Software\\Classes\\ITSProtocol\\CLSID] 1660099896
+#time=1d8ac641b7c265c
+@="{9D148291-B9C8-11D0-A4CC-0000F80149F6}"
+
+[Software\\Classes\\ITSProtocol\\CurVer] 1660099896
+#time=1d8ac641b7c276a
+@="ITSProtocol1.0"
+
+[Software\\Classes\\JavaScript] 1660099896
+#time=1d8ac641b7d42ee
+@="JScript Language"
+
+[Software\\Classes\\JavaScript\\CLSID] 1660099896
+#time=1d8ac641b7d423a
+@="{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\JavaScript\\OLEScript] 1660099896
+#time=1d8ac641b7d42ee
+
+[Software\\Classes\\JavaScript Author] 1660099896
+#time=1d8ac641b7d545a
+@="JScript Language Authoring"
+
+[Software\\Classes\\JavaScript Author\\CLSID] 1660099896
+#time=1d8ac641b7d53a6
+@="{F414C261-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\JavaScript Author\\OLEScript] 1660099896
+#time=1d8ac641b7d545a
+
+[Software\\Classes\\JavaScript1.1] 1660099896
+#time=1d8ac641b7d45dc
+@="JScript Language"
+
+[Software\\Classes\\JavaScript1.1\\CLSID] 1660099896
+#time=1d8ac641b7d4514
+@="{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\JavaScript1.1\\OLEScript] 1660099896
+#time=1d8ac641b7d45dc
+
+[Software\\Classes\\JavaScript1.1 Author] 1660099896
+#time=1d8ac641b7d5720
+@="JScript Language Authoring"
+
+[Software\\Classes\\JavaScript1.1 Author\\CLSID] 1660099896
+#time=1d8ac641b7d5680
+@="{F414C261-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\JavaScript1.1 Author\\OLEScript] 1660099896
+#time=1d8ac641b7d5720
+
+[Software\\Classes\\JavaScript1.2] 1660099896
+#time=1d8ac641b7d48de
+@="JScript Language"
+
+[Software\\Classes\\JavaScript1.2\\CLSID] 1660099896
+#time=1d8ac641b7d482a
+@="{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\JavaScript1.2\\OLEScript] 1660099896
+#time=1d8ac641b7d48de
+
+[Software\\Classes\\JavaScript1.2 Author] 1660099896
+#time=1d8ac641b7d5a18
+@="JScript Language Authoring"
+
+[Software\\Classes\\JavaScript1.2 Author\\CLSID] 1660099896
+#time=1d8ac641b7d5964
+@="{F414C261-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\JavaScript1.2 Author\\OLEScript] 1660099896
+#time=1d8ac641b7d5a18
+
+[Software\\Classes\\JavaScript1.3] 1660099896
+#time=1d8ac641b7d4bb8
+@="JScript Language"
+
+[Software\\Classes\\JavaScript1.3\\CLSID] 1660099896
+#time=1d8ac641b7d4b0e
+@="{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\JavaScript1.3\\OLEScript] 1660099896
+#time=1d8ac641b7d4bb8
+
+[Software\\Classes\\JPEGFilter.CoJPEGFilter] 1660099896
+#time=1d8ac641b8add96
+@="CoJPEGFilter Class"
+
+[Software\\Classes\\JPEGFilter.CoJPEGFilter\\CLSID] 1660099896
+#time=1d8ac641b8adcf6
+@="{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}"
+
+[Software\\Classes\\JPEGFilter.CoJPEGFilter\\CurVer] 1660099896
+#time=1d8ac641b8addf0
+@="JPEGFilter.CoJPEGFilter.1"
+
+[Software\\Classes\\JPEGFilter.CoJPEGFilter.1] 1660099896
+#time=1d8ac641b8ada8a
+@="CoJPEGFilter Class"
+
+[Software\\Classes\\JPEGFilter.CoJPEGFilter.1\\CLSID] 1660099896
+#time=1d8ac641b8adada
+@="{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}"
+
+[Software\\Classes\\JScript] 1660099896
+#time=1d8ac641b7d5018
+@="JScript Language"
+
+[Software\\Classes\\JScript\\CLSID] 1660099896
+#time=1d8ac641b7d257a
+@="{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\JScript\\OLEScript] 1660099896
+#time=1d8ac641b7d5018
+
+[Software\\Classes\\JScript Author] 1660099896
+#time=1d8ac641b7d5180
+@="JScript Language Authoring"
+
+[Software\\Classes\\JScript Author\\CLSID] 1660099896
+#time=1d8ac641b7d27be
+@="{F414C261-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\JScript Author\\OLEScript] 1660099896
+#time=1d8ac641b7d5180
+
+[Software\\Classes\\JScript.Encode] 1660099896
+#time=1d8ac641b7d6260
+@="JScript Language Encoding"
+
+[Software\\Classes\\JScript.Encode\\CLSID] 1660099896
+#time=1d8ac641b7d29e4
+@="{F414C262-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\JScript.Encode\\OLEScript] 1660099896
+#time=1d8ac641b7d6260
+
+[Software\\Classes\\JSFile] 1660099896
+#time=1d8ac641b7d64a4
+@="JScript Script File"
+
+[Software\\Classes\\JSFile\\ScriptEngine] 1660099896
+#time=1d8ac641b7d6508
+@="JScript"
+
+[Software\\Classes\\LDAP] 1660099896
+#time=1d8ac641b3144fc
+@="LDAP Provider Object"
+
+[Software\\Classes\\LDAP\\CLSID] 1660099896
+#time=1d8ac641b31454c
+@="{228D9A81-C302-11CF-9AA4-00AA004A5691}"
+
+[Software\\Classes\\LDAPNamespace] 1660099896
+#time=1d8ac641b314754
+@="LDAP Namespace Object"
+
+[Software\\Classes\\LDAPNamespace\\CLSID] 1660099896
+#time=1d8ac641b3147ae
+@="{228D9A82-C302-11CF-9AA4-00AA004A5691}"
+
+[Software\\Classes\\LiveScript] 1660099896
+#time=1d8ac641b7d4ea6
+@="JScript Language"
+
+[Software\\Classes\\LiveScript\\CLSID] 1660099896
+#time=1d8ac641b7d4dde
+@="{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\LiveScript\\OLEScript] 1660099896
+#time=1d8ac641b7d4ea6
+
+[Software\\Classes\\LiveScript Author] 1660099896
+#time=1d8ac641b7d6080
+@="JScript Language Authoring"
+
+[Software\\Classes\\LiveScript Author\\CLSID] 1660099896
+#time=1d8ac641b7d5f86
+@="{F414C261-6AC0-11CF-B6D1-00AA00BBBB58}"
+
+[Software\\Classes\\LiveScript Author\\OLEScript] 1660099896
+#time=1d8ac641b7d6080
+
+[Software\\Classes\\lnkfile] 1660099897
+#time=1d8ac641c4bc470
+@="Shortcut"
+"IsShortcut"="yes"
+"NeverShowExt"=""
+
+[Software\\Classes\\lnkfile\\CLSID] 1660099897
+#time=1d8ac641c4bc308
+@="{00021401-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\lnkfile\\shellex\\ContextMenuHandlers\\{00021401-0000-0000-C000-000000000046}] 1660099897
+#time=1d8ac641c4bc8d0
+
+[Software\\Classes\\lnkfile\\shellex\\IconHandler] 1660099897
+#time=1d8ac641c4bc614
+@="{00021401-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\mailto] 1660099897
+#time=1d8ac641c4c6290
+"URL Protocol"=""
+
+[Software\\Classes\\mailto\\shell\\open\\command] 1660099897
+#time=1d8ac641c4c64de
+@="C:\\windows\\system32\\winebrowser %1"
+
+[Software\\Classes\\Media Type\\Extensions\\.mp3] 1660099896
+#time=1d8ac641bad4fca
+"Media Type"="{e436eb83-524f-11ce-9f53-0020af0ba770}"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+"Subtype"="{e436eb87-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{7364696d-0000-0010-8000-00aa00389b71}] 1660099896
+#time=1d8ac641bad158c
+"0"="0,4,,52494646,8,4,,524d4944"
+"1"="0,4,,4d546864"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{73747874-0000-0010-8000-00aa00389b71}] 1660099896
+#time=1d8ac641bad1762
+"0"="0,4,,4c595249"
+"1"="0,4,,6c797269"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{e06d8022-db46-11cf-b4d1-00805f6cbbea}] 1660099896
+#time=1d8ac641bad18d4
+"0"="0,5,ffffffffc0,000001ba40"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{e436eb84-524f-11ce-9f53-0020af0ba770}] 1660099896
+#time=1d8ac641bad1a5a
+"0"="0,16,fffffffff100010001800001ffffffff,000001ba2100010001800001000001bb"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{e436eb85-524f-11ce-9f53-0020af0ba770}] 1660099896
+#time=1d8ac641bad1bd6
+"0"="0,4,,52494646,8,8,,43445841666D7420,36,20,FFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFF,646174610000000000FFFFFFFFFFFFFFFFFFFF00"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{e436eb86-524f-11ce-9f53-0020af0ba770}] 1660099896
+#time=1d8ac641bad1d48
+"0"="0,4,,000001b3"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{e436eb87-524f-11ce-9f53-0020af0ba770}] 1660099896
+#time=1d8ac641bad1f1e
+"0"="0,2,ffe0,ffe0"
+"1"="0,10,ffffff00000080808080,494433000000000000"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{e436eb88-524f-11ce-9f53-0020af0ba770}] 1660099896
+#time=1d8ac641bad20ae
+"0"="0,4,,52494646,8,4,,41564920"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{e436eb89-524f-11ce-9f53-0020af0ba770}] 1660099896
+#time=1d8ac641bad3332
+"0"="4,4,,6d646174"
+"1"="4,4,,6d6f6f76"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{e436eb8b-524f-11ce-9f53-0020af0ba770}] 1660099896
+#time=1d8ac641bad36a2
+"0"="0,4,,52494646,8,4,,57415645"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{e436eb8c-524f-11ce-9f53-0020af0ba770}] 1660099896
+#time=1d8ac641bad38c8
+"0"="0,4,,2e736e64"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{e436eb8d-524f-11ce-9f53-0020af0ba770}] 1660099896
+#time=1d8ac641bad3b02
+"0"="0,4,,464f524d,8,4,,41494646"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\Media Type\\{e436eb83-524f-11ce-9f53-0020af0ba770}\\{ffffffff-128f-4dd1-ad22-becfa66ce7aa}] 1660099897
+#time=1d8ac641c347054
+"0"="0,1,00,0"
+"Source Filter"="{e436ebb5-524f-11ce-9f53-0020af0ba770}"
+
+[Software\\Classes\\MediaFoundation\\Transforms\\6a170414-aad9-4693-b806-3a0c47c570d6] 1660099897
+#time=1d8ac641c34f54c
+@="Audio Converter"
+"InputTypes"=hex:61,75,64,73,00,00,10,00,80,00,00,aa,00,38,9b,71,01,00,00,00,\
+  00,00,10,00,80,00,00,aa,00,38,9b,71,61,75,64,73,00,00,10,00,80,00,00,aa,00,\
+  38,9b,71,03,00,00,00,00,00,10,00,80,00,00,aa,00,38,9b,71
+"MFTFlags"=dword:00000001
+"OutputTypes"=hex:61,75,64,73,00,00,10,00,80,00,00,aa,00,38,9b,71,01,00,00,00,\
+  00,00,10,00,80,00,00,aa,00,38,9b,71,61,75,64,73,00,00,10,00,80,00,00,aa,00,\
+  38,9b,71,03,00,00,00,00,00,10,00,80,00,00,aa,00,38,9b,71
+
+[Software\\Classes\\MediaFoundation\\Transforms\\Categories\\11064c48-3648-4ed0-932e-05ce8ac811b7\\6a170414-aad9-4693-b806-3a0c47c570d6] 1660099897
+#time=1d8ac641c34f8ee
+
+[Software\\Classes\\mhtmlfile] 1660099896
+#time=1d8ac641b8aebba
+@="MHTML Document"
+
+[Software\\Classes\\mhtmlfile\\CLSID] 1660099896
+#time=1d8ac641b8aec0a
+@="{3050F3D9-98B5-11CF-BB82-00AA00BDCE0B}"
+
+[Software\\Classes\\Microsoft.DirectMusic] 1660099896
+#time=1d8ac641b62dd96
+@="DirectMusic"
+
+[Software\\Classes\\Microsoft.DirectMusic\\CLSID] 1660099896
+#time=1d8ac641b62dce2
+@="{636B9F10-0C7D-11D1-95B2-0020AFDC7421}"
+
+[Software\\Classes\\Microsoft.DirectMusic\\CurVer] 1660099896
+#time=1d8ac641b62de5e
+@="Microsoft.DirectMusic.1"
+
+[Software\\Classes\\Microsoft.DirectMusic.1] 1660099896
+#time=1d8ac641b62d9a4
+@="DirectMusic"
+
+[Software\\Classes\\Microsoft.DirectMusic.1\\CLSID] 1660099896
+#time=1d8ac641b62d9fe
+@="{636B9F10-0C7D-11D1-95B2-0020AFDC7421}"
+
+[Software\\Classes\\Microsoft.DirectMusicAudioPath] 1660099896
+#time=1d8ac641b602ec0
+@="DirectMusicAudioPath"
+
+[Software\\Classes\\Microsoft.DirectMusicAudioPath\\CLSID] 1660099896
+#time=1d8ac641b602e16
+@="{EE0B9CA0-A81E-11D3-9BD1-0080C7150A74}"
+
+[Software\\Classes\\Microsoft.DirectMusicAudioPath\\CurVer] 1660099896
+#time=1d8ac641b602f24
+@="Microsoft.DirectMusicAudioPath.1"
+
+[Software\\Classes\\Microsoft.DirectMusicAudioPath.1] 1660099896
+#time=1d8ac641b602b8c
+@="DirectMusicAudioPath"
+
+[Software\\Classes\\Microsoft.DirectMusicAudioPath.1\\CLSID] 1660099896
+#time=1d8ac641b602be6
+@="{EE0B9CA0-A81E-11D3-9BD1-0080C7150A74}"
+
+[Software\\Classes\\Microsoft.DirectMusicAuditionTrack] 1660099896
+#time=1d8ac641b620ef2
+@="DirectMusicAuditionTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicAuditionTrack\\CLSID] 1660099896
+#time=1d8ac641b620b28
+@="{D2AC2897-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicAuditionTrack\\CurVer] 1660099896
+#time=1d8ac641b62103c
+@="Microsoft.DirectMusicAuditionTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicAuditionTrack.1] 1660099896
+#time=1d8ac641b620894
+@="DirectMusicAuditionTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicAuditionTrack.1\\CLSID] 1660099896
+#time=1d8ac641b6208f8
+@="{D2AC2897-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicBand] 1660099896
+#time=1d8ac641b5e99d4
+@="DirectMusicBand"
+
+[Software\\Classes\\Microsoft.DirectMusicBand\\CLSID] 1660099896
+#time=1d8ac641b5e9920
+@="{79BA9E00-B6EE-11D1-86BE-00C04FBF8FEF}"
+
+[Software\\Classes\\Microsoft.DirectMusicBand\\CurVer] 1660099896
+#time=1d8ac641b5e9a42
+@="Microsoft.DirectMusicBand.1"
+
+[Software\\Classes\\Microsoft.DirectMusicBand.1] 1660099896
+#time=1d8ac641b5e9614
+@="DirectMusicBand"
+
+[Software\\Classes\\Microsoft.DirectMusicBand.1\\CLSID] 1660099896
+#time=1d8ac641b5e968c
+@="{79BA9E00-B6EE-11D1-86BE-00C04FBF8FEF}"
+
+[Software\\Classes\\Microsoft.DirectMusicBandTrack] 1660099896
+#time=1d8ac641b5ea0b4
+@="DirectMusicBandTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicBandTrack\\CLSID] 1660099896
+#time=1d8ac641b5e9f24
+@="{D2AC2894-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicBandTrack\\CurVer] 1660099896
+#time=1d8ac641b5ea12c
+@="Microsoft.DirectMusicBandTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicBandTrack.1] 1660099896
+#time=1d8ac641b5e9c36
+@="DirectMusicBandTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicBandTrack.1\\CLSID] 1660099896
+#time=1d8ac641b5e9c9a
+@="{D2AC2894-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicChordMap] 1660099896
+#time=1d8ac641b5ef23a
+@="DirectMusicChordMap"
+
+[Software\\Classes\\Microsoft.DirectMusicChordMap\\CLSID] 1660099896
+#time=1d8ac641b5ef186
+@="{D2AC288F-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicChordMap\\CurVer] 1660099896
+#time=1d8ac641b5ef2a8
+@="Microsoft.DirectMusicChordMap.1"
+
+[Software\\Classes\\Microsoft.DirectMusicChordMap.1] 1660099896
+#time=1d8ac641b5eeac4
+@="DirectMusicChordMap"
+
+[Software\\Classes\\Microsoft.DirectMusicChordMap.1\\CLSID] 1660099896
+#time=1d8ac641b5eeb50
+@="{D2AC288F-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicChordMapTrack] 1660099896
+#time=1d8ac641b5efd5c
+@="DirectMusicChordMapTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicChordMapTrack\\CLSID] 1660099896
+#time=1d8ac641b5efcb2
+@="{D2AC2896-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicChordMapTrack\\CurVer] 1660099896
+#time=1d8ac641b5efdc0
+@="Microsoft.DirectMusicChordMapTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicChordMapTrack.1] 1660099896
+#time=1d8ac641b5efa1e
+@="DirectMusicChordMapTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicChordMapTrack.1\\CLSID] 1660099896
+#time=1d8ac641b5efa78
+@="{D2AC2896-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicChordTrack] 1660099896
+#time=1d8ac641b61f5a2
+@="DirectMusicChordTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicChordTrack\\CLSID] 1660099896
+#time=1d8ac641b61f4ee
+@="{D2AC288B-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicChordTrack\\CurVer] 1660099896
+#time=1d8ac641b61f610
+@="Microsoft.DirectMusicChordTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicChordTrack.1] 1660099896
+#time=1d8ac641b61f264
+@="DirectMusicChordTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicChordTrack.1\\CLSID] 1660099896
+#time=1d8ac641b61f2be
+@="{D2AC288B-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicCollection] 1660099896
+#time=1d8ac641b62e52a
+@="DirectMusicCollection"
+
+[Software\\Classes\\Microsoft.DirectMusicCollection\\CLSID] 1660099896
+#time=1d8ac641b62e444
+@="{480FF4B0-28B2-11D1-BEF7-00C04FBF8FEF}"
+
+[Software\\Classes\\Microsoft.DirectMusicCollection\\CurVer] 1660099896
+#time=1d8ac641b62e5a2
+@="Microsoft.DirectMusicCollection.1"
+
+[Software\\Classes\\Microsoft.DirectMusicCollection.1] 1660099896
+#time=1d8ac641b62e12e
+@="DirectMusicCollection"
+
+[Software\\Classes\\Microsoft.DirectMusicCollection.1\\CLSID] 1660099896
+#time=1d8ac641b62e192
+@="{480FF4B0-28B2-11D1-BEF7-00C04FBF8FEF}"
+
+[Software\\Classes\\Microsoft.DirectMusicCommandTrack] 1660099896
+#time=1d8ac641b61fb2e
+@="DirectMusicCommandTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicCommandTrack\\CLSID] 1660099896
+#time=1d8ac641b61fa84
+@="{D2AC288C-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicCommandTrack\\CurVer] 1660099896
+#time=1d8ac641b61fb92
+@="Microsoft.DirectMusicCommandTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicCommandTrack.1] 1660099896
+#time=1d8ac641b61f7f0
+@="DirectMusicCommandTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicCommandTrack.1\\CLSID] 1660099896
+#time=1d8ac641b61f84a
+@="{D2AC288C-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicComposer] 1660099896
+#time=1d8ac641b5ef7c6
+@="DirectMusicComposer"
+
+[Software\\Classes\\Microsoft.DirectMusicComposer\\CLSID] 1660099896
+#time=1d8ac641b5ef712
+@="{D2AC2890-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicComposer\\CurVer] 1660099896
+#time=1d8ac641b5ef83e
+@="Microsoft.DirectMusicComposer.1"
+
+[Software\\Classes\\Microsoft.DirectMusicComposer.1] 1660099896
+#time=1d8ac641b5ef47e
+@="DirectMusicComposer"
+
+[Software\\Classes\\Microsoft.DirectMusicComposer.1\\CLSID] 1660099896
+#time=1d8ac641b5ef4e2
+@="{D2AC2890-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicContainer] 1660099896
+#time=1d8ac641b60a576
+@="DirectMusicContainer"
+
+[Software\\Classes\\Microsoft.DirectMusicContainer\\CLSID] 1660099896
+#time=1d8ac641b60a4b8
+@="{9301E380-1F22-11D3-8226-D2FA76255D47}"
+
+[Software\\Classes\\Microsoft.DirectMusicContainer\\CurVer] 1660099896
+#time=1d8ac641b60a5da
+@="Microsoft.DirectMusicContainer.1"
+
+[Software\\Classes\\Microsoft.DirectMusicContainer.1] 1660099896
+#time=1d8ac641b60a1f2
+@="DirectMusicContainer"
+
+[Software\\Classes\\Microsoft.DirectMusicContainer.1\\CLSID] 1660099896
+#time=1d8ac641b60a256
+@="{9301E380-1F22-11D3-8226-D2FA76255D47}"
+
+[Software\\Classes\\Microsoft.DirectMusicGraph] 1660099896
+#time=1d8ac641b5ff70c
+@="DirectMusicGraph"
+
+[Software\\Classes\\Microsoft.DirectMusicGraph\\CLSID] 1660099896
+#time=1d8ac641b5ff658
+@="{D2AC2884-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicGraph\\CurVer] 1660099896
+#time=1d8ac641b5ff770
+@="Microsoft.DirectMusicGraph.1"
+
+[Software\\Classes\\Microsoft.DirectMusicGraph.1] 1660099896
+#time=1d8ac641b5ff37e
+@="DirectMusicGraph"
+
+[Software\\Classes\\Microsoft.DirectMusicGraph.1\\CLSID] 1660099896
+#time=1d8ac641b5ff3e2
+@="{D2AC2884-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicLoader] 1660099896
+#time=1d8ac641b609f54
+@="DirectMusicLoader"
+
+[Software\\Classes\\Microsoft.DirectMusicLoader\\CLSID] 1660099896
+#time=1d8ac641b609e64
+@="{D2AC2892-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicLoader\\CurVer] 1660099896
+#time=1d8ac641b609fd6
+@="Microsoft.DirectMusicLoader.1"
+
+[Software\\Classes\\Microsoft.DirectMusicLoader.1] 1660099896
+#time=1d8ac641b609b3a
+@="DirectMusicLoader"
+
+[Software\\Classes\\Microsoft.DirectMusicLoader.1\\CLSID] 1660099896
+#time=1d8ac641b609b9e
+@="{D2AC2892-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicLyricsTrack] 1660099896
+#time=1d8ac641b602394
+@="DirectMusicLyricsTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicLyricsTrack\\CLSID] 1660099896
+#time=1d8ac641b6022e0
+@="{995C1CF5-54FF-11D3-8BDA-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicLyricsTrack\\CurVer] 1660099896
+#time=1d8ac641b6023f8
+@="Microsoft.DirectMusicLyricsTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicLyricsTrack.1] 1660099896
+#time=1d8ac641b601fc0
+@="DirectMusicLyricsTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicLyricsTrack.1\\CLSID] 1660099896
+#time=1d8ac641b60201a
+@="{995C1CF5-54FF-11D3-8BDA-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicMarkerTrack] 1660099896
+#time=1d8ac641b601d90
+@="DirectMusicMarkerTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicMarkerTrack\\CLSID] 1660099896
+#time=1d8ac641b601cdc
+@="{55A8FD00-4288-11D3-9BD1-8A0D61C88835}"
+
+[Software\\Classes\\Microsoft.DirectMusicMarkerTrack\\CurVer] 1660099896
+#time=1d8ac641b601dea
+@="Microsoft.DirectMusicMarkerTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicMarkerTrack.1] 1660099896
+#time=1d8ac641b601a48
+@="DirectMusicMarkerTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicMarkerTrack.1\\CLSID] 1660099896
+#time=1d8ac641b601aac
+@="{55A8FD00-4288-11D3-9BD1-8A0D61C88835}"
+
+[Software\\Classes\\Microsoft.DirectMusicMelodyFormulationTrack] 1660099896
+#time=1d8ac641b6236b6
+@="DirectMusicMelodyFormulationTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicMelodyFormulationTrack\\CLSID] 1660099896
+#time=1d8ac641b6235f8
+@="{B0684266-B57F-11D2-97F9-00C04FA36E58}"
+
+[Software\\Classes\\Microsoft.DirectMusicMelodyFormulationTrack\\CurVer] 1660099896
+#time=1d8ac641b62372e
+@="Microsoft.DirectMusicMelodyFormulationTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicMelodyFormulationTrack.1] 1660099896
+#time=1d8ac641b623300
+@="DirectMusicMelodyFormulationTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicMelodyFormulationTrack.1\\CLSID] 1660099896
+#time=1d8ac641b623378
+@="{B0684266-B57F-11D2-97F9-00C04FA36E58}"
+
+[Software\\Classes\\Microsoft.DirectMusicMotifTrack] 1660099896
+#time=1d8ac641b62065a
+@="DirectMusicMotifTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicMotifTrack\\CLSID] 1660099896
+#time=1d8ac641b6205b0
+@="{D2AC288E-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicMotifTrack\\CurVer] 1660099896
+#time=1d8ac641b6206be
+@="Microsoft.DirectMusicMotifTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicMotifTrack.1] 1660099896
+#time=1d8ac641b620308
+@="DirectMusicMotifTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicMotifTrack.1\\CLSID] 1660099896
+#time=1d8ac641b620362
+@="{D2AC288E-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicMuteTrack] 1660099896
+#time=1d8ac641b621f32
+@="DirectMusicMuteTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicMuteTrack\\CLSID] 1660099896
+#time=1d8ac641b621e60
+@="{D2AC2898-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicMuteTrack\\CurVer] 1660099896
+#time=1d8ac641b621fb4
+@="Microsoft.DirectMusicMuteTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicMuteTrack.1] 1660099896
+#time=1d8ac641b6217da
+@="DirectMusicMuteTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicMuteTrack.1\\CLSID] 1660099896
+#time=1d8ac641b621960
+@="{D2AC2898-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicParamControlTrack] 1660099896
+#time=1d8ac641b601804
+@="DirectMusicParamControlTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicParamControlTrack\\CLSID] 1660099896
+#time=1d8ac641b601750
+@="{4BE0537B-5C19-11D3-8BDC-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicParamControlTrack\\CurVer] 1660099896
+#time=1d8ac641b60185e
+@="Microsoft.DirectMusicParamControlTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicParamControlTrack.1] 1660099896
+#time=1d8ac641b6014c6
+@="DirectMusicParamControlTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicParamControlTrack.1\\CLSID] 1660099896
+#time=1d8ac641b60152a
+@="{4BE0537B-5C19-11D3-8BDC-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicPerformance] 1660099896
+#time=1d8ac641b5fe578
+@="DirectMusicPerformance"
+
+[Software\\Classes\\Microsoft.DirectMusicPerformance\\CLSID] 1660099896
+#time=1d8ac641b5fe4ba
+@="{D2AC2881-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicPerformance\\CurVer] 1660099896
+#time=1d8ac641b5fe5dc
+@="Microsoft.DirectMusicPerformance.1"
+
+[Software\\Classes\\Microsoft.DirectMusicPerformance.1] 1660099896
+#time=1d8ac641b5fe1cc
+@="DirectMusicPerformance"
+
+[Software\\Classes\\Microsoft.DirectMusicPerformance.1\\CLSID] 1660099896
+#time=1d8ac641b5fe23a
+@="{D2AC2881-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicScripSourceCodeLoader] 1660099896
+#time=1d8ac641b61481e
+@="DirectMusic Script Source Code Loader"
+
+[Software\\Classes\\Microsoft.DirectMusicScripSourceCodeLoader\\CLSID] 1660099896
+#time=1d8ac641b614760
+@="{C70EB77F-EFD4-4678-A27B-BF1648F30D04}"
+
+[Software\\Classes\\Microsoft.DirectMusicScripSourceCodeLoader\\CurVer] 1660099896
+#time=1d8ac641b614882
+@="Microsoft.DirectMusicScripSourceCodeLoader.1"
+
+[Software\\Classes\\Microsoft.DirectMusicScripSourceCodeLoader.1] 1660099896
+#time=1d8ac641b614486
+@="DirectMusic Script Source Code Loader"
+
+[Software\\Classes\\Microsoft.DirectMusicScripSourceCodeLoader.1\\CLSID] 1660099896
+#time=1d8ac641b6144ea
+@="{C70EB77F-EFD4-4678-A27B-BF1648F30D04}"
+
+[Software\\Classes\\Microsoft.DirectMusicScript] 1660099896
+#time=1d8ac641b613ba8
+@="DirectMusic Script Object"
+
+[Software\\Classes\\Microsoft.DirectMusicScript\\CLSID] 1660099896
+#time=1d8ac641b613ac2
+@="{810B5013-E88D-11D2-8BC1-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicScript\\CurVer] 1660099896
+#time=1d8ac641b613c20
+@="Microsoft.DirectMusicScript.1"
+
+[Software\\Classes\\Microsoft.DirectMusicScript.1] 1660099896
+#time=1d8ac641b613676
+@="DirectMusic Script Object"
+
+[Software\\Classes\\Microsoft.DirectMusicScript.1\\CLSID] 1660099896
+#time=1d8ac641b6136ee
+@="{810B5013-E88D-11D2-8BC1-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpAudioPath] 1660099896
+#time=1d8ac641b615c6e
+@="DirectMusic Script AutoImp AudioPath"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpAudioPath\\CLSID] 1660099896
+#time=1d8ac641b615b92
+@="{2C5F9B72-7148-4D97-BFC9-68A0E076BEBD}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpAudioPath\\CurVer] 1660099896
+#time=1d8ac641b615cdc
+@="Microsoft.DirectMusicScriptAutoImpAudioPath.1"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpAudioPath.1] 1660099896
+#time=1d8ac641b61580e
+@="DirectMusic Script AutoImp AudioPath"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpAudioPath.1\\CLSID] 1660099896
+#time=1d8ac641b615890
+@="{2C5F9B72-7148-4D97-BFC9-68A0E076BEBD}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpAudioPathConfig] 1660099896
+#time=1d8ac641b615570
+@="DirectMusic Script AutoImp AudioPathConfig"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpAudioPathConfig\\CLSID] 1660099896
+#time=1d8ac641b615494
+@="{1CEBDE3E-6B91-484A-AF48-5E4F4ED6B1E1}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpAudioPathConfig\\CurVer] 1660099896
+#time=1d8ac641b6155de
+@="Microsoft.DirectMusicScriptAutoImpAudioPathConfig.1"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpAudioPathConfig.1] 1660099896
+#time=1d8ac641b6150a2
+@="DirectMusic Script AutoImp AudioPathConfig"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpAudioPathConfig.1\\CLSID] 1660099896
+#time=1d8ac641b615106
+@="{1CEBDE3E-6B91-484A-AF48-5E4F4ED6B1E1}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpPerformance] 1660099896
+#time=1d8ac641b61422e
+@="DirectMusic Script AutoImp Performance"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpPerformance\\CLSID] 1660099896
+#time=1d8ac641b614166
+@="{A861C6E2-FCFC-11D2-8BC9-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpPerformance\\CurVer] 1660099896
+#time=1d8ac641b614292
+@="Microsoft.DirectMusicScriptAutoImpPerformance.1"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpPerformance.1] 1660099896
+#time=1d8ac641b613e6e
+@="DirectMusic Script AutoImp Performance"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpPerformance.1\\CLSID] 1660099896
+#time=1d8ac641b613edc
+@="{A861C6E2-FCFC-11D2-8BC9-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSegment] 1660099896
+#time=1d8ac641b612cf8
+@="DirectMusic Script AutoImp Segment"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSegment\\CLSID] 1660099896
+#time=1d8ac641b612c1c
+@="{4062C116-0270-11D3-8BCB-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSegment\\CurVer] 1660099896
+#time=1d8ac641b612d66
+@="Microsoft.DirectMusicScriptAutoImpSegment.1"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSegment.1] 1660099896
+#time=1d8ac641b61296a
+@="DirectMusic Script AutoImp Segment"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSegment.1\\CLSID] 1660099896
+#time=1d8ac641b6129c4
+@="{4062C116-0270-11D3-8BCB-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSegmentState] 1660099896
+#time=1d8ac641b614e18
+@="DirectMusic Script AutoImp SegmentState"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSegmentState\\CLSID] 1660099896
+#time=1d8ac641b614d46
+@="{EBF2320A-2502-11D3-8BD1-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSegmentState\\CurVer] 1660099896
+#time=1d8ac641b614e86
+@="Microsoft.DirectMusicScriptAutoImpSegmentState.1"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSegmentState.1] 1660099896
+#time=1d8ac641b614a94
+@="DirectMusic Script AutoImp SegmentState"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSegmentState.1\\CLSID] 1660099896
+#time=1d8ac641b614af8
+@="{EBF2320A-2502-11D3-8BD1-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSong] 1660099896
+#time=1d8ac641b6163ee
+@="DirectMusic Script AutoImp Song"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSong\\CLSID] 1660099896
+#time=1d8ac641b61633a
+@="{A16F1761-B6D8-42EB-8D57-4A44FEDD3BD2}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSong\\CurVer] 1660099896
+#time=1d8ac641b616452
+@="Microsoft.DirectMusicScriptAutoImpSong.1"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSong.1] 1660099896
+#time=1d8ac641b616042
+@="DirectMusic Script AutoImp Song"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptAutoImpSong.1\\CLSID] 1660099896
+#time=1d8ac641b6160a6
+@="{A16F1761-B6D8-42EB-8D57-4A44FEDD3BD2}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptTrack] 1660099896
+#time=1d8ac641b6132d4
+@="DirectMusicScriptTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptTrack\\CLSID] 1660099896
+#time=1d8ac641b613220
+@="{4108FA85-3586-11D3-8BD7-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptTrack\\CurVer] 1660099896
+#time=1d8ac641b613428
+@="Microsoft.DirectMusicScriptTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptTrack.1] 1660099896
+#time=1d8ac641b612f64
+@="DirectMusicScriptTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicScriptTrack.1\\CLSID] 1660099896
+#time=1d8ac641b612fc8
+@="{4108FA85-3586-11D3-8BD7-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicSection] 1660099896
+#time=1d8ac641b61e9ae
+@="DirectMusicSection"
+
+[Software\\Classes\\Microsoft.DirectMusicSection\\CLSID] 1660099896
+#time=1d8ac641b61e8fa
+@="{3F037241-414E-11D1-A7CE-00A0C913F73C}"
+
+[Software\\Classes\\Microsoft.DirectMusicSection\\CurVer] 1660099896
+#time=1d8ac641b61ea12
+@="Microsoft.DirectMusicSection.1"
+
+[Software\\Classes\\Microsoft.DirectMusicSection.1] 1660099896
+#time=1d8ac641b61e652
+@="DirectMusicSection"
+
+[Software\\Classes\\Microsoft.DirectMusicSection.1\\CLSID] 1660099896
+#time=1d8ac641b61e6ac
+@="{3F037241-414E-11D1-A7CE-00A0C913F73C}"
+
+[Software\\Classes\\Microsoft.DirectMusicSegment] 1660099896
+#time=1d8ac641b5feb72
+@="DirectMusicSegment"
+
+[Software\\Classes\\Microsoft.DirectMusicSegment\\CLSID] 1660099896
+#time=1d8ac641b5feabe
+@="{D2AC2882-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicSegment\\CurVer] 1660099896
+#time=1d8ac641b5febd6
+@="Microsoft.DirectMusicSegment.1"
+
+[Software\\Classes\\Microsoft.DirectMusicSegment.1] 1660099896
+#time=1d8ac641b5fe7da
+@="DirectMusicSegment"
+
+[Software\\Classes\\Microsoft.DirectMusicSegment.1\\CLSID] 1660099896
+#time=1d8ac641b5fe848
+@="{D2AC2882-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicSegmentState] 1660099896
+#time=1d8ac641b5ff14e
+@="DirectMusicSegmentState"
+
+[Software\\Classes\\Microsoft.DirectMusicSegmentState\\CLSID] 1660099896
+#time=1d8ac641b5ff09a
+@="{D2AC2883-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicSegmentState\\CurVer] 1660099896
+#time=1d8ac641b5ff1a8
+@="Microsoft.DirectMusicSegmentState.1"
+
+[Software\\Classes\\Microsoft.DirectMusicSegmentState.1] 1660099896
+#time=1d8ac641b5fedf2
+@="DirectMusicSegmentState"
+
+[Software\\Classes\\Microsoft.DirectMusicSegmentState.1\\CLSID] 1660099896
+#time=1d8ac641b5fee60
+@="{D2AC2883-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicSegTriggerTrack] 1660099896
+#time=1d8ac641b602948
+@="DirectMusicSegTriggerTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicSegTriggerTrack\\CLSID] 1660099896
+#time=1d8ac641b602858
+@="{BAE4D665-4EA1-11D3-8BDA-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicSegTriggerTrack\\CurVer] 1660099896
+#time=1d8ac641b6029a2
+@="Microsoft.DirectMusicSegTriggerTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicSegTriggerTrack.1] 1660099896
+#time=1d8ac641b6025ce
+@="DirectMusicSegTriggerTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicSegTriggerTrack.1\\CLSID] 1660099896
+#time=1d8ac641b602628
+@="{BAE4D665-4EA1-11D3-8BDA-00600893B1B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicSeqTrack] 1660099896
+#time=1d8ac641b600210
+@="DirectMusicSeqTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicSeqTrack\\CLSID] 1660099896
+#time=1d8ac641b60015c
+@="{D2AC2886-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicSeqTrack\\CurVer] 1660099896
+#time=1d8ac641b60026a
+@="Microsoft.DirectMusicSeqTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicSeqTrack.1] 1660099896
+#time=1d8ac641b5ffed2
+@="DirectMusicSeqTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicSeqTrack.1\\CLSID] 1660099896
+#time=1d8ac641b5fff2c
+@="{D2AC2886-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicSignPostTrack] 1660099896
+#time=1d8ac641b5f1e0e
+@="DirectMusicSignPostTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicSignPostTrack\\CLSID] 1660099896
+#time=1d8ac641b5f1d5a
+@="{F17E8672-C3B4-11D1-870B-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicSignPostTrack\\CurVer] 1660099896
+#time=1d8ac641b5f1e72
+@="Microsoft.DirectMusicSignPostTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicSignPostTrack.1] 1660099896
+#time=1d8ac641b5f1a30
+@="DirectMusicSignPostTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicSignPostTrack.1\\CLSID] 1660099896
+#time=1d8ac641b5f1a94
+@="{F17E8672-C3B4-11D1-870B-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicSong] 1660099896
+#time=1d8ac641b60128c
+@="DirectMusicSong"
+
+[Software\\Classes\\Microsoft.DirectMusicSong\\CLSID] 1660099896
+#time=1d8ac641b6011ce
+@="{AED5F0A5-D972-483D-A384-649DFEB9C181}"
+
+[Software\\Classes\\Microsoft.DirectMusicSong\\CurVer] 1660099896
+#time=1d8ac641b6012f0
+@="Microsoft.DirectMusicSong.1"
+
+[Software\\Classes\\Microsoft.DirectMusicSong.1] 1660099896
+#time=1d8ac641b600f44
+@="DirectMusicSong"
+
+[Software\\Classes\\Microsoft.DirectMusicSong.1\\CLSID] 1660099896
+#time=1d8ac641b600f9e
+@="{AED5F0A5-D972-483D-A384-649DFEB9C181}"
+
+[Software\\Classes\\Microsoft.DirectMusicStyle] 1660099896
+#time=1d8ac641b61f016
+@="DirectMusicStyle"
+
+[Software\\Classes\\Microsoft.DirectMusicStyle\\CLSID] 1660099896
+#time=1d8ac641b61ef62
+@="{D2AC288A-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicStyle\\CurVer] 1660099896
+#time=1d8ac641b61f07a
+@="Microsoft.DirectMusicStyle.1"
+
+[Software\\Classes\\Microsoft.DirectMusicStyle.1] 1660099896
+#time=1d8ac641b61ecc4
+@="DirectMusicStyle"
+
+[Software\\Classes\\Microsoft.DirectMusicStyle.1\\CLSID] 1660099896
+#time=1d8ac641b61ed28
+@="{D2AC288A-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicStyleTrack] 1660099896
+#time=1d8ac641b6200ce
+@="DirectMusicStyleTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicStyleTrack\\CLSID] 1660099896
+#time=1d8ac641b62001a
+@="{D2AC288D-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicStyleTrack\\CurVer] 1660099896
+#time=1d8ac641b620128
+@="Microsoft.DirectMusicStyleTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicStyleTrack.1] 1660099896
+#time=1d8ac641b61fd86
+@="DirectMusicStyleTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicStyleTrack.1\\CLSID] 1660099896
+#time=1d8ac641b61fde0
+@="{D2AC288D-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicSynth] 1660099896
+#time=1d8ac641b62836e
+@="DirectMusicSynth"
+
+[Software\\Classes\\Microsoft.DirectMusicSynth\\CLSID] 1660099896
+#time=1d8ac641b6282a6
+@="{58C2B4D0-46E7-11D1-89AC-00A0C9054129}"
+
+[Software\\Classes\\Microsoft.DirectMusicSynth\\CurVer] 1660099896
+#time=1d8ac641b6283dc
+@="Microsoft.DirectMusicSynth.1"
+
+[Software\\Classes\\Microsoft.DirectMusicSynth.1] 1660099896
+#time=1d8ac641b627f5e
+@="DirectMusicSynth"
+
+[Software\\Classes\\Microsoft.DirectMusicSynth.1\\CLSID] 1660099896
+#time=1d8ac641b628026
+@="{58C2B4D0-46E7-11D1-89AC-00A0C9054129}"
+
+[Software\\Classes\\Microsoft.DirectMusicSynthSink] 1660099896
+#time=1d8ac641b6289cc
+@="DirectMusicSynthSink"
+
+[Software\\Classes\\Microsoft.DirectMusicSynthSink\\CLSID] 1660099896
+#time=1d8ac641b628918
+@="{AEC17CE3-A514-11D1-AFA6-00AA0024D8B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicSynthSink\\CurVer] 1660099896
+#time=1d8ac641b628a30
+@="Microsoft.DirectMusicSynthSink.1"
+
+[Software\\Classes\\Microsoft.DirectMusicSynthSink.1] 1660099896
+#time=1d8ac641b6285c6
+@="DirectMusicSynthSink"
+
+[Software\\Classes\\Microsoft.DirectMusicSynthSink.1\\CLSID] 1660099896
+#time=1d8ac641b628634
+@="{AEC17CE3-A514-11D1-AFA6-00AA0024D8B6}"
+
+[Software\\Classes\\Microsoft.DirectMusicSysExTrack] 1660099896
+#time=1d8ac641b600792
+@="DirectMusicSysExTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicSysExTrack\\CLSID] 1660099896
+#time=1d8ac641b6006de
+@="{D2AC2887-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicSysExTrack\\CurVer] 1660099896
+#time=1d8ac641b6007ec
+@="Microsoft.DirectMusicSysExTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicSysExTrack.1] 1660099896
+#time=1d8ac641b600454
+@="DirectMusicSysExTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicSysExTrack.1\\CLSID] 1660099896
+#time=1d8ac641b6004ae
+@="{D2AC2887-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicTemplate] 1660099896
+#time=1d8ac641b5f168e
+@="DirectMusicTemplate"
+
+[Software\\Classes\\Microsoft.DirectMusicTemplate\\CLSID] 1660099896
+#time=1d8ac641b5f1576
+@="{D30BCC65-60E8-11D1-A7CE-00A0C913F73C}"
+
+[Software\\Classes\\Microsoft.DirectMusicTemplate\\CurVer] 1660099896
+#time=1d8ac641b5f177e
+@="Microsoft.DirectMusicTemplate.1"
+
+[Software\\Classes\\Microsoft.DirectMusicTemplate.1] 1660099896
+#time=1d8ac641b5effaa
+@="DirectMusicTemplate"
+
+[Software\\Classes\\Microsoft.DirectMusicTemplate.1\\CLSID] 1660099896
+#time=1d8ac641b5f000e
+@="{D30BCC65-60E8-11D1-A7CE-00A0C913F73C}"
+
+[Software\\Classes\\Microsoft.DirectMusicTempoTrack] 1660099896
+#time=1d8ac641b5ffca2
+@="DirectMusicTempoTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicTempoTrack\\CLSID] 1660099896
+#time=1d8ac641b5ffbda
+@="{D2AC2885-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicTempoTrack\\CurVer] 1660099896
+#time=1d8ac641b5ffcfc
+@="Microsoft.DirectMusicTempoTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicTempoTrack.1] 1660099896
+#time=1d8ac641b5ff946
+@="DirectMusicTempoTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicTempoTrack.1\\CLSID] 1660099896
+#time=1d8ac641b5ff9aa
+@="{D2AC2885-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicTimeSigTrack] 1660099896
+#time=1d8ac641b600d14
+@="DirectMusicTimeSigTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicTimeSigTrack\\CLSID] 1660099896
+#time=1d8ac641b600c6a
+@="{D2AC2888-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicTimeSigTrack\\CurVer] 1660099896
+#time=1d8ac641b600d78
+@="Microsoft.DirectMusicTimeSigTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicTimeSigTrack.1] 1660099896
+#time=1d8ac641b6009c2
+@="DirectMusicTimeSigTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicTimeSigTrack.1\\CLSID] 1660099896
+#time=1d8ac641b600a26
+@="{D2AC2888-B39B-11D1-8704-00600893B1BD}"
+
+[Software\\Classes\\Microsoft.DirectMusicWaveTrack] 1660099896
+#time=1d8ac641b60344c
+@="DirectMusicWaveTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicWaveTrack\\CLSID] 1660099896
+#time=1d8ac641b6033a2
+@="{EED36461-9EA5-11D3-9BD1-0080C7150A74}"
+
+[Software\\Classes\\Microsoft.DirectMusicWaveTrack\\CurVer] 1660099896
+#time=1d8ac641b6034b0
+@="Microsoft.DirectMusicWaveTrack.1"
+
+[Software\\Classes\\Microsoft.DirectMusicWaveTrack.1] 1660099896
+#time=1d8ac641b603118
+@="DirectMusicWaveTrack"
+
+[Software\\Classes\\Microsoft.DirectMusicWaveTrack.1\\CLSID] 1660099896
+#time=1d8ac641b603172
+@="{EED36461-9EA5-11D3-9BD1-0080C7150A74}"
+
+[Software\\Classes\\Microsoft.DirectSoundI3DL2ReverbDMO] 1660099896
+#time=1d8ac641b664bfc
+@="DirectSoundI3DL2ReverbDMO"
+
+[Software\\Classes\\Microsoft.DirectSoundI3DL2ReverbDMO\\CLSID] 1660099896
+#time=1d8ac641b664b3e
+@="{EF985E71-D5C7-42D4-BA4D-2D073E2E96F4}"
+
+[Software\\Classes\\Microsoft.DirectSoundI3DL2ReverbDMO\\CurVer] 1660099896
+#time=1d8ac641b664c6a
+@="Microsoft.DirectSoundI3DL2ReverbDMO.1"
+
+[Software\\Classes\\Microsoft.DirectSoundI3DL2ReverbDMO.1] 1660099896
+#time=1d8ac641b664878
+@="DirectSoundI3DL2ReverbDMO"
+
+[Software\\Classes\\Microsoft.DirectSoundI3DL2ReverbDMO.1\\CLSID] 1660099896
+#time=1d8ac641b6648e6
+@="{EF985E71-D5C7-42D4-BA4D-2D073E2E96F4}"
+
+[Software\\Classes\\Microsoft.DirectSoundParamEqDMO] 1660099896
+#time=1d8ac641b6651e2
+@="DirectSoundParamEqDMO"
+
+[Software\\Classes\\Microsoft.DirectSoundParamEqDMO\\CLSID] 1660099896
+#time=1d8ac641b665124
+@="{120CED89-3BF4-4173-A132-3CB406CF3231}"
+
+[Software\\Classes\\Microsoft.DirectSoundParamEqDMO\\CurVer] 1660099896
+#time=1d8ac641b665246
+@="Microsoft.DirectSoundParamEqDMO.1"
+
+[Software\\Classes\\Microsoft.DirectSoundParamEqDMO.1] 1660099896
+#time=1d8ac641b664e7c
+@="DirectSoundParamEqDMO"
+
+[Software\\Classes\\Microsoft.DirectSoundParamEqDMO.1\\CLSID] 1660099896
+#time=1d8ac641b664ee0
+@="{120CED89-3BF4-4173-A132-3CB406CF3231}"
+
+[Software\\Classes\\Microsoft.DirectSoundWave] 1660099896
+#time=1d8ac641b6777ca
+@="Microsoft DirectSound Wave"
+
+[Software\\Classes\\Microsoft.DirectSoundWave\\CLSID] 1660099896
+#time=1d8ac641b677702
+@="{8A667154-F9CB-11D2-AD8A-0060B0575ABC}"
+
+[Software\\Classes\\Microsoft.DirectSoundWave\\CurVer] 1660099896
+#time=1d8ac641b67782e
+@="Microsoft.DirectSoundWave.1"
+
+[Software\\Classes\\Microsoft.DirectSoundWave.1] 1660099896
+#time=1d8ac641b67740a
+@="Microsoft DirectSound Wave"
+
+[Software\\Classes\\Microsoft.DirectSoundWave.1\\CLSID] 1660099896
+#time=1d8ac641b677478
+@="{8A667154-F9CB-11D2-AD8A-0060B0575ABC}"
+
+[Software\\Classes\\Microsoft.DirectSoundWavesReverbDMO] 1660099896
+#time=1d8ac641b6657dc
+@="DirectSoundWavesReverbDMO"
+
+[Software\\Classes\\Microsoft.DirectSoundWavesReverbDMO\\CLSID] 1660099896
+#time=1d8ac641b66571e
+@="{87FC0268-9A55-4360-95AA-004A1D9DE26C}"
+
+[Software\\Classes\\Microsoft.DirectSoundWavesReverbDMO\\CurVer] 1660099896
+#time=1d8ac641b665854
+@="Microsoft.DirectSoundWavesReverbDMO.1"
+
+[Software\\Classes\\Microsoft.DirectSoundWavesReverbDMO.1] 1660099896
+#time=1d8ac641b66543a
+@="DirectSoundWavesReverbDMO"
+
+[Software\\Classes\\Microsoft.DirectSoundWavesReverbDMO.1\\CLSID] 1660099896
+#time=1d8ac641b6654a8
+@="{87FC0268-9A55-4360-95AA-004A1D9DE26C}"
+
+[Software\\Classes\\Microsoft.FreeThreadedXMLDOM] 1660099895
+#time=1d8ac641b02fbc4
+@="Free Threaded XML DOM Document"
+
+[Software\\Classes\\Microsoft.FreeThreadedXMLDOM\\CLSID] 1660099895
+#time=1d8ac641b02fb06
+@="{2933BF91-7B36-11D2-B20E-00C04F983E60}"
+
+[Software\\Classes\\Microsoft.FreeThreadedXMLDOM\\CurVer] 1660099895
+#time=1d8ac641b02fc1e
+@="Microsoft.FreeThreadedXMLDOM.1.0"
+
+[Software\\Classes\\Microsoft.FreeThreadedXMLDOM.1.0] 1660099895
+#time=1d8ac641b02f78c
+@="Free Threaded XML DOM Document"
+
+[Software\\Classes\\Microsoft.FreeThreadedXMLDOM.1.0\\CLSID] 1660099895
+#time=1d8ac641b02f7e6
+@="{2933BF91-7B36-11D2-B20E-00C04F983E60}"
+
+[Software\\Classes\\Microsoft.Update.AutoUpdate] 1660099897
+#time=1d8ac641bea727e
+@="AutomaticUpdates Class"
+
+[Software\\Classes\\Microsoft.Update.AutoUpdate\\CLSID] 1660099897
+#time=1d8ac641bea71ca
+@="{BFE18E9C-6D87-4450-B37C-E02F0B373803}"
+
+[Software\\Classes\\Microsoft.Update.AutoUpdate\\CurVer] 1660099897
+#time=1d8ac641bea72d8
+@="Microsoft.Update.AutoUpdate.1"
+
+[Software\\Classes\\Microsoft.Update.AutoUpdate.1] 1660099897
+#time=1d8ac641bea6f22
+@="AutomaticUpdates Class"
+
+[Software\\Classes\\Microsoft.Update.AutoUpdate.1\\CLSID] 1660099897
+#time=1d8ac641bea6f7c
+@="{BFE18E9C-6D87-4450-B37C-E02F0B373803}"
+
+[Software\\Classes\\Microsoft.Update.Installer] 1660099897
+#time=1d8ac641bea780a
+@="UpdateInstaller Class"
+
+[Software\\Classes\\Microsoft.Update.Installer\\CLSID] 1660099897
+#time=1d8ac641bea7756
+@="{D2E0FE7F-D23E-48E1-93C0-6FA8CC346474}"
+
+[Software\\Classes\\Microsoft.Update.Installer\\CurVer] 1660099897
+#time=1d8ac641bea7864
+@="Microsoft.Update.Installer.1"
+
+[Software\\Classes\\Microsoft.Update.Installer.1] 1660099897
+#time=1d8ac641bea74c2
+@="UpdateInstaller Class"
+
+[Software\\Classes\\Microsoft.Update.Installer.1\\CLSID] 1660099897
+#time=1d8ac641bea7526
+@="{D2E0FE7F-D23E-48E1-93C0-6FA8CC346474}"
+
+[Software\\Classes\\Microsoft.Update.Session] 1660099897
+#time=1d8ac641bea8214
+@="UpdateSession Class"
+
+[Software\\Classes\\Microsoft.Update.Session\\CLSID] 1660099897
+#time=1d8ac641bea8160
+@="{4CB43D7F-7EEE-4906-8698-60DA1C38F2FE}"
+
+[Software\\Classes\\Microsoft.Update.Session\\CurVer] 1660099897
+#time=1d8ac641bea8278
+@="Microsoft.Update.Session.1"
+
+[Software\\Classes\\Microsoft.Update.Session.1] 1660099897
+#time=1d8ac641bea7a58
+@="UpdateSession Class"
+
+[Software\\Classes\\Microsoft.Update.Session.1\\CLSID] 1660099897
+#time=1d8ac641bea7ab2
+@="{4CB43D7F-7EEE-4906-8698-60DA1C38F2FE}"
+
+[Software\\Classes\\Microsoft.Update.SystemInfo] 1660099897
+#time=1d8ac641bea87b4
+@="SystemInformation Class"
+
+[Software\\Classes\\Microsoft.Update.SystemInfo\\CLSID] 1660099897
+#time=1d8ac641bea870a
+@="{C01B9BA0-BEA7-41BA-B604-D0A36F469133}"
+
+[Software\\Classes\\Microsoft.Update.SystemInfo\\CurVer] 1660099897
+#time=1d8ac641bea8818
+@="Microsoft.Update.SystemInfo.1"
+
+[Software\\Classes\\Microsoft.Update.SystemInfo.1] 1660099897
+#time=1d8ac641bea8458
+@="SystemInformation Class"
+
+[Software\\Classes\\Microsoft.Update.SystemInfo.1\\CLSID] 1660099897
+#time=1d8ac641bea84b2
+@="{C01B9BA0-BEA7-41BA-B604-D0A36F469133}"
+
+[Software\\Classes\\Microsoft.XMLDOM] 1660099895
+#time=1d8ac641b02f566
+@="XML DOM Document"
+
+[Software\\Classes\\Microsoft.XMLDOM\\CLSID] 1660099895
+#time=1d8ac641b02f4b2
+@="{2933BF90-7B36-11D2-B20E-00C04F983E60}"
+
+[Software\\Classes\\Microsoft.XMLDOM\\CurVer] 1660099895
+#time=1d8ac641b02f5c0
+@="Microsoft.XMLDOM.1.0"
+
+[Software\\Classes\\Microsoft.XMLDOM.1.0] 1660099895
+#time=1d8ac641b02f232
+@="XML DOM Document"
+
+[Software\\Classes\\Microsoft.XMLDOM.1.0\\CLSID] 1660099895
+#time=1d8ac641b02f28c
+@="{2933BF90-7B36-11D2-B20E-00C04F983E60}"
+
+[Software\\Classes\\Microsoft.XMLDSO] 1660099895
+#time=1d8ac641b030b96
+@="XML Data Source Object"
+
+[Software\\Classes\\Microsoft.XMLDSO\\CLSID] 1660099895
+#time=1d8ac641b030ad8
+@="{550DDA30-0541-11D2-9CA9-0060B0EC3D39}"
+
+[Software\\Classes\\Microsoft.XMLDSO\\CurVer] 1660099895
+#time=1d8ac641b030bf0
+@="Microsoft.XMLDSO.1.0"
+
+[Software\\Classes\\Microsoft.XMLDSO.1.0] 1660099895
+#time=1d8ac641b03059c
+@="XML Data Source Object"
+
+[Software\\Classes\\Microsoft.XMLDSO.1.0\\CLSID] 1660099895
+#time=1d8ac641b0305f6
+@="{550DDA30-0541-11D2-9CA9-0060B0EC3D39}"
+
+[Software\\Classes\\Microsoft.XMLHTTP] 1660099895
+#time=1d8ac641b03031c
+@="XML HTTP Request"
+
+[Software\\Classes\\Microsoft.XMLHTTP\\CLSID] 1660099895
+#time=1d8ac641b030074
+@="{ED8C108E-4349-11D2-91A4-00C04F7969E8}"
+
+[Software\\Classes\\Microsoft.XMLHTTP\\CurVer] 1660099895
+#time=1d8ac641b03039e
+@="Microsoft.XMLHTTP.1.0"
+
+[Software\\Classes\\Microsoft.XMLHTTP.1.0] 1660099895
+#time=1d8ac641b02fdea
+@="XML HTTP Request"
+
+[Software\\Classes\\Microsoft.XMLHTTP.1.0\\CLSID] 1660099895
+#time=1d8ac641b02fe4e
+@="{ED8C108E-4349-11D2-91A4-00C04F7969E8}"
+
+[Software\\Classes\\MIME\\Database\\Charset\\_iso-2022-jp$ESC] 1660099897
+#time=1d8ac641c4c6a6a
+"Codepage"=dword:000003a4
+"InternetEncoding"=dword:0000c42d
+
+[Software\\Classes\\MIME\\Database\\Charset\\_iso-2022-jp$SIO] 1660099897
+#time=1d8ac641c4c6d3a
+"Codepage"=dword:000003a4
+"InternetEncoding"=dword:0000c42e
+
+[Software\\Classes\\MIME\\Database\\Charset\\ANSI_X3.4-1968] 1660099897
+#time=1d8ac641c4ce602
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ANSI_X3.4-1986] 1660099897
+#time=1d8ac641c4ce724
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\arabic] 1660099897
+#time=1d8ac641c4ce83c
+"AliasForCharset"="iso-8859-6"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ascii] 1660099897
+#time=1d8ac641c4ce954
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ASMO-708] 1660099897
+#time=1d8ac641c4c70a0
+"Codepage"=dword:000004e8
+"InternetEncoding"=dword:000002c4
+
+[Software\\Classes\\MIME\\Database\\Charset\\Big5] 1660099897
+#time=1d8ac641c4c73c0
+"Codepage"=dword:000003b6
+"InternetEncoding"=dword:000003b6
+
+[Software\\Classes\\MIME\\Database\\Charset\\chinese] 1660099897
+#time=1d8ac641c4cea6c
+"AliasForCharset"="gb2312"
+
+[Software\\Classes\\MIME\\Database\\Charset\\CN-GB] 1660099897
+#time=1d8ac641c4ceba2
+"AliasForCharset"="gb2312"
+
+[Software\\Classes\\MIME\\Database\\Charset\\cp1256] 1660099897
+#time=1d8ac641c4cecba
+"AliasForCharset"="windows-1256"
+
+[Software\\Classes\\MIME\\Database\\Charset\\cp367] 1660099897
+#time=1d8ac641c4ceddc
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\cp819] 1660099897
+#time=1d8ac641c4cf156
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\cp852] 1660099897
+#time=1d8ac641c4cf278
+"AliasForCharset"="ibm852"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csASCII] 1660099897
+#time=1d8ac641c4cf4bc
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csbig5] 1660099897
+#time=1d8ac641c4cf5de
+"AliasForCharset"="big5"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csEUCKR] 1660099897
+#time=1d8ac641c4cf714
+"AliasForCharset"="ks_c_5601-1987"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csEUCPkdFmtJapanese] 1660099897
+#time=1d8ac641c4cf836
+"AliasForCharset"="euc-jp"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csGB2312] 1660099897
+#time=1d8ac641c4cf94e
+"AliasForCharset"="gb2312"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csISO2022JP] 1660099897
+#time=1d8ac641c4cfa70
+"AliasForCharset"="_iso-2022-jp$ESC"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csISO2022KR] 1660099897
+#time=1d8ac641c4cfb92
+"AliasForCharset"="iso-2022-kr"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csISO58GB231280] 1660099897
+#time=1d8ac641c4cfcaa
+"AliasForCharset"="gb2312"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csISOLatin1] 1660099897
+#time=1d8ac641c4cfde0
+"AliasForCharset"="windows-1252"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csISOLatin2] 1660099897
+#time=1d8ac641c4cff5c
+"AliasForCharset"="iso-8859-2"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csISOLatin4] 1660099897
+#time=1d8ac641c4d011e
+"AliasForCharset"="iso-8859-4"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csISOLatin5] 1660099897
+#time=1d8ac641c4d0286
+"AliasForCharset"="iso-8859-9"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csISOLatinArabic] 1660099897
+#time=1d8ac641c4d03c6
+"AliasForCharset"="iso-8859-6"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csISOLatinCyrillic] 1660099897
+#time=1d8ac641c4d0510
+"AliasForCharset"="iso-8859-5"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csISOLatinGreek] 1660099897
+#time=1d8ac641c4d0646
+"AliasForCharset"="iso-8859-7"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csISOLatinHebrew] 1660099897
+#time=1d8ac641c4d098e
+"AliasForCharset"="iso-8859-8"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csKOI8R] 1660099897
+#time=1d8ac641c4d0ad8
+"AliasForCharset"="koi8-r"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csKSC56011987] 1660099897
+#time=1d8ac641c4d0cb8
+"AliasForCharset"="ks_c_5601-1987"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csShiftJIS] 1660099897
+#time=1d8ac641c4d0e5c
+"AliasForCharset"="shift_jis"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csUnicode11UTF7] 1660099897
+#time=1d8ac641c4d100a
+"AliasForCharset"="utf-7"
+
+[Software\\Classes\\MIME\\Database\\Charset\\csWindows31J] 1660099897
+#time=1d8ac641c4d11b8
+"AliasForCharset"="shift_jis"
+
+[Software\\Classes\\MIME\\Database\\Charset\\cyrillic] 1660099897
+#time=1d8ac641c4d25d6
+"AliasForCharset"="iso-8859-5"
+
+[Software\\Classes\\MIME\\Database\\Charset\\DOS-720] 1660099897
+#time=1d8ac641c4c76ae
+"Codepage"=dword:000004e8
+"InternetEncoding"=dword:000002d0
+
+[Software\\Classes\\MIME\\Database\\Charset\\DOS-862] 1660099897
+#time=1d8ac641c4c799c
+"Codepage"=dword:000004e7
+"InternetEncoding"=dword:0000035e
+
+[Software\\Classes\\MIME\\Database\\Charset\\DOS-874] 1660099897
+#time=1d8ac641c4c7c8a
+"Codepage"=dword:0000036a
+"InternetEncoding"=dword:0000036a
+
+[Software\\Classes\\MIME\\Database\\Charset\\ECMA-114] 1660099897
+#time=1d8ac641c4d2cb6
+"AliasForCharset"="iso-8859-6"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ECMA-118] 1660099897
+#time=1d8ac641c4d2fd6
+"AliasForCharset"="iso-8859-7"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ELOT_928] 1660099897
+#time=1d8ac641c4d315c
+"AliasForCharset"="iso-8859-7"
+
+[Software\\Classes\\MIME\\Database\\Charset\\euc-jp] 1660099897
+#time=1d8ac641c4c7f96
+"Codepage"=dword:000003a4
+"InternetEncoding"=dword:0000cadc
+
+[Software\\Classes\\MIME\\Database\\Charset\\euc-kr] 1660099897
+#time=1d8ac641c4c82b6
+"Codepage"=dword:000003b5
+"InternetEncoding"=dword:000003b5
+
+[Software\\Classes\\MIME\\Database\\Charset\\Extended_UNIX_Code_Packed_Format_for_Japanese] 1660099897
+#time=1d8ac641c4d3486
+"AliasForCharset"="euc-jp"
+
+[Software\\Classes\\MIME\\Database\\Charset\\GB2312] 1660099897
+#time=1d8ac641c4c85ae
+"Codepage"=dword:000003a8
+"InternetEncoding"=dword:000003a8
+
+[Software\\Classes\\MIME\\Database\\Charset\\GB_2312-80] 1660099897
+#time=1d8ac641c4d35f8
+"AliasForCharset"="gb2312"
+
+[Software\\Classes\\MIME\\Database\\Charset\\GBK] 1660099897
+#time=1d8ac641c4d3710
+"AliasForCharset"="gb2312"
+
+[Software\\Classes\\MIME\\Database\\Charset\\greek] 1660099897
+#time=1d8ac641c4d3864
+"AliasForCharset"="iso-8859-7"
+
+[Software\\Classes\\MIME\\Database\\Charset\\greek8] 1660099897
+#time=1d8ac641c4d39ae
+"AliasForCharset"="iso-8859-7"
+
+[Software\\Classes\\MIME\\Database\\Charset\\hebrew] 1660099897
+#time=1d8ac641c4d3b16
+"AliasForCharset"="iso-8859-8"
+
+[Software\\Classes\\MIME\\Database\\Charset\\hz-gb-2312] 1660099897
+#time=1d8ac641c4c88b0
+"Codepage"=dword:000003a8
+"InternetEncoding"=dword:0000cec8
+
+[Software\\Classes\\MIME\\Database\\Charset\\IBM367] 1660099897
+#time=1d8ac641c4d3c88
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ibm819] 1660099897
+#time=1d8ac641c4d3dbe
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ibm852] 1660099897
+#time=1d8ac641c4c8b94
+"Codepage"=dword:00000354
+"InternetEncoding"=dword:00000354
+
+[Software\\Classes\\MIME\\Database\\Charset\\ibm866] 1660099897
+#time=1d8ac641c4cf39a
+"AliasForCharset"="ibm866"
+"Codepage"=dword:00000362
+"InternetEncoding"=dword:00000362
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-2022-jp] 1660099897
+#time=1d8ac641c4c9242
+"Codepage"=dword:000003a4
+"InternetEncoding"=dword:0000c42c
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-2022-kr] 1660099897
+#time=1d8ac641c4c9576
+"Codepage"=dword:000003b5
+"InternetEncoding"=dword:0000c431
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-8859-1] 1660099897
+#time=1d8ac641c4c986e
+"Codepage"=dword:000004e4
+"InternetEncoding"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-8859-11] 1660099897
+#time=1d8ac641c4d3ee0
+"AliasForCharset"="windows-874"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-8859-2] 1660099897
+#time=1d8ac641c4c9b5c
+"Codepage"=dword:000004e2
+"InternetEncoding"=dword:00006fb0
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-8859-3] 1660099897
+#time=1d8ac641c4c9e4a
+"Codepage"=dword:000004e6
+"InternetEncoding"=dword:00006fb1
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-8859-4] 1660099897
+#time=1d8ac641c4ca138
+"Codepage"=dword:000004e9
+"InternetEncoding"=dword:00006fb2
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-8859-5] 1660099897
+#time=1d8ac641c4ca426
+"Codepage"=dword:000004e3
+"InternetEncoding"=dword:000063fb
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-8859-6] 1660099897
+#time=1d8ac641c4ca70a
+"Codepage"=dword:000004e8
+"InternetEncoding"=dword:00006fb4
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-8859-7] 1660099897
+#time=1d8ac641c4caa02
+"Codepage"=dword:000004e5
+"InternetEncoding"=dword:00006fb5
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-8859-8] 1660099897
+#time=1d8ac641c4cacf0
+"Codepage"=dword:000004e7
+"InternetEncoding"=dword:00006fb6
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO-8859-8 Visual] 1660099897
+#time=1d8ac641c4d400c
+"AliasForCharset"="iso-8859-8"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-8859-8-i] 1660099897
+#time=1d8ac641c4cafd4
+"Codepage"=dword:000004e7
+"InternetEncoding"=dword:000096c6
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-8859-9] 1660099897
+#time=1d8ac641c4cb2c2
+"Codepage"=dword:000004e6
+"InternetEncoding"=dword:000004e6
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-100] 1660099897
+#time=1d8ac641c4d4138
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-101] 1660099897
+#time=1d8ac641c4d425a
+"AliasForCharset"="iso-8859-2"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-110] 1660099897
+#time=1d8ac641c4d439a
+"AliasForCharset"="iso-8859-4"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-111] 1660099897
+#time=1d8ac641c4d4520
+"AliasForCharset"="iso-8859-4"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-126] 1660099897
+#time=1d8ac641c4d464c
+"AliasForCharset"="iso-8859-7"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-127] 1660099897
+#time=1d8ac641c4d476e
+"AliasForCharset"="iso-8859-6"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-138] 1660099897
+#time=1d8ac641c4d489a
+"AliasForCharset"="iso-8859-8"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-144] 1660099897
+#time=1d8ac641c4d49d0
+"AliasForCharset"="iso-8859-5"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-148] 1660099897
+#time=1d8ac641c4d4afc
+"AliasForCharset"="iso-8859-9"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-149] 1660099897
+#time=1d8ac641c4d4c1e
+"AliasForCharset"="ks_c_5601-1987"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-58] 1660099897
+#time=1d8ac641c4d4d4a
+"AliasForCharset"="gb2312"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso-ir-6] 1660099897
+#time=1d8ac641c4d4e6c
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO646-US] 1660099897
+#time=1d8ac641c4d4f8e
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso8859-1] 1660099897
+#time=1d8ac641c4d50ba
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso8859-2] 1660099897
+#time=1d8ac641c4d51e6
+"AliasForCharset"="iso-8859-2"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_646.irv:1991] 1660099897
+#time=1d8ac641c4d5312
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso_8859-1] 1660099897
+#time=1d8ac641c4d5434
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso_8859-1:1987] 1660099897
+#time=1d8ac641c4d556a
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso_8859-2] 1660099897
+#time=1d8ac641c4d56b4
+"AliasForCharset"="iso-8859-2"
+
+[Software\\Classes\\MIME\\Database\\Charset\\iso_8859-2:1987] 1660099897
+#time=1d8ac641c4d57f4
+"AliasForCharset"="iso-8859-2"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-4] 1660099897
+#time=1d8ac641c4d5934
+"AliasForCharset"="iso-8859-4"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-4:1988] 1660099897
+#time=1d8ac641c4d5a6a
+"AliasForCharset"="iso-8859-4"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-5] 1660099897
+#time=1d8ac641c4d5bfa
+"AliasForCharset"="iso-8859-5"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-5:1988] 1660099897
+#time=1d8ac641c4d5d44
+"AliasForCharset"="iso-8859-5"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-6] 1660099897
+#time=1d8ac641c4d5eb6
+"AliasForCharset"="iso-8859-6"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-6:1987] 1660099897
+#time=1d8ac641c4d603c
+"AliasForCharset"="iso-8859-6"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-7] 1660099897
+#time=1d8ac641c4d61d6
+"AliasForCharset"="iso-8859-7"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-7:1987] 1660099897
+#time=1d8ac641c4d633e
+"AliasForCharset"="iso-8859-7"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-8] 1660099897
+#time=1d8ac641c4d64ce
+"AliasForCharset"="iso-8859-8"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-8:1987] 1660099897
+#time=1d8ac641c4d665e
+"AliasForCharset"="iso-8859-8"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-9] 1660099897
+#time=1d8ac641c4d67b2
+"AliasForCharset"="iso-8859-9"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ISO_8859-9:1987] 1660099897
+#time=1d8ac641c4d68f2
+"AliasForCharset"="iso-8859-9"
+
+[Software\\Classes\\MIME\\Database\\Charset\\koi] 1660099897
+#time=1d8ac641c4d6a32
+"AliasForCharset"="koi8-r"
+
+[Software\\Classes\\MIME\\Database\\Charset\\koi8-r] 1660099897
+#time=1d8ac641c4cb5c4
+"Codepage"=dword:000004e3
+"InternetEncoding"=dword:00005182
+
+[Software\\Classes\\MIME\\Database\\Charset\\koi8-ru] 1660099897
+#time=1d8ac641c4cb8a8
+"Codepage"=dword:000004e3
+"InternetEncoding"=dword:0000556a
+
+[Software\\Classes\\MIME\\Database\\Charset\\korean] 1660099897
+#time=1d8ac641c4d6b4a
+"AliasForCharset"="ks_c_5601-1987"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ks_c_5601] 1660099897
+#time=1d8ac641c4d6c4e
+"AliasForCharset"="ks_c_5601-1987"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ks_c_5601-1987] 1660099897
+#time=1d8ac641c4cbbb4
+"Codepage"=dword:000003b5
+"InternetEncoding"=dword:000003b5
+
+[Software\\Classes\\MIME\\Database\\Charset\\ks_c_5601-1989] 1660099897
+#time=1d8ac641c4d6d66
+"AliasForCharset"="ks_c_5601-1987"
+
+[Software\\Classes\\MIME\\Database\\Charset\\KSC5601] 1660099897
+#time=1d8ac641c4d6e6a
+"AliasForCharset"="ks_c_5601-1987"
+
+[Software\\Classes\\MIME\\Database\\Charset\\KSC_5601] 1660099897
+#time=1d8ac641c4d6f6e
+"AliasForCharset"="ks_c_5601-1987"
+
+[Software\\Classes\\MIME\\Database\\Charset\\l1] 1660099897
+#time=1d8ac641c4d7072
+"AliasForCharset"="windows-1252"
+
+[Software\\Classes\\MIME\\Database\\Charset\\l2] 1660099897
+#time=1d8ac641c4d716c
+"AliasForCharset"="iso-8859-2"
+
+[Software\\Classes\\MIME\\Database\\Charset\\l4] 1660099897
+#time=1d8ac641c4d7270
+"AliasForCharset"="iso-8859-4"
+
+[Software\\Classes\\MIME\\Database\\Charset\\l5] 1660099897
+#time=1d8ac641c4d7374
+"AliasForCharset"="iso-8859-9"
+
+[Software\\Classes\\MIME\\Database\\Charset\\latin1] 1660099897
+#time=1d8ac641c4d7482
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\latin2] 1660099897
+#time=1d8ac641c4d757c
+"AliasForCharset"="iso-8859-2"
+
+[Software\\Classes\\MIME\\Database\\Charset\\latin4] 1660099897
+#time=1d8ac641c4d768a
+"AliasForCharset"="iso-8859-4"
+
+[Software\\Classes\\MIME\\Database\\Charset\\latin5] 1660099897
+#time=1d8ac641c4d77b6
+"AliasForCharset"="iso-8859-9"
+
+[Software\\Classes\\MIME\\Database\\Charset\\logical] 1660099897
+#time=1d8ac641c4d78ba
+"AliasForCharset"="windows-1255"
+
+[Software\\Classes\\MIME\\Database\\Charset\\ms_Kanji] 1660099897
+#time=1d8ac641c4d79be
+"AliasForCharset"="shift_jis"
+
+[Software\\Classes\\MIME\\Database\\Charset\\shift-jis] 1660099897
+#time=1d8ac641c4d7b12
+"AliasForCharset"="shift_jis"
+
+[Software\\Classes\\MIME\\Database\\Charset\\shift_jis] 1660099897
+#time=1d8ac641c4cbe98
+"Codepage"=dword:000003a4
+"InternetEncoding"=dword:000003a4
+
+[Software\\Classes\\MIME\\Database\\Charset\\unicode] 1660099897
+#time=1d8ac641c4cc17c
+"Codepage"=dword:000004b0
+"InternetEncoding"=dword:000004b0
+
+[Software\\Classes\\MIME\\Database\\Charset\\unicode-1-1-utf-7] 1660099897
+#time=1d8ac641c4d7c16
+"AliasForCharset"="utf-7"
+
+[Software\\Classes\\MIME\\Database\\Charset\\unicode-1-1-utf-8] 1660099897
+#time=1d8ac641c4d7d1a
+"AliasForCharset"="utf-8"
+
+[Software\\Classes\\MIME\\Database\\Charset\\unicode-2-0-utf-8] 1660099897
+#time=1d8ac641c4d7e1e
+"AliasForCharset"="utf-8"
+
+[Software\\Classes\\MIME\\Database\\Charset\\unicodeFFFE] 1660099897
+#time=1d8ac641c4cc46a
+"Codepage"=dword:000004b0
+"InternetEncoding"=dword:000004b1
+
+[Software\\Classes\\MIME\\Database\\Charset\\us] 1660099897
+#time=1d8ac641c4d7f18
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\us-ascii] 1660099897
+#time=1d8ac641c4d801c
+"AliasForCharset"="iso-8859-1"
+
+[Software\\Classes\\MIME\\Database\\Charset\\utf-7] 1660099897
+#time=1d8ac641c4cc762
+"Codepage"=dword:000004b0
+"InternetEncoding"=dword:0000fde8
+
+[Software\\Classes\\MIME\\Database\\Charset\\utf-8] 1660099897
+#time=1d8ac641c4cca64
+"Codepage"=dword:000004b0
+"InternetEncoding"=dword:0000fde9
+
+[Software\\Classes\\MIME\\Database\\Charset\\visual] 1660099897
+#time=1d8ac641c4d8120
+"AliasForCharset"="iso-8859-8"
+
+[Software\\Classes\\MIME\\Database\\Charset\\windows-1250] 1660099897
+#time=1d8ac641c4ccd48
+"Codepage"=dword:000004e2
+"InternetEncoding"=dword:000004e2
+
+[Software\\Classes\\MIME\\Database\\Charset\\windows-1251] 1660099897
+#time=1d8ac641c4cd040
+"Codepage"=dword:000004e3
+"InternetEncoding"=dword:000004e3
+
+[Software\\Classes\\MIME\\Database\\Charset\\windows-1252] 1660099897
+#time=1d8ac641c4cd32e
+"Codepage"=dword:000004e4
+"InternetEncoding"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Charset\\windows-1253] 1660099897
+#time=1d8ac641c4cd612
+"Codepage"=dword:000004e5
+"InternetEncoding"=dword:000004e5
+
+[Software\\Classes\\MIME\\Database\\Charset\\Windows-1254] 1660099897
+#time=1d8ac641c4d822e
+"AliasForCharset"="iso-8859-9"
+
+[Software\\Classes\\MIME\\Database\\Charset\\windows-1255] 1660099897
+#time=1d8ac641c4cd8f6
+"Codepage"=dword:000004e7
+"InternetEncoding"=dword:000004e7
+
+[Software\\Classes\\MIME\\Database\\Charset\\windows-1256] 1660099897
+#time=1d8ac641c4cdbda
+"Codepage"=dword:000004e8
+"InternetEncoding"=dword:000004e8
+
+[Software\\Classes\\MIME\\Database\\Charset\\windows-1257] 1660099897
+#time=1d8ac641c4cdefa
+"Codepage"=dword:000004e9
+"InternetEncoding"=dword:000004e9
+
+[Software\\Classes\\MIME\\Database\\Charset\\windows-1258] 1660099897
+#time=1d8ac641c4ce1fc
+"Codepage"=dword:000004ea
+"InternetEncoding"=dword:000004ea
+
+[Software\\Classes\\MIME\\Database\\Charset\\windows-874] 1660099897
+#time=1d8ac641c4ce4ea
+"Codepage"=dword:0000036a
+"InternetEncoding"=dword:0000036a
+
+[Software\\Classes\\MIME\\Database\\Codepage\\10000] 1660099897
+#time=1d8ac641c2674fe
+"BodyCharset"="macintosh"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\10001] 1660099897
+#time=1d8ac641c2655c8
+"BodyCharset"="x-mac-japanese"
+"Family"=dword:000003a4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\10006] 1660099897
+#time=1d8ac641c26427c
+"BodyCharset"="x-mac-greek"
+"Family"=dword:000004e5
+
+[Software\\Classes\\MIME\\Database\\Codepage\\10007] 1660099897
+#time=1d8ac641c263660
+"BodyCharset"="x-mac-cyrillic"
+"Family"=dword:000004e3
+
+[Software\\Classes\\MIME\\Database\\Codepage\\10029] 1660099897
+#time=1d8ac641c262e9a
+"BodyCharset"="x-mac-ce"
+"Family"=dword:000004e2
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1006] 1660099897
+#time=1d8ac641c2610c2
+"BodyCharset"="ibm1006"
+"Family"=dword:000004e8
+
+[Software\\Classes\\MIME\\Database\\Codepage\\10079] 1660099897
+#time=1d8ac641c267670
+"BodyCharset"="x-mac-icelandic"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\10081] 1660099897
+#time=1d8ac641c266194
+"BodyCharset"="x-mac-turkish"
+"Family"=dword:000004e6
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1026] 1660099897
+#time=1d8ac641c265e24
+"BodyCharset"="ibm1026"
+"Family"=dword:000004e6
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1200] 1660099897
+#time=1d8ac641c267cb0
+"BodyCharset"="unicode"
+"FixedWidthFont"="Courier New"
+"ProportionalFont"="Arial"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1250] 1660099897
+#time=1d8ac641c262d28
+"BodyCharset"="windows-1250"
+"FixedWidthFont"="Courier New"
+"ProportionalFont"="Arial"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1251] 1660099897
+#time=1d8ac641c2634ee
+"BodyCharset"="windows-1251"
+"FixedWidthFont"="Courier New"
+"ProportionalFont"="Arial"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1252] 1660099897
+#time=1d8ac641c267396
+"BodyCharset"="iso-8859-1"
+"FixedWidthFont"="Courier New"
+"ProportionalFont"="Arial"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1253] 1660099897
+#time=1d8ac641c26410a
+"BodyCharset"="windows-1253"
+"FixedWidthFont"="Courier New"
+"ProportionalFont"="Arial"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1254] 1660099897
+#time=1d8ac641c266004
+"BodyCharset"="windows-1254"
+"FixedWidthFont"="Courier New"
+"ProportionalFont"="Arial"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1255] 1660099897
+#time=1d8ac641c264a10
+"BodyCharset"="windows-1255"
+"FixedWidthFont"="Miriam Fixed"
+"ProportionalFont"="David"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1256] 1660099897
+#time=1d8ac641c2612b6
+"BodyCharset"="windows-1256"
+"FixedWidthFont"="Simplified Arabic Fixed"
+"ProportionalFont"="Simplified Arabic"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1257] 1660099897
+#time=1d8ac641c26178e
+"BodyCharset"="windows-1257"
+"FixedWidthFont"="Courier New"
+"ProportionalFont"="Arial"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\1258] 1660099897
+#time=1d8ac641c266630
+"BodyCharset"="windows-1258"
+"FixedWidthFont"="Courier New"
+"ProportionalFont"="Arial"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\20000] 1660099897
+#time=1d8ac641c2629e0
+"BodyCharset"="x-Chinese-CNS"
+"Family"=dword:000003b6
+
+[Software\\Classes\\MIME\\Database\\Codepage\\20127] 1660099897
+#time=1d8ac641c2677d8
+"BodyCharset"="us-ascii"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\20866] 1660099897
+#time=1d8ac641c2637dc
+"BodyCharset"="koi8-r"
+"Family"=dword:000004e3
+
+[Software\\Classes\\MIME\\Database\\Codepage\\20932] 1660099897
+#time=1d8ac641c26517c
+"BodyCharset"="EUC-JP"
+"Family"=dword:000003a4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\20936] 1660099897
+#time=1d8ac641c262062
+"BodyCharset"="x-cp20936"
+"Family"=dword:000003a8
+
+[Software\\Classes\\MIME\\Database\\Codepage\\21866] 1660099897
+#time=1d8ac641c263944
+"BodyCharset"="koi8-u"
+"Family"=dword:000004e3
+
+[Software\\Classes\\MIME\\Database\\Codepage\\28591] 1660099897
+#time=1d8ac641c267940
+"BodyCharset"="iso-8859-1"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\28592] 1660099897
+#time=1d8ac641c26303e
+"BodyCharset"="iso-8859-2"
+"Family"=dword:000004e2
+
+[Software\\Classes\\MIME\\Database\\Codepage\\28593] 1660099897
+#time=1d8ac641c2662fc
+"BodyCharset"="iso-8859-3"
+"Family"=dword:000004e6
+
+[Software\\Classes\\MIME\\Database\\Codepage\\28594] 1660099897
+#time=1d8ac641c26190a
+"BodyCharset"="iso-8859-4"
+"Family"=dword:000004e9
+
+[Software\\Classes\\MIME\\Database\\Codepage\\28595] 1660099897
+#time=1d8ac641c263ad4
+"BodyCharset"="iso-8859-5"
+"Family"=dword:000004e3
+
+[Software\\Classes\\MIME\\Database\\Codepage\\28596] 1660099897
+#time=1d8ac641c261432
+"BodyCharset"="iso-8859-6"
+"Family"=dword:000004e8
+
+[Software\\Classes\\MIME\\Database\\Codepage\\28597] 1660099897
+#time=1d8ac641c264402
+"BodyCharset"="iso-8859-7"
+"Family"=dword:000004e5
+
+[Software\\Classes\\MIME\\Database\\Codepage\\28598] 1660099897
+#time=1d8ac641c264b78
+"BodyCharset"="iso-8859-8"
+"Family"=dword:000004e7
+
+[Software\\Classes\\MIME\\Database\\Codepage\\28599] 1660099897
+#time=1d8ac641c266464
+"BodyCharset"="iso-8859-9"
+"Family"=dword:000004e6
+
+[Software\\Classes\\MIME\\Database\\Codepage\\28603] 1660099897
+#time=1d8ac641c261a9a
+"BodyCharset"="iso-8859-13"
+"Family"=dword:000004e9
+
+[Software\\Classes\\MIME\\Database\\Codepage\\28605] 1660099897
+#time=1d8ac641c267ab2
+"BodyCharset"="iso-8859-15"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\37] 1660099897
+#time=1d8ac641c2667a2
+"BodyCharset"="ibm037"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\424] 1660099897
+#time=1d8ac641c26456a
+"BodyCharset"="ibm424"
+"Family"=dword:000004e7
+
+[Software\\Classes\\MIME\\Database\\Codepage\\437] 1660099897
+#time=1d8ac641c26690a
+"BodyCharset"="ibm437"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\500] 1660099897
+#time=1d8ac641c266a90
+"BodyCharset"="ibm500"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\50220] 1660099897
+#time=1d8ac641c26500a
+"BodyCharset"="iso-2022-jp"
+"Family"=dword:000003a4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\50221] 1660099897
+#time=1d8ac641c2652e4
+"BodyCharset"="iso-2022-jp"
+"Family"=dword:000003a4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\50222] 1660099897
+#time=1d8ac641c26544c
+"BodyCharset"="iso-2022-jp"
+"Family"=dword:000003a4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\50932] 1660099897
+#time=1d8ac641c264d1c
+"BodyCharset"="_autodetect"
+"Family"=dword:000003a4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\50936] 1660099897
+#time=1d8ac641c261c16
+"BodyCharset"="_autodetect_chs"
+"Family"=dword:000003a8
+
+[Software\\Classes\\MIME\\Database\\Codepage\\50950] 1660099897
+#time=1d8ac641c2626a2
+"BodyCharset"="_autodetect_cht"
+"Family"=dword:000003b6
+
+[Software\\Classes\\MIME\\Database\\Codepage\\51932] 1660099897
+#time=1d8ac641c264ea2
+"BodyCharset"="euc-jp"
+"Family"=dword:000003a4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\52936] 1660099897
+#time=1d8ac641c2621d4
+"BodyCharset"="hz-gb-2312"
+"Family"=dword:000003a8
+
+[Software\\Classes\\MIME\\Database\\Codepage\\54936] 1660099897
+#time=1d8ac641c262346
+"BodyCharset"="GB18030"
+"Family"=dword:000003a8
+
+[Software\\Classes\\MIME\\Database\\Codepage\\65000] 1660099897
+#time=1d8ac641c267e22
+"BodyCharset"="utf-7"
+"Family"=dword:000004b0
+
+[Software\\Classes\\MIME\\Database\\Codepage\\65001] 1660099897
+#time=1d8ac641c267f8a
+"BodyCharset"="utf-8"
+"Family"=dword:000004b0
+
+[Software\\Classes\\MIME\\Database\\Codepage\\737] 1660099897
+#time=1d8ac641c263c46
+"BodyCharset"="ibm737"
+"Family"=dword:000004e5
+
+[Software\\Classes\\MIME\\Database\\Codepage\\775] 1660099897
+#time=1d8ac641c26159a
+"BodyCharset"="ibm775"
+"Family"=dword:000004e9
+
+[Software\\Classes\\MIME\\Database\\Codepage\\850] 1660099897
+#time=1d8ac641c266bf8
+"BodyCharset"="ibm850"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\852] 1660099897
+#time=1d8ac641c262b52
+"BodyCharset"="ibm852"
+"Family"=dword:000004e2
+
+[Software\\Classes\\MIME\\Database\\Codepage\\855] 1660099897
+#time=1d8ac641c2631b0
+"BodyCharset"="ibm855"
+"Family"=dword:000004e3
+
+[Software\\Classes\\MIME\\Database\\Codepage\\856] 1660099897
+#time=1d8ac641c2646d2
+"BodyCharset"="cp856"
+"Family"=dword:000004e7
+
+[Software\\Classes\\MIME\\Database\\Codepage\\857] 1660099897
+#time=1d8ac641c265cbc
+"BodyCharset"="ibm857"
+"Family"=dword:000004e6
+
+[Software\\Classes\\MIME\\Database\\Codepage\\860] 1660099897
+#time=1d8ac641c266d60
+"BodyCharset"="ibm860"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\861] 1660099897
+#time=1d8ac641c266edc
+"BodyCharset"="ibm861"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\862] 1660099897
+#time=1d8ac641c264844
+"BodyCharset"="dos-862"
+"Family"=dword:000004e7
+
+[Software\\Classes\\MIME\\Database\\Codepage\\863] 1660099897
+#time=1d8ac641c267044
+"BodyCharset"="ibm863"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\864] 1660099897
+#time=1d8ac641c260f50
+"BodyCharset"="ibm864"
+"Family"=dword:000004e8
+
+[Software\\Classes\\MIME\\Database\\Codepage\\865] 1660099897
+#time=1d8ac641c2671ac
+"BodyCharset"="ibm865"
+"Family"=dword:000004e4
+
+[Software\\Classes\\MIME\\Database\\Codepage\\866] 1660099897
+#time=1d8ac641c263322
+"BodyCharset"="cp866"
+"Family"=dword:000004e3
+
+[Software\\Classes\\MIME\\Database\\Codepage\\869] 1660099897
+#time=1d8ac641c263dae
+"BodyCharset"="ibm869"
+"Family"=dword:000004e5
+
+[Software\\Classes\\MIME\\Database\\Codepage\\874] 1660099897
+#time=1d8ac641c265b4a
+"BodyCharset"="ibm-thai"
+"FixedWidthFont"="Tahoma"
+"ProportionalFont"="Tahoma"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\875] 1660099897
+#time=1d8ac641c263f20
+"BodyCharset"="cp875"
+"Family"=dword:000004e5
+
+[Software\\Classes\\MIME\\Database\\Codepage\\932] 1660099897
+#time=1d8ac641c2657b2
+"BodyCharset"="iso-2022-jp"
+"FixedWidthFont"="MS Gothic"
+"ProportionalFont"="MS PGothic"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\936] 1660099897
+#time=1d8ac641c262454
+"BodyCharset"="gbk"
+"FixedWidthFont"="Simsun"
+"ProportionalFont"="Simsun"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\949] 1660099897
+#time=1d8ac641c26597e
+"BodyCharset"="ks_c_5601-1987"
+"FixedWidthFont"="GulimChe"
+"ProportionalFont"="Gulim"
+
+[Software\\Classes\\MIME\\Database\\Codepage\\950] 1660099897
+#time=1d8ac641c26286e
+"BodyCharset"="big5"
+"FixedWidthFont"="MingLiu"
+"ProportionalFont"="New MingLiu"
+
+[Software\\Classes\\MSDADC] 1660099895
+#time=1d8ac641b14c5f2
+@="OLE DB Data Conversion Library"
+
+[Software\\Classes\\MSDADC\\CLSID] 1660099895
+#time=1d8ac641b14c53e
+@="{C8B522D1-5CF3-11CE-ADE5-00AA0044773D}"
+
+[Software\\Classes\\MSDADC\\CurVer] 1660099895
+#time=1d8ac641b14c66a
+@="MSDADC.1"
+
+[Software\\Classes\\MSDADC.1] 1660099895
+#time=1d8ac641b14c278
+@="OLE DB Data Conversion Library"
+
+[Software\\Classes\\MSDADC.1\\CLSID] 1660099895
+#time=1d8ac641b14c2dc
+@="{C8B522D1-5CF3-11CE-ADE5-00AA0044773D}"
+
+[Software\\Classes\\MSDAER] 1660099895
+#time=1d8ac641b14ccaa
+@="OLE DB Error Collection Service"
+
+[Software\\Classes\\MSDAER\\CLSID] 1660099895
+#time=1d8ac641b14cbba
+@="{C8B522CF-5CF3-11CE-ADE5-00AA0044773D}"
+
+[Software\\Classes\\MSDAER\\CurVer] 1660099895
+#time=1d8ac641b14cd0e
+@="MSDAER.1"
+
+[Software\\Classes\\MSDAER.1] 1660099895
+#time=1d8ac641b14c85e
+@="OLE DB Error Collection Service"
+
+[Software\\Classes\\MSDAER.1\\CLSID] 1660099895
+#time=1d8ac641b14c8c2
+@="{C8B522CF-5CF3-11CE-ADE5-00AA0044773D}"
+
+[Software\\Classes\\MSDASC.MSDAINITIALIZE] 1660099895
+#time=1d8ac641b14a6da
+@="MSDAINITIALIZE"
+
+[Software\\Classes\\MSDASC.MSDAINITIALIZE\\CLSID] 1660099895
+#time=1d8ac641b14a61c
+@="{2206CDB0-19C1-11D1-89E0-00C04FD7A829}"
+
+[Software\\Classes\\MSDASC.MSDAINITIALIZE\\CurVer] 1660099895
+#time=1d8ac641b14a73e
+@="MSDASC.MSDAINITIALIZE.1"
+
+[Software\\Classes\\MSDASC.MSDAINITIALIZE.1] 1660099895
+#time=1d8ac641b14a2e8
+@="MSDAINITIALIZE"
+
+[Software\\Classes\\MSDASC.MSDAINITIALIZE.1\\CLSID] 1660099895
+#time=1d8ac641b14a34c
+@="{2206CDB0-19C1-11D1-89E0-00C04FD7A829}"
+
+[Software\\Classes\\MSFSStore] 1660099896
+#time=1d8ac641b7c2aa8
+@="Microsoft InfoTech IStorage for Win32 Files"
+
+[Software\\Classes\\MSFSStore\\CLSID] 1660099896
+#time=1d8ac641b7c29f4
+@="{D54EEE56-AAAB-11D0-9E1D-00A0C922E6EC}"
+
+[Software\\Classes\\MSFSStore\\CurVer] 1660099896
+#time=1d8ac641b7c2b02
+@="MSFSStore1.0"
+
+[Software\\Classes\\Msi.Package] 1660099897
+#time=1d8ac641c4bd014
+@="Windows Installer Package"
+
+[Software\\Classes\\Msi.Package\\DefaultIcon] 1660099897
+#time=1d8ac641c4bce8e
+@="msiexec.exe"
+
+[Software\\Classes\\Msi.Package\\shell\\Open\\command] 1660099897
+#time=1d8ac641c4bd474
+@="C:\\windows\\system32\\msiexec.exe /i \"%1\""
+
+[Software\\Classes\\Msi.Package\\shell\\Repair\\command] 1660099897
+#time=1d8ac641c4bf116
+@="C:\\windows\\system32\\msiexec.exe /f \"%1\""
+
+[Software\\Classes\\Msi.Package\\shell\\Uninstall\\command] 1660099897
+#time=1d8ac641c4bf666
+@="C:\\windows\\system32\\msiexec.exe /x \"%1\""
+
+[Software\\Classes\\Msi.Patch] 1660099897
+#time=1d8ac641c4bfa8a
+@="Windows Installer Patch"
+
+[Software\\Classes\\Msi.Patch\\DefaultIcon] 1660099897
+#time=1d8ac641c4bf936
+@="msiexec.exe"
+
+[Software\\Classes\\Msi.Patch\\shell\\Open\\command] 1660099897
+#time=1d8ac641c4bfcd8
+@="C:\\windows\\system32\\msiexec.exe /p \"%1\""
+
+[Software\\Classes\\MSITFS] 1660099896
+#time=1d8ac641b7c19b4
+@="Microsoft InfoTech IStorage System"
+
+[Software\\Classes\\MSITFS\\CLSID] 1660099896
+#time=1d8ac641b7c1a72
+@="{5D02926A-212E-11D0-9DF9-00A0C922E6EC}"
+
+[Software\\Classes\\MSITFS\\CurVer] 1660099896
+#time=1d8ac641b7c0b9a
+@="MSITFS1.0"
+
+[Software\\Classes\\MSITFS1.0] 1660099896
+#time=1d8ac641b7c178e
+@="Microsoft InfoTech IStorage System"
+
+[Software\\Classes\\MSITFS1.0\\CLSID] 1660099896
+#time=1d8ac641b7c1856
+@="{5D02926A-212E-11D0-9DF9-00A0C922E6EC}"
+
+[Software\\Classes\\MSITStore] 1660099896
+#time=1d8ac641b7c236e
+@="Microsoft InfoTech Protocol for IE 3.0"
+
+[Software\\Classes\\MSITStore\\CLSID] 1660099896
+#time=1d8ac641b7c22ba
+@="{9D148290-B9C8-11D0-A4CC-0000F80149F6}"
+
+[Software\\Classes\\MSITStore\\CurVer] 1660099896
+#time=1d8ac641b7c23c8
+@="MSITStore1.0"
+
+[Software\\Classes\\MSScriptControl.ScriptControl] 1660099896
+#time=1d8ac641b959236
+@="ScriptControl Object"
+
+[Software\\Classes\\MSScriptControl.ScriptControl\\CLSID] 1660099896
+#time=1d8ac641b959196
+@="{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}"
+
+[Software\\Classes\\MSScriptControl.ScriptControl\\CurVer] 1660099896
+#time=1d8ac641b959290
+@="MSScriptControl.ScriptControl.1"
+
+[Software\\Classes\\MSScriptControl.ScriptControl.1] 1660099896
+#time=1d8ac641b958eee
+@="ScriptControl Object"
+
+[Software\\Classes\\MSScriptControl.ScriptControl.1\\CLSID] 1660099896
+#time=1d8ac641b958f70
+@="{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}"
+
+[Software\\Classes\\Msxml] 1660099895
+#time=1d8ac641b030dbc
+@="Msxml"
+
+[Software\\Classes\\Msxml\\CLSID] 1660099895
+#time=1d8ac641b030e16
+@="{CFC399AF-D876-11D0-9C10-00C04FC99C8E}"
+
+[Software\\Classes\\MSXML.DOMDocument] 1660099895
+#time=1d8ac641b031208
+@="XML DOM Document"
+
+[Software\\Classes\\MSXML.DOMDocument\\CLSID] 1660099895
+#time=1d8ac641b03115e
+@="{2933BF90-7B36-11D2-B20E-00C04F983E60}"
+
+[Software\\Classes\\MSXML.DOMDocument\\CurVer] 1660099895
+#time=1d8ac641b03126c
+@="Microsoft.XMLDOM.1.0"
+
+[Software\\Classes\\MSXML.FreeThreadedDOMDocument] 1660099895
+#time=1d8ac641b0315aa
+@="Free Threaded XML DOM Document"
+
+[Software\\Classes\\MSXML.FreeThreadedDOMDocument\\CLSID] 1660099895
+#time=1d8ac641b0314f6
+@="{2933BF91-7B36-11D2-B20E-00C04F983E60}"
+
+[Software\\Classes\\MSXML.FreeThreadedDOMDocument\\CurVer] 1660099895
+#time=1d8ac641b03160e
+@="Microsoft.FreeThreadedXMLDOM.1.0"
+
+[Software\\Classes\\Msxml2.DOMDocument] 1660099895
+#time=1d8ac641b0706f6
+@="XML DOM Document"
+
+[Software\\Classes\\Msxml2.DOMDocument\\CLSID] 1660099895
+#time=1d8ac641b0707b4
+@="{F6D90F11-9C73-11D3-B32E-00C04F990BB4}"
+
+[Software\\Classes\\Msxml2.DOMDocument\\CurVer] 1660099895
+#time=1d8ac641b070598
+@="Msxml2.DOMDocument.3.0"
+
+[Software\\Classes\\Msxml2.DOMDocument.2.6] 1660099895
+#time=1d8ac641b0435b6
+@="XML DOM Document 2.6"
+
+[Software\\Classes\\Msxml2.DOMDocument.2.6\\CLSID] 1660099895
+#time=1d8ac641b04361a
+@="{F5078F1B-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.DOMDocument.3.0] 1660099895
+#time=1d8ac641b07020a
+@="XML DOM Document 3.0"
+
+[Software\\Classes\\Msxml2.DOMDocument.3.0\\CLSID] 1660099895
+#time=1d8ac641b070264
+@="{F5078F32-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.DOMDocument.4.0] 1660099895
+#time=1d8ac641b0a593c
+@="XML DOM Document 4.0"
+
+[Software\\Classes\\Msxml2.DOMDocument.4.0\\CLSID] 1660099895
+#time=1d8ac641b0a59aa
+@="{88D969C0-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.DOMDocument.6.0] 1660099895
+#time=1d8ac641b0cadea
+@="XML DOM Document 6.0"
+
+[Software\\Classes\\Msxml2.DOMDocument.6.0\\CLSID] 1660099895
+#time=1d8ac641b0cae4e
+@="{88D96A05-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.FreeThreadedDOMDocument] 1660099895
+#time=1d8ac641b071088
+@="Free threaded XML DOM Document"
+
+[Software\\Classes\\Msxml2.FreeThreadedDOMDocument\\CLSID] 1660099895
+#time=1d8ac641b071146
+@="{F6D90F12-9C73-11D3-B32E-00C04F990BB4}"
+
+[Software\\Classes\\Msxml2.FreeThreadedDOMDocument\\CurVer] 1660099895
+#time=1d8ac641b070f20
+@="Msxml2.FreeThreadedDOMDocument.3.0"
+
+[Software\\Classes\\Msxml2.FreeThreadedDOMDocument.2.6] 1660099895
+#time=1d8ac641b043c28
+@="Free Threaded XML DOM Document 2.6"
+
+[Software\\Classes\\Msxml2.FreeThreadedDOMDocument.2.6\\CLSID] 1660099895
+#time=1d8ac641b043c8c
+@="{F5078F1C-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.FreeThreadedDOMDocument.3.0] 1660099895
+#time=1d8ac641b070b9c
+@="Free threaded XML DOM Document 3.0"
+
+[Software\\Classes\\Msxml2.FreeThreadedDOMDocument.3.0\\CLSID] 1660099895
+#time=1d8ac641b070bf6
+@="{F5078F33-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.FreeThreadedDOMDocument.4.0] 1660099895
+#time=1d8ac641b0a5bee
+@="Free threaded XML DOM Document 4.0"
+
+[Software\\Classes\\Msxml2.FreeThreadedDOMDocument.4.0\\CLSID] 1660099895
+#time=1d8ac641b0a5c84
+@="{88D969C1-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.FreeThreadedDOMDocument.6.0] 1660099895
+#time=1d8ac641b0cb024
+@="Free threaded XML DOM Document 6.0"
+
+[Software\\Classes\\Msxml2.FreeThreadedDOMDocument.6.0\\CLSID] 1660099895
+#time=1d8ac641b0cb088
+@="{88D96A06-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.MXHTMLWriter.4.0] 1660099895
+#time=1d8ac641b0a79da
+@="MXHTMLWriter 4.0"
+
+[Software\\Classes\\Msxml2.MXHTMLWriter.4.0\\CLSID] 1660099895
+#time=1d8ac641b0a7a52
+@="{88D969C9-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.MXHTMLWriter.6.0] 1660099895
+#time=1d8ac641b0cb6e6
+@="MXHTMLWriter 6.0"
+
+[Software\\Classes\\Msxml2.MXHTMLWriter.6.0\\CLSID] 1660099895
+#time=1d8ac641b0cb740
+@="{88D96A10-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.MXNamespaceManager.4.0] 1660099895
+#time=1d8ac641b0a80ec
+@="MXNamespaceManager 4.0"
+
+[Software\\Classes\\Msxml2.MXNamespaceManager.4.0\\CLSID] 1660099895
+#time=1d8ac641b0a815a
+@="{88D969D6-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.MXNamespaceManager.6.0] 1660099895
+#time=1d8ac641b0cbb50
+@="MXNamespaceManager 6.0"
+
+[Software\\Classes\\Msxml2.MXNamespaceManager.6.0\\CLSID] 1660099895
+#time=1d8ac641b0cbbaa
+@="{88D96A11-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.MXXMLWriter] 1660099895
+#time=1d8ac641b074fc6
+@="MXXMLWriter"
+
+[Software\\Classes\\Msxml2.MXXMLWriter\\CLSID] 1660099895
+#time=1d8ac641b075084
+@="{FC220AD8-A72A-4EE8-926E-0B7AD152A020}"
+
+[Software\\Classes\\Msxml2.MXXMLWriter\\CurVer] 1660099895
+#time=1d8ac641b074e40
+@="Msxml2.MXXMLWriter.3.0"
+
+[Software\\Classes\\Msxml2.MXXMLWriter.3.0] 1660099895
+#time=1d8ac641b074ab2
+@="MXXMLWriter 3.0"
+
+[Software\\Classes\\Msxml2.MXXMLWriter.3.0\\CLSID] 1660099895
+#time=1d8ac641b074b16
+@="{3D813DFE-6C91-4A4E-8F41-04346A841D9C}"
+
+[Software\\Classes\\Msxml2.MXXMLWriter.4.0] 1660099895
+#time=1d8ac641b0a7d22
+@="MXXMLWriter 4.0"
+
+[Software\\Classes\\Msxml2.MXXMLWriter.4.0\\CLSID] 1660099895
+#time=1d8ac641b0a7d90
+@="{88D969C8-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.MXXMLWriter.6.0] 1660099895
+#time=1d8ac641b0cb90c
+@="MXXMLWriter 6.0"
+
+[Software\\Classes\\Msxml2.MXXMLWriter.6.0\\CLSID] 1660099895
+#time=1d8ac641b0cb966
+@="{88D96A0F-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.SAXAttributes] 1660099895
+#time=1d8ac641b075958
+@="SAXAttributes"
+
+[Software\\Classes\\Msxml2.SAXAttributes\\CLSID] 1660099895
+#time=1d8ac641b075a16
+@="{4DD441AD-526D-4A77-9F1B-9841ED802FB0}"
+
+[Software\\Classes\\Msxml2.SAXAttributes\\CurVer] 1660099895
+#time=1d8ac641b0757fa
+@="Msxml2.SAXAttributes.3.0"
+
+[Software\\Classes\\Msxml2.SAXAttributes.3.0] 1660099895
+#time=1d8ac641b07546c
+@="SAXAttributes 3.0"
+
+[Software\\Classes\\Msxml2.SAXAttributes.3.0\\CLSID] 1660099895
+#time=1d8ac641b0754d0
+@="{3E784A01-F3AE-4DC0-9354-9526B9370EBA}"
+
+[Software\\Classes\\Msxml2.SAXAttributes.4.0] 1660099895
+#time=1d8ac641b0a8362
+@="SAXAttributes 4.0"
+
+[Software\\Classes\\Msxml2.SAXAttributes.4.0\\CLSID] 1660099895
+#time=1d8ac641b0a85f6
+@="{88D969CA-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.SAXAttributes.6.0] 1660099895
+#time=1d8ac641b0cbd76
+@="SAXAttributes 6.0"
+
+[Software\\Classes\\Msxml2.SAXAttributes.6.0\\CLSID] 1660099895
+#time=1d8ac641b0cbea2
+@="{88D96A0E-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.SAXXMLReader] 1660099895
+#time=1d8ac641b07442c
+@="SAX XML Reader"
+
+[Software\\Classes\\Msxml2.SAXXMLReader\\CLSID] 1660099895
+#time=1d8ac641b0744f4
+@="{079AA557-4A18-424A-8EEE-E39F0A8D41B9}"
+
+[Software\\Classes\\Msxml2.SAXXMLReader\\CurVer] 1660099895
+#time=1d8ac641b074288
+@="Msxml2.SAXXMLReader.3.0"
+
+[Software\\Classes\\Msxml2.SAXXMLReader.3.0] 1660099895
+#time=1d8ac641b073df6
+@="SAX XML Reader 3.0"
+
+[Software\\Classes\\Msxml2.SAXXMLReader.3.0\\CLSID] 1660099895
+#time=1d8ac641b073e5a
+@="{3124C396-FB13-4836-A6AD-1317F1713688}"
+
+[Software\\Classes\\Msxml2.SAXXMLReader.4.0] 1660099895
+#time=1d8ac641b0a6f1c
+@="SAX XML Reader 4.0"
+
+[Software\\Classes\\Msxml2.SAXXMLReader.4.0\\CLSID] 1660099895
+#time=1d8ac641b0a6f8a
+@="{7C6E29BC-8B8B-4C3D-859E-AF6CD158BE0F}"
+
+[Software\\Classes\\Msxml2.SAXXMLReader.6.0] 1660099895
+#time=1d8ac641b0cb27c
+@="SAX XML Reader 6.0"
+
+[Software\\Classes\\Msxml2.SAXXMLReader.6.0\\CLSID] 1660099895
+#time=1d8ac641b0cb2d6
+@="{88D96A0C-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.ServerXMLHTTP] 1660099895
+#time=1d8ac641b0723b6
+@="Server XML HTTP"
+
+[Software\\Classes\\Msxml2.ServerXMLHTTP\\CLSID] 1660099895
+#time=1d8ac641b072492
+@="{AFBA6B42-5692-48EA-8141-DC517DCF0EF1}"
+
+[Software\\Classes\\Msxml2.ServerXMLHTTP\\CurVer] 1660099895
+#time=1d8ac641b072258
+@="Msxml2.ServerXMLHTTP.3.0"
+
+[Software\\Classes\\Msxml2.ServerXMLHTTP.3.0] 1660099895
+#time=1d8ac641b071eca
+@="Server XML HTTP 3.0"
+
+[Software\\Classes\\Msxml2.ServerXMLHTTP.3.0\\CLSID] 1660099895
+#time=1d8ac641b071f2e
+@="{AFB40FFD-B609-40A3-9828-F88BBE11E4E3}"
+
+[Software\\Classes\\Msxml2.ServerXMLHTTP.4.0] 1660099895
+#time=1d8ac641b0a621a
+@="Server XML HTTP 4.0"
+
+[Software\\Classes\\Msxml2.ServerXMLHTTP.4.0\\CLSID] 1660099895
+#time=1d8ac641b0a629c
+@="{88D969C6-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.ServerXMLHTTP.6.0] 1660099895
+#time=1d8ac641b0cc50a
+@="Server XML HTTP 6.0"
+
+[Software\\Classes\\Msxml2.ServerXMLHTTP.6.0\\CLSID] 1660099895
+#time=1d8ac641b0cc564
+@="{88D96A0B-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.XMLHTTP] 1660099895
+#time=1d8ac641b071a2e
+@="XML HTTP"
+
+[Software\\Classes\\Msxml2.XMLHTTP\\CLSID] 1660099895
+#time=1d8ac641b071ae2
+@="{F6D90F16-9C73-11D3-B32E-00C04F990BB4}"
+
+[Software\\Classes\\Msxml2.XMLHTTP\\CurVer] 1660099895
+#time=1d8ac641b0718d0
+@="Msxml2.XMLHTTP.3.0"
+
+[Software\\Classes\\Msxml2.XMLHTTP.2.6] 1660099895
+#time=1d8ac641b044344
+@="XML HTTP 2.6"
+
+[Software\\Classes\\Msxml2.XMLHTTP.2.6\\CLSID] 1660099895
+#time=1d8ac641b0443a8
+@="{F5078F1E-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.XMLHTTP.3.0] 1660099895
+#time=1d8ac641b071542
+@="XML HTTP 3.0"
+
+[Software\\Classes\\Msxml2.XMLHTTP.3.0\\CLSID] 1660099895
+#time=1d8ac641b07159c
+@="{F5078F35-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.XMLHTTP.4.0] 1660099895
+#time=1d8ac641b0a5ebe
+@="XML HTTP 4.0"
+
+[Software\\Classes\\Msxml2.XMLHTTP.4.0\\CLSID] 1660099895
+#time=1d8ac641b0a5f40
+@="{88D969C5-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.XMLHTTP.6.0] 1660099895
+#time=1d8ac641b0cc2da
+@="XML HTTP 6.0"
+
+[Software\\Classes\\Msxml2.XMLHTTP.6.0\\CLSID] 1660099895
+#time=1d8ac641b0cc33e
+@="{88D96A0A-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.XMLParser] 1660099895
+#time=1d8ac641b079e04
+@="XML Parser 3.0"
+
+[Software\\Classes\\Msxml2.XMLParser\\CLSID] 1660099895
+#time=1d8ac641b079ec2
+@="{F5078F31-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.XMLParser\\CurVer] 1660099895
+#time=1d8ac641b079fc6
+@="Msxml2.XMLParser.3.0"
+
+[Software\\Classes\\Msxml2.XMLParser.2.6] 1660099895
+#time=1d8ac641b078072
+@="XML Parser 2.6"
+
+[Software\\Classes\\Msxml2.XMLParser.2.6\\CLSID] 1660099895
+#time=1d8ac641b0780cc
+@="{F5078F20-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.XMLParser.3.0] 1660099895
+#time=1d8ac641b079c38
+@="XML Parser 3.0"
+
+[Software\\Classes\\Msxml2.XMLParser.3.0\\CLSID] 1660099895
+#time=1d8ac641b079c9c
+@="{F5078F31-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.XMLSchemaCache] 1660099895
+#time=1d8ac641b072e60
+@="XML Schema Cache"
+
+[Software\\Classes\\Msxml2.XMLSchemaCache\\CLSID] 1660099895
+#time=1d8ac641b072f1e
+@="{373984C9-B845-449B-91E7-45AC83036ADE}"
+
+[Software\\Classes\\Msxml2.XMLSchemaCache\\CurVer] 1660099895
+#time=1d8ac641b072d02
+@="Msxml2.XMLSchemaCache.3.0"
+
+[Software\\Classes\\Msxml2.XMLSchemaCache.2.6] 1660099895
+#time=1d8ac641b044b78
+@="XML Schema Cache 2.6"
+
+[Software\\Classes\\Msxml2.XMLSchemaCache.2.6\\CLSID] 1660099895
+#time=1d8ac641b044bf0
+@="{F5078F1D-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.XMLSchemaCache.3.0] 1660099895
+#time=1d8ac641b07287a
+@="XML Schema Cache 3.0"
+
+[Software\\Classes\\Msxml2.XMLSchemaCache.3.0\\CLSID] 1660099895
+#time=1d8ac641b0728d4
+@="{F5078F34-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.XMLSchemaCache.4.0] 1660099895
+#time=1d8ac641b0a6666
+@="XML Schema Cache 4.0"
+
+[Software\\Classes\\Msxml2.XMLSchemaCache.4.0\\CLSID] 1660099895
+#time=1d8ac641b0a67e2
+@="{88D969C2-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.XMLSchemaCache.6.0] 1660099895
+#time=1d8ac641b0cb4b6
+@="XML Schema Cache 6.0"
+
+[Software\\Classes\\Msxml2.XMLSchemaCache.6.0\\CLSID] 1660099895
+#time=1d8ac641b0cb510
+@="{88D96A07-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.XSLTemplate] 1660099895
+#time=1d8ac641b0738f6
+@="XSL Template"
+
+[Software\\Classes\\Msxml2.XSLTemplate\\CLSID] 1660099895
+#time=1d8ac641b0739be
+@="{2933BF94-7B36-11D2-B20E-00C04F983E60}"
+
+[Software\\Classes\\Msxml2.XSLTemplate\\CurVer] 1660099895
+#time=1d8ac641b073784
+@="Msxml2.XSLTemplate.3.0"
+
+[Software\\Classes\\Msxml2.XSLTemplate.2.6] 1660099895
+#time=1d8ac641b04515e
+@="XSL Template 2.6"
+
+[Software\\Classes\\Msxml2.XSLTemplate.2.6\\CLSID] 1660099895
+#time=1d8ac641b0451c2
+@="{F5078F21-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.XSLTemplate.3.0] 1660099895
+#time=1d8ac641b073374
+@="XSL Template 3.0"
+
+[Software\\Classes\\Msxml2.XSLTemplate.3.0\\CLSID] 1660099895
+#time=1d8ac641b0733ec
+@="{F5078F36-C551-11D3-89B9-0000F81FE221}"
+
+[Software\\Classes\\Msxml2.XSLTemplate.4.0] 1660099895
+#time=1d8ac641b0a6a62
+@="XSL Template 4.0"
+
+[Software\\Classes\\Msxml2.XSLTemplate.4.0\\CLSID] 1660099895
+#time=1d8ac641b0a6c42
+@="{88D969C3-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\Msxml2.XSLTemplate.6.0] 1660099895
+#time=1d8ac641b0cc08c
+@="XSL Template 6.0"
+
+[Software\\Classes\\Msxml2.XSLTemplate.6.0\\CLSID] 1660099895
+#time=1d8ac641b0cc104
+@="{88D96A08-F192-11D4-A65F-0040963251E5}"
+
+[Software\\Classes\\new] 1660099896
+#time=1d8ac641b4c7b6e
+@="New Moniker"
+
+[Software\\Classes\\new\\CLSID] 1660099896
+#time=1d8ac641b4c7bd2
+@="{ECABAFC6-7F19-11D2-978E-0000F8757E2A}"
+
+[Software\\Classes\\NODEMGR.MMCVersionInfo] 1660099896
+#time=1d8ac641b8506f0
+@="MMCVersionInfo 1.0 Object"
+
+[Software\\Classes\\NODEMGR.MMCVersionInfo\\CLSID] 1660099896
+#time=1d8ac641b850650
+@="{D6FEDB1D-CF21-4BD9-AF3B-C5468E9C6684}"
+
+[Software\\Classes\\NODEMGR.MMCVersionInfo\\CurVer] 1660099896
+#time=1d8ac641b85074a
+@="NODEMGR.MMCVersionInfo.1"
+
+[Software\\Classes\\NODEMGR.MMCVersionInfo.1] 1660099896
+#time=1d8ac641b850236
+@="MMCVersionInfo 1.0 Object"
+
+[Software\\Classes\\NODEMGR.MMCVersionInfo.1\\CLSID] 1660099896
+#time=1d8ac641b850290
+@="{D6FEDB1D-CF21-4BD9-AF3B-C5468E9C6684}"
+
+[Software\\Classes\\OldFont] 1660099896
+#time=1d8ac641ba453ca
+@="Obsolete Font"
+
+[Software\\Classes\\OldFont\\CLSID] 1660099896
+#time=1d8ac641ba45424
+@="{46763EE0-CAB2-11CE-8C20-00AA0051E5D4}"
+
+[Software\\Classes\\Package] 1660099896
+#time=1d8ac641ba749fe
+@="Package"
+
+[Software\\Classes\\Package\\CLSID] 1660099896
+#time=1d8ac641ba74a62
+@="{F20DA720-C02F-11CE-927B-0800095AE340}"
+
+[Software\\Classes\\Pathname] 1660099896
+#time=1d8ac641b2ec722
+@="ADs LDAP Pathname Descriptor Object"
+
+[Software\\Classes\\Pathname\\CLSID] 1660099896
+#time=1d8ac641b2ec77c
+@="{080D0D78-F421-11D0-A36E-00C04FB950DC}"
+
+[Software\\Classes\\pdffile] 1660099897
+#time=1d8ac641c4bff94
+@="PDF Document"
+
+[Software\\Classes\\pdffile\\shell\\open\\command] 1660099897
+#time=1d8ac641c4c0282
+@="\"C:\\windows\\system32\\winebrowser.exe\" -nohome"
+
+[Software\\Classes\\pdffile\\shell\\open\\ddeexec] 1660099897
+#time=1d8ac641c4c07a0
+@="\"%1\",,-1,0,,,,"
+"NoActivateHandler"=""
+
+[Software\\Classes\\pdffile\\shell\\open\\ddeexec\\Application] 1660099897
+#time=1d8ac641c4c06ec
+@="IExplore"
+
+[Software\\Classes\\pdffile\\shell\\open\\ddeexec\\Topic] 1660099897
+#time=1d8ac641c4c0854
+@="WWW_OpenURL"
+
+[Software\\Classes\\PROTOCOLS\\Filter\\deflate] 1660099897
+#time=1d8ac641c28fabc
+@="AP Deflate Encoding/Decoding Filter"
+"CLSID"="{8f6b0360-b80d-11d0-a9b3-006097942311}"
+
+[Software\\Classes\\PROTOCOLS\\Filter\\gzip] 1660099897
+#time=1d8ac641c28feae
+@="AP Deflate Encoding/Decoding Filter"
+"CLSID"="{8f6b0360-b80d-11d0-a9b3-006097942311}"
+
+[Software\\Classes\\PROTOCOLS\\Filter\\lzdhtml] 1660099897
+#time=1d8ac641c290264
+@="AP Deflate Encoding/Decoding Filter"
+"CLSID"="{8f6b0360-b80d-11d0-a9b3-006097942311}"
+
+[Software\\Classes\\PROTOCOLS\\Handler\\cdl] 1660099897
+#time=1d8ac641c28d906
+@="CDL: Asynchronous Pluggable Protocol Handler"
+"CLSID"="{3dd53d40-7b8b-11d0-b013-00aa0059ce02}"
+
+[Software\\Classes\\PROTOCOLS\\Handler\\file] 1660099897
+#time=1d8ac641c28dd3e
+@="file:, local: Asynchronous Pluggable Protocol Handler"
+"CLSID"="{79eac9e7-baf9-11ce-8c82-00aa004ba90b}"
+
+[Software\\Classes\\PROTOCOLS\\Handler\\ftp] 1660099897
+#time=1d8ac641c28e626
+@="ftp: Asynchronous Pluggable Protocol Handler"
+"CLSID"="{79eac9e3-baf9-11ce-8c82-00aa004ba90b}"
+
+[Software\\Classes\\PROTOCOLS\\Handler\\gopher] 1660099897
+#time=1d8ac641c28ea36
+@="gopher: Asynchronous Pluggable Protocol Handler"
+"CLSID"="{79eac9e4-baf9-11ce-8c82-00aa004ba90b}"
+
+[Software\\Classes\\PROTOCOLS\\Handler\\http] 1660099897
+#time=1d8ac641c28ee0a
+@="http: Asynchronous Pluggable Protocol Handler"
+"CLSID"="{79eac9e2-baf9-11ce-8c82-00aa004ba90b}"
+
+[Software\\Classes\\PROTOCOLS\\Handler\\https] 1660099897
+#time=1d8ac641c28f1de
+@="https: Asynchronous Pluggable Protocol Handler"
+"CLSID"="{79eac9e5-baf9-11ce-8c82-00aa004ba90b}"
+
+[Software\\Classes\\PROTOCOLS\\Handler\\its] 1660099896
+#time=1d8ac641b7c2e68
+@="its: Asychronous Pluggable Protocol Handler"
+"CLSID"="{9D148291-B9C8-11D0-A4CC-0000F80149F6}"
+
+[Software\\Classes\\PROTOCOLS\\Handler\\local] 1660099897
+#time=1d8ac641c28e1bc
+@="file:, local: Asynchronous Pluggable Protocol Handler"
+"CLSID"="{79eac9e7-baf9-11ce-8c82-00aa004ba90b}"
+
+[Software\\Classes\\PROTOCOLS\\Handler\\mhtml] 1660099896
+#time=1d8ac641b7a00e8
+@="MHTML Asynchronous Pluggable Protocol Handler"
+"CLSID"="{05300401-bcbc-11d0-85e3-00c04fd85ab4}"
+
+[Software\\Classes\\PROTOCOLS\\Handler\\mk] 1660099897
+#time=1d8ac641c28f5a8
+@="mk: Asynchronous Pluggable Protocol Handler"
+"CLSID"="{79eac9e6-baf9-11ce-8c82-00aa004ba90b}"
+
+[Software\\Classes\\PROTOCOLS\\Handler\\ms-its] 1660099896
+#time=1d8ac641b7c3048
+@="ms-its: Asychronous Pluggable Protocol Handler"
+"CLSID"="{9D148291-B9C8-11D0-A4CC-0000F80149F6}"
+
+[Software\\Classes\\PROTOCOLS\\Name-Space Handler\\mk] 1660099896
+#time=1d8ac641b7c32e6
+@="NameSpace Filter for MK:@MSITStore:..."
+
+[Software\\Classes\\PROTOCOLS\\Name-Space Handler\\mk\\*] 1660099896
+#time=1d8ac641b7c3354
+"CLSID"="{9D148291-B9C8-11D0-A4CC-0000F80149F6}"
+
+[Software\\Classes\\RowPosition.RowPosition] 1660099895
+#time=1d8ac641b14d538
+@="OLE DB Row Position Library"
+
+[Software\\Classes\\RowPosition.RowPosition\\CLSID] 1660099895
+#time=1d8ac641b14d470
+@="{2048EEE6-7FA2-11D0-9E6A-00A0C9138C29}"
+
+[Software\\Classes\\RowPosition.RowPosition\\CurVer] 1660099895
+#time=1d8ac641b14d5b0
+@="RowPosition.RowPosition.1"
+
+[Software\\Classes\\RowPosition.RowPosition.1] 1660099895
+#time=1d8ac641b14d182
+@="OLE DB Row Position Library"
+
+[Software\\Classes\\RowPosition.RowPosition.1\\CLSID] 1660099895
+#time=1d8ac641b14d204
+@="{2048EEE6-7FA2-11D0-9E6A-00A0C9138C29}"
+
+[Software\\Classes\\rtffile] 1660099897
+#time=1d8ac641c4c0b38
+@="Rich Text Document"
+
+[Software\\Classes\\rtffile\\shell\\open\\command] 1660099897
+#time=1d8ac641c4c0dd6
+@="\"C:\\Program Files\\Windows NT\\Accessories\\wordpad.exe\" %1"
+
+[Software\\Classes\\rtffile\\shell\\print\\command] 1660099897
+#time=1d8ac641c4c1bc8
+@="\"C:\\Program Files\\Windows NT\\Accessories\\wordpad.exe\" /p %1"
+
+[Software\\Classes\\SAPI.SpDataKey] 1660099895
+#time=1d8ac641b0f796c
+@="Data Key"
+
+[Software\\Classes\\SAPI.SpDataKey\\CLSID] 1660099895
+#time=1d8ac641b0f78cc
+@="{D9F6EE60-58C9-458B-88E1-2F908FD7F87C}"
+
+[Software\\Classes\\SAPI.SpDataKey\\CurVer] 1660099895
+#time=1d8ac641b0f79da
+@="SAPI.SpDataKey.1"
+
+[Software\\Classes\\SAPI.SpDataKey.1] 1660099895
+#time=1d8ac641b0f7688
+@="Data Key"
+
+[Software\\Classes\\SAPI.SpDataKey.1\\CLSID] 1660099895
+#time=1d8ac641b0f76d8
+@="{D9F6EE60-58C9-458B-88E1-2F908FD7F87C}"
+
+[Software\\Classes\\SAPI.SpFileStream] 1660099895
+#time=1d8ac641b0f92b2
+@="SpFileStream"
+
+[Software\\Classes\\SAPI.SpFileStream\\CLSID] 1660099895
+#time=1d8ac641b0f9212
+@="{947812B3-2AE1-4644-BA86-9E90DED7EC91}"
+
+[Software\\Classes\\SAPI.SpFileStream\\CurVer] 1660099895
+#time=1d8ac641b0f930c
+@="SAPI.SpFileStream.1"
+
+[Software\\Classes\\SAPI.SpFileStream.1] 1660099895
+#time=1d8ac641b0f8fb0
+@="SpFileStream"
+
+[Software\\Classes\\SAPI.SpFileStream.1\\CLSID] 1660099895
+#time=1d8ac641b0f900a
+@="{947812B3-2AE1-4644-BA86-9E90DED7EC91}"
+
+[Software\\Classes\\SAPI.SpObjectToken] 1660099895
+#time=1d8ac641b0f464a
+@="Object Token"
+
+[Software\\Classes\\SAPI.SpObjectToken\\CLSID] 1660099895
+#time=1d8ac641b0f4596
+@="{EF411752-3736-4CB4-9C8C-8EF4CCB58EFE}"
+
+[Software\\Classes\\SAPI.SpObjectToken\\CurVer] 1660099895
+#time=1d8ac641b0f46ae
+@="SAPI.SpObjectToken.1"
+
+[Software\\Classes\\SAPI.SpObjectToken.1] 1660099895
+#time=1d8ac641b0f42f8
+@="Object Token"
+
+[Software\\Classes\\SAPI.SpObjectToken.1\\CLSID] 1660099895
+#time=1d8ac641b0f435c
+@="{EF411752-3736-4CB4-9C8C-8EF4CCB58EFE}"
+
+[Software\\Classes\\SAPI.SpObjectTokenCategory] 1660099895
+#time=1d8ac641b0f40a0
+@="SpObjectTokenCategory Class"
+
+[Software\\Classes\\SAPI.SpObjectTokenCategory\\CLSID] 1660099895
+#time=1d8ac641b0f3fc4
+@="{A910187F-0C7A-45AC-92CC-59EDAFB77B53}"
+
+[Software\\Classes\\SAPI.SpObjectTokenCategory\\CurVer] 1660099895
+#time=1d8ac641b0f4104
+@="SAPI.SpObjectTokenCategory.1"
+
+[Software\\Classes\\SAPI.SpObjectTokenCategory.1] 1660099895
+#time=1d8ac641b0f3cd6
+@="SpObjectTokenCategory Class"
+
+[Software\\Classes\\SAPI.SpObjectTokenCategory.1\\CLSID] 1660099895
+#time=1d8ac641b0f3d30
+@="{A910187F-0C7A-45AC-92CC-59EDAFB77B53}"
+
+[Software\\Classes\\SAPI.SpObjectTokenEnum] 1660099895
+#time=1d8ac641b0f7f0c
+@="Object Token Enumerator"
+
+[Software\\Classes\\SAPI.SpObjectTokenEnum\\CLSID] 1660099895
+#time=1d8ac641b0f7e6c
+@="{3918D75F-0ACB-41F2-B733-92AA15BCECF6}"
+
+[Software\\Classes\\SAPI.SpObjectTokenEnum\\CurVer] 1660099895
+#time=1d8ac641b0f7f5c
+@="SAPI.SpObjectTokenEnum.1"
+
+[Software\\Classes\\SAPI.SpObjectTokenEnum.1] 1660099895
+#time=1d8ac641b0f7b74
+@="Object Token Enumerator"
+
+[Software\\Classes\\SAPI.SpObjectTokenEnum.1\\CLSID] 1660099895
+#time=1d8ac641b0f7bce
+@="{3918D75F-0ACB-41F2-B733-92AA15BCECF6}"
+
+[Software\\Classes\\SAPI.SpResourceManager] 1660099895
+#time=1d8ac641b0f4be0
+@="Resource Manager"
+
+[Software\\Classes\\SAPI.SpResourceManager\\CLSID] 1660099895
+#time=1d8ac641b0f4b2c
+@="{96749373-3391-11D2-9EE3-00C04F797396}"
+
+[Software\\Classes\\SAPI.SpResourceManager\\CurVer] 1660099895
+#time=1d8ac641b0f4c9e
+@="SAPI.SpResourceManager.1"
+
+[Software\\Classes\\SAPI.SpResourceManager.1] 1660099895
+#time=1d8ac641b0f4884
+@="Resource Manager"
+
+[Software\\Classes\\SAPI.SpResourceManager.1\\CLSID] 1660099895
+#time=1d8ac641b0f48de
+@="{96749373-3391-11D2-9EE3-00C04F797396}"
+
+[Software\\Classes\\SAPI.SpStream] 1660099895
+#time=1d8ac641b0f51d0
+@="Speech Stream"
+
+[Software\\Classes\\SAPI.SpStream\\CLSID] 1660099895
+#time=1d8ac641b0f511c
+@="{715D9C59-4442-11D2-9605-00C04F8EE628}"
+
+[Software\\Classes\\SAPI.SpStream\\CurVer] 1660099895
+#time=1d8ac641b0f5234
+@="SAPI.SpStream.1"
+
+[Software\\Classes\\SAPI.SpStream.1] 1660099895
+#time=1d8ac641b0f4e7e
+@="Speech Stream"
+
+[Software\\Classes\\SAPI.SpStream.1\\CLSID] 1660099895
+#time=1d8ac641b0f4ed8
+@="{715D9C59-4442-11D2-9605-00C04F8EE628}"
+
+[Software\\Classes\\SAPI.SpVoice] 1660099895
+#time=1d8ac641b0f8dbc
+@="Speech Voice"
+
+[Software\\Classes\\SAPI.SpVoice\\CLSID] 1660099895
+#time=1d8ac641b0f8d1c
+@="{96749377-3391-11D2-9EE3-00C04F797396}"
+
+[Software\\Classes\\SAPI.SpVoice\\CurVer] 1660099895
+#time=1d8ac641b0f8e16
+@="SAPI.SpVoice.1"
+
+[Software\\Classes\\SAPI.SpVoice.1] 1660099895
+#time=1d8ac641b0f8ac4
+@="Speech Voice"
+
+[Software\\Classes\\SAPI.SpVoice.1\\CLSID] 1660099895
+#time=1d8ac641b0f8b28
+@="{96749377-3391-11D2-9EE3-00C04F797396}"
+
+[Software\\Classes\\Schedule.Service] 1660099897
+#time=1d8ac641bc73282
+@="TaskScheduler"
+
+[Software\\Classes\\Schedule.Service\\CLSID] 1660099897
+#time=1d8ac641bc731d8
+@="{0F87369F-A4E5-4CFC-BD3E-73E6154572DD}"
+
+[Software\\Classes\\Schedule.Service\\CurVer] 1660099897
+#time=1d8ac641bc732e6
+@="Schedule.Service.1"
+
+[Software\\Classes\\Schedule.Service.1] 1660099897
+#time=1d8ac641bc72ec2
+@="TaskScheduler"
+
+[Software\\Classes\\Schedule.Service.1\\CLSID] 1660099897
+#time=1d8ac641bc72f30
+@="{0F87369F-A4E5-4CFC-BD3E-73E6154572DD}"
+
+[Software\\Classes\\ScriptBridge.ScriptBridge] 1660099896
+#time=1d8ac641b8af0c4
+@="Microsoft Scriptlet Component"
+
+[Software\\Classes\\ScriptBridge.ScriptBridge\\CLSID] 1660099896
+#time=1d8ac641b8af010
+@="{AE24FDAE-03C6-11D1-8B76-0080C744F389}"
+
+[Software\\Classes\\ScriptBridge.ScriptBridge\\CurVer] 1660099896
+#time=1d8ac641b8af11e
+@="ScriptBridge.ScriptBridge.1"
+
+[Software\\Classes\\ScriptBridge.ScriptBridge.1] 1660099896
+#time=1d8ac641b8aedb8
+@="Microsoft Scriptlet Component"
+
+[Software\\Classes\\ScriptBridge.ScriptBridge.1\\CLSID] 1660099896
+#time=1d8ac641b8aee08
+@="{AE24FDAE-03C6-11D1-8B76-0080C744F389}"
+
+[Software\\Classes\\ScriptControl] 1660099896
+#time=1d8ac641b959da8
+@="ScriptControl Object"
+
+[Software\\Classes\\ScriptControl\\CLSID] 1660099896
+#time=1d8ac641b959d08
+@="{0e59f1d5-1fbe-11d0-8ff2-00a0d10038bc}"
+
+[Software\\Classes\\ScriptControl\\CurVer] 1660099896
+#time=1d8ac641b959e02
+@="MSScriptControl.ScriptControl.1"
+
+[Software\\Classes\\Scripting.Dictionary] 1660099896
+#time=1d8ac641bb587f8
+@="Scripting.Dictionary"
+
+[Software\\Classes\\Scripting.Dictionary\\CLSID] 1660099896
+#time=1d8ac641bb58866
+@="{EE09B103-97E0-11CF-978F-00A02463E06F}"
+
+[Software\\Classes\\Scripting.Encoder] 1660099896
+#time=1d8ac641bb58d0c
+@="Script Encoder Object"
+
+[Software\\Classes\\Scripting.Encoder\\CLSID] 1660099896
+#time=1d8ac641bb58d84
+@="{32DA2B15-CFED-11D1-B747-00C04FC2B085}"
+
+[Software\\Classes\\Scripting.FileSystemObject] 1660099896
+#time=1d8ac641bb58a5a
+@="FileSystem Object"
+
+[Software\\Classes\\Scripting.FileSystemObject\\CLSID] 1660099896
+#time=1d8ac641bb58ae6
+@="{0D43FE01-F093-11CF-8940-00A0C9054228}"
+
+[Software\\Classes\\Scriptlet.Behavior] 1660099896
+#time=1d8ac641b8abe74
+@="Microsoft Scriptlet Element Behavior Handler"
+
+[Software\\Classes\\Scriptlet.Behavior\\CLSID] 1660099896
+#time=1d8ac641b8abee2
+@="{5AAF51B2-B1F0-11D1-B6AB-00A0C90833E9}"
+
+[Software\\Classes\\Scriptlet.HiFiTimer] 1660099896
+#time=1d8ac641b8ab726
+@="Microsoft Scriptlet HiFiTimer Uses"
+
+[Software\\Classes\\Scriptlet.HiFiTimer\\CLSID] 1660099896
+#time=1d8ac641b8ab780
+@="{5AAF51B3-B1F0-11D1-B6AB-00A0C90833E9}"
+
+[Software\\Classes\\Scriptlet.SvrOm] 1660099896
+#time=1d8ac641b8ac658
+@="Microsoft Scriptlet svr om Uses"
+
+[Software\\Classes\\Scriptlet.SvrOm\\CLSID] 1660099896
+#time=1d8ac641b8ac734
+@="{3050F4F0-98B5-11CF-BB82-00AA00BDCE0B}"
+
+[Software\\Classes\\Scriptlet.TypeLib] 1660099896
+#time=1d8ac641bb4e7d0
+@="TypeLib"
+
+[Software\\Classes\\Scriptlet.TypeLib\\CLSID] 1660099896
+#time=1d8ac641bb4ea28
+@="{06290BD5-48AA-11D2-8432-006008C3FBFC}"
+
+[Software\\Classes\\SearchAssistantOC.SearchAssistantOC] 1660099895
+#time=1d8ac641b0dd8aa
+@="SearchAssistantOC"
+
+[Software\\Classes\\SearchAssistantOC.SearchAssistantOC\\CLSID] 1660099896
+#time=1d8ac641b7862b0
+@="{B45FF030-4447-11D2-85DE-00C04FA35C89}"
+
+[Software\\Classes\\SearchAssistantOC.SearchAssistantOC\\CurVer] 1660099895
+#time=1d8ac641b0dd90e
+@="SearchAssistantOC.SearchAssistantOC.1"
+
+[Software\\Classes\\SearchAssistantOC.SearchAssistantOC.1] 1660099895
+#time=1d8ac641b0dd562
+@="SearchAssistantOC"
+
+[Software\\Classes\\SearchAssistantOC.SearchAssistantOC.1\\CLSID] 1660099896
+#time=1d8ac641b78608a
+@="{B45FF030-4447-11D2-85DE-00C04FA35C89}"
+
+[Software\\Classes\\Shell.Application] 1660099896
+#time=1d8ac641bbcdcec
+@="Shell Automation Service"
+
+[Software\\Classes\\Shell.Application\\CLSID] 1660099896
+#time=1d8ac641bbcdc42
+@="{13709620-C279-11CE-A49E-444553540000}"
+
+[Software\\Classes\\Shell.Application\\CurVer] 1660099896
+#time=1d8ac641bbcdd64
+@="Shell.Application.1"
+
+[Software\\Classes\\Shell.Application.1] 1660099896
+#time=1d8ac641bbcd9a4
+@="Shell Automation Service"
+
+[Software\\Classes\\Shell.Application.1\\CLSID] 1660099896
+#time=1d8ac641bbcda08
+@="{13709620-C279-11CE-A49E-444553540000}"
+
+[Software\\Classes\\Shell.Explorer] 1660099896
+#time=1d8ac641b7841a4
+@="Microsoft Web Browser"
+
+[Software\\Classes\\Shell.Explorer\\CLSID] 1660099896
+#time=1d8ac641b784262
+@="{8856F961-340A-11D0-A96B-00C04FD705A2}"
+
+[Software\\Classes\\Shell.Explorer\\CurVer] 1660099896
+#time=1d8ac641b784366
+@="Shell.Explorer.2"
+
+[Software\\Classes\\Shell.Explorer.1] 1660099895
+#time=1d8ac641b0db56e
+@="Microsoft Web Browser Version 1"
+
+[Software\\Classes\\Shell.Explorer.1\\CLSID] 1660099895
+#time=1d8ac641b0db5c8
+@="{EAB22AC3-30C1-11CF-A7EB-0000C05BAE0B}"
+
+[Software\\Classes\\Shell.Explorer.2] 1660099895
+#time=1d8ac641b0dbac8
+@="Microsoft Web Browser"
+
+[Software\\Classes\\Shell.Explorer.2\\CLSID] 1660099895
+#time=1d8ac641b0dbb2c
+@="{8856F961-340A-11D0-A96B-00C04FD705A2}"
+
+[Software\\Classes\\Shell.UIHelper] 1660099895
+#time=1d8ac641b0dc8a6
+@="Microsoft Shell UI Helper"
+
+[Software\\Classes\\Shell.UIHelper\\CLSID] 1660099895
+#time=1d8ac641b0dc7f2
+@="{64AB4BB7-111E-11D1-8F79-00C04FC2FBE1}"
+
+[Software\\Classes\\Shell.UIHelper\\CurVer] 1660099895
+#time=1d8ac641b0dc900
+@="Shell.UIHelper.1"
+
+[Software\\Classes\\Shell.UIHelper.1] 1660099895
+#time=1d8ac641b0dc57c
+@="Microsoft Shell UI Helper"
+
+[Software\\Classes\\Shell.UIHelper.1\\CLSID] 1660099895
+#time=1d8ac641b0dc5d6
+@="{64AB4BB7-111E-11D1-8F79-00C04FC2FBE1}"
+
+[Software\\Classes\\ShellNameSpace.ShellNameSpace] 1660099895
+#time=1d8ac641b0dce0a
+@="Shell Name Space"
+
+[Software\\Classes\\ShellNameSpace.ShellNameSpace\\CLSID] 1660099896
+#time=1d8ac641b78578e
+@="{55136805-B2DE-11D1-B9F2-00A0C98BC547}"
+
+[Software\\Classes\\ShellNameSpace.ShellNameSpace\\CurVer] 1660099895
+#time=1d8ac641b0dce64
+@="ShellNameSpace.ShellNameSpace.1"
+
+[Software\\Classes\\ShellNameSpace.ShellNameSpace.1] 1660099895
+#time=1d8ac641b0dcae0
+@="Shell Name Space"
+
+[Software\\Classes\\ShellNameSpace.ShellNameSpace.1\\CLSID] 1660099896
+#time=1d8ac641b785572
+@="{55136805-B2DE-11D1-B9F2-00A0C98BC547}"
+
+[Software\\Classes\\StaticDib] 1660099896
+#time=1d8ac641ba17b64
+@="Picture (Device Independent Bitmap)"
+
+[Software\\Classes\\StaticDib\\CLSID] 1660099896
+#time=1d8ac641ba17bbe
+@="{00000316-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\StaticMetafile] 1660099896
+#time=1d8ac641ba1793e
+@="Picture (Metafile)"
+
+[Software\\Classes\\StaticMetafile\\CLSID] 1660099896
+#time=1d8ac641ba17998
+@="{00000315-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\StdFont] 1660099896
+#time=1d8ac641ba44cea
+@="Standard Font"
+
+[Software\\Classes\\StdFont\\CLSID] 1660099896
+#time=1d8ac641ba44d44
+@="{0BE35203-8F91-11CE-9DE3-00AA004BB851}"
+
+[Software\\Classes\\StdPicture] 1660099896
+#time=1d8ac641ba45604
+@="Standard Picture"
+
+[Software\\Classes\\StdPicture\\CLSID] 1660099896
+#time=1d8ac641ba4565e
+@="{0BE35204-8F91-11CE-9DE3-00AA004BB851}"
+
+[Software\\Classes\\txtfile] 1660099897
+#time=1d8ac641c4c2596
+@="Text Document"
+
+[Software\\Classes\\txtfile\\shell\\open\\command] 1660099897
+#time=1d8ac641c4c2924
+@="C:\\windows\\system32\\notepad.exe %1"
+
+[Software\\Classes\\txtfile\\shell\\print\\command] 1660099897
+#time=1d8ac641c4c2d20
+@="C:\\windows\\system32\\notepad.exe /p %1"
+
+[Software\\Classes\\Typelib\\{00020430-0000-0000-C000-000000000046}\\1.0] 1660099896
+#time=1d8ac641bc070e6
+@="OLE Automation"
+
+[Software\\Classes\\Typelib\\{00020430-0000-0000-C000-000000000046}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641bc06fd8
+@="C:\\windows\\system32\\stdole32.tlb"
+
+[Software\\Classes\\Typelib\\{00020430-0000-0000-C000-000000000046}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641bc07140
+@="1"
+
+[Software\\Classes\\Typelib\\{00020430-0000-0000-C000-000000000046}\\2.0] 1660099896
+#time=1d8ac641bc0160a
+@="OLE Automation"
+
+[Software\\Classes\\Typelib\\{00020430-0000-0000-C000-000000000046}\\2.0\\0\\win32] 1660099896
+#time=1d8ac641bc014f2
+@="C:\\windows\\system32\\stdole2.tlb"
+
+[Software\\Classes\\Typelib\\{00020430-0000-0000-C000-000000000046}\\2.0\\FLAGS] 1660099896
+#time=1d8ac641bc0166e
+@="0"
+
+[Software\\Classes\\Typelib\\{000C1092-0000-0000-C000-000000000046}\\1.0] 1660099896
+#time=1d8ac641b921444
+@="WindowsInstaller"
+
+[Software\\Classes\\Typelib\\{000C1092-0000-0000-C000-000000000046}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641b9212aa
+@="C:\\windows\\system32\\msi.dll"
+
+[Software\\Classes\\Typelib\\{000C1092-0000-0000-C000-000000000046}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641b9214bc
+@="0"
+
+[Software\\Classes\\Typelib\\{06290C00-48AA-11D2-8432-006008C3FBFC}\\1.0] 1660099896
+#time=1d8ac641bb4aafe
+@="Scriptlet"
+
+[Software\\Classes\\Typelib\\{06290C00-48AA-11D2-8432-006008C3FBFC}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641bb4a95a
+@="C:\\windows\\system32\\scrobj.dll"
+
+[Software\\Classes\\Typelib\\{06290C00-48AA-11D2-8432-006008C3FBFC}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641bb4ab80
+@="0"
+
+[Software\\Classes\\Typelib\\{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}\\1.0] 1660099896
+#time=1d8ac641b956234
+@="Microsoft Script Control 1.0"
+
+[Software\\Classes\\Typelib\\{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641b95613a
+@="C:\\windows\\system32\\msscript.ocx"
+
+[Software\\Classes\\Typelib\\{0E59F1D2-1FBE-11D0-8FF2-00A0D10038BC}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641b95628e
+@="0"
+
+[Software\\Classes\\Typelib\\{1C565858-F302-471E-B409-F180AA4ABEC6}\\1.0] 1660099896
+#time=1d8ac641b75c988
+@="NATUPNPLib"
+
+[Software\\Classes\\Typelib\\{1C565858-F302-471E-B409-F180AA4ABEC6}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641b75c85c
+@="C:\\windows\\system32\\hnetcfg.dll\\2"
+
+[Software\\Classes\\Typelib\\{1C565858-F302-471E-B409-F180AA4ABEC6}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641b75ca00
+@="0"
+
+[Software\\Classes\\Typelib\\{1EA4DBF0-3C3B-11CF-810C-00AA00389B71}\\1.1] 1660099896
+#time=1d8ac641ba2f386
+@="Accessibility"
+
+[Software\\Classes\\Typelib\\{1EA4DBF0-3C3B-11CF-810C-00AA00389B71}\\1.1\\0\\win32] 1660099896
+#time=1d8ac641ba2f25a
+@="C:\\windows\\system32\\oleacc.dll"
+
+[Software\\Classes\\Typelib\\{1EA4DBF0-3C3B-11CF-810C-00AA00389B71}\\1.1\\FLAGS] 1660099896
+#time=1d8ac641ba2f3fe
+@="4"
+
+[Software\\Classes\\Typelib\\{2206CEB0-19C1-11D1-89E0-00C04FD7A829}\\1.0] 1660099895
+#time=1d8ac641b1426e2
+@="MSDASC"
+
+[Software\\Classes\\Typelib\\{2206CEB0-19C1-11D1-89E0-00C04FD7A829}\\1.0\\0\\win32] 1660099895
+#time=1d8ac641b1425ca
+@="C:\\Program Files\\Common Files\\System\\OLE DB\\oledb32.dll"
+
+[Software\\Classes\\Typelib\\{2206CEB0-19C1-11D1-89E0-00C04FD7A829}\\1.0\\FLAGS] 1660099895
+#time=1d8ac641b142750
+@="0"
+
+[Software\\Classes\\Typelib\\{2A005C00-A5DE-11CF-9E66-00AA00A3F464}\\1.0] 1660099896
+#time=1d8ac641b4c81fe
+@="COMSVCSLib"
+
+[Software\\Classes\\Typelib\\{2A005C00-A5DE-11CF-9E66-00AA00A3F464}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641b4c80d2
+@="C:\\windows\\system32\\comsvcs.dll"
+
+[Software\\Classes\\Typelib\\{2A005C00-A5DE-11CF-9E66-00AA00A3F464}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641b4c8276
+@="0"
+
+[Software\\Classes\\Typelib\\{2A75196C-D9EB-4129-B803-931327F72D5C}\\2.8] 1660099895
+#time=1d8ac641b160520
+@="ADODB"
+
+[Software\\Classes\\Typelib\\{2A75196C-D9EB-4129-B803-931327F72D5C}\\2.8\\0\\win32] 1660099895
+#time=1d8ac641b1603fe
+@="C:\\Program Files\\Common Files\\System\\ADO\\msado15.dll"
+
+[Software\\Classes\\Typelib\\{2A75196C-D9EB-4129-B803-931327F72D5C}\\2.8\\FLAGS] 1660099895
+#time=1d8ac641b160584
+@="0"
+
+[Software\\Classes\\Typelib\\{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}\\4.0] 1660099896
+#time=1d8ac641b8b505a
+@="MSHTML"
+
+[Software\\Classes\\Typelib\\{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}\\4.0\\0\\win32] 1660099896
+#time=1d8ac641b8b4f4c
+@="C:\\windows\\system32\\mshtml.tlb"
+
+[Software\\Classes\\Typelib\\{3050F1C5-98B5-11CF-BB82-00AA00BDCE0B}\\4.0\\FLAGS] 1660099896
+#time=1d8ac641b8b50be
+@="0"
+
+[Software\\Classes\\Typelib\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B185}\\1.0] 1660099897
+#time=1d8ac641bcd7cd2
+@="Microsoft VBScript Globals"
+
+[Software\\Classes\\Typelib\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B185}\\1.0\\0\\win32] 1660099897
+#time=1d8ac641bcd7bb0
+@="C:\\windows\\system32\\vbscript.dll"
+
+[Software\\Classes\\Typelib\\{3EEF9758-35FC-11D1-8CE4-00C04FC2B185}\\1.0\\FLAGS] 1660099897
+#time=1d8ac641bcd7d36
+@="0"
+
+[Software\\Classes\\Typelib\\{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}\\1.0] 1660099896
+#time=1d8ac641b7c9808
+@="JSGlobal"
+
+[Software\\Classes\\Typelib\\{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641b7c96fa
+@="C:\\windows\\system32\\jscript.dll"
+
+[Software\\Classes\\Typelib\\{3EEF9759-35FC-11D1-8CE4-00C04FC2B085}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641b7c986c
+@="0"
+
+[Software\\Classes\\Typelib\\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\\1.0] 1660099897
+#time=1d8ac641bcd8e98
+@="Microsoft VBScript Regular Expressions 1.0"
+
+[Software\\Classes\\Typelib\\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\\1.0\\0\\win32] 1660099897
+#time=1d8ac641bcd8d94
+@="C:\\windows\\system32\\vbscript.dll\\2"
+
+[Software\\Classes\\Typelib\\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\\1.0\\FLAGS] 1660099897
+#time=1d8ac641bcd8efc
+@="0"
+
+[Software\\Classes\\Typelib\\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\\5.5] 1660099897
+#time=1d8ac641bcda5cc
+@="Microsoft VBScript Regular Expressions 5.5"
+
+[Software\\Classes\\Typelib\\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\\5.5\\0\\win32] 1660099897
+#time=1d8ac641bcda4b4
+@="C:\\windows\\system32\\vbscript.dll\\3"
+
+[Software\\Classes\\Typelib\\{3F4DACA7-160D-11D2-A8E9-00104B365C9F}\\5.5\\FLAGS] 1660099897
+#time=1d8ac641bcda626
+@="0"
+
+[Software\\Classes\\Typelib\\{420B2830-E718-11CF-893D-00A0C9054228}\\1.0] 1660099896
+#time=1d8ac641bb52b8c
+@="Scripting"
+
+[Software\\Classes\\Typelib\\{420B2830-E718-11CF-893D-00A0C9054228}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641bb52a60
+@="C:\\windows\\system32\\scrrun.dll"
+
+[Software\\Classes\\Typelib\\{420B2830-E718-11CF-893D-00A0C9054228}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641bb52bfa
+@="0"
+
+[Software\\Classes\\Typelib\\{44EC0535-400F-11D0-9DCD-00A0C90391D3}\\1.0] 1660099896
+#time=1d8ac641b4498ea
+@="ATL 2.0 Type Library"
+
+[Software\\Classes\\Typelib\\{44EC0535-400F-11D0-9DCD-00A0C90391D3}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641b45d85e
+@="C:\\windows\\system32\\atl90.dll"
+
+[Software\\Classes\\Typelib\\{44EC0535-400F-11D0-9DCD-00A0C90391D3}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641b449b74
+@="0"
+
+[Software\\Classes\\Typelib\\{4F48A59C-942D-4F3C-83C9-4EFFE84E4959}\\1.0] 1660099896
+#time=1d8ac641b71f042
+@="gameux public 1.0 Type Library"
+
+[Software\\Classes\\Typelib\\{4F48A59C-942D-4F3C-83C9-4EFFE84E4959}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641b71ef34
+@="C:\\windows\\system32\\gameux.dll"
+
+[Software\\Classes\\Typelib\\{4F48A59C-942D-4F3C-83C9-4EFFE84E4959}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641b71f0a6
+@="0"
+
+[Software\\Classes\\Typelib\\{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}\\1.0] 1660099896
+#time=1d8ac641bbbea30
+@="Shell32"
+
+[Software\\Classes\\Typelib\\{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641bbbe7ce
+@="C:\\windows\\system32\\shell32.dll"
+
+[Software\\Classes\\Typelib\\{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641bbbf3ea
+@="0"
+
+[Software\\Classes\\Typelib\\{565783C6-CB41-11D1-8B02-00600806D9B6}\\1.2] 1660099895
+#time=1d8ac641b0ff8ec
+@="Microsoft WMI Scripting V1.2 Library"
+
+[Software\\Classes\\Typelib\\{565783C6-CB41-11D1-8B02-00600806D9B6}\\1.2\\0\\win32] 1660099895
+#time=1d8ac641b0ff7f2
+@="C:\\windows\\system32\\wbem\\wbemdisp.dll"
+
+[Software\\Classes\\Typelib\\{565783C6-CB41-11D1-8B02-00600806D9B6}\\1.2\\FLAGS] 1660099895
+#time=1d8ac641b0ff93c
+@="0"
+
+[Software\\Classes\\Typelib\\{56A868B0-0AD4-11CE-B03A-0020AF0BA770}\\1.0] 1660099896
+#time=1d8ac641bac27da
+@="QuartzTypeLib"
+
+[Software\\Classes\\Typelib\\{56A868B0-0AD4-11CE-B03A-0020AF0BA770}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641bac26c2
+@="C:\\windows\\system32\\quartz.dll"
+
+[Software\\Classes\\Typelib\\{56A868B0-0AD4-11CE-B03A-0020AF0BA770}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641bac283e
+@="0"
+
+[Software\\Classes\\Typelib\\{5A6F1EBD-2DB1-11D0-8C39-00C04FD9126B}\\1.0] 1660099896
+#time=1d8ac641baa0d4c
+@="PStore 1.0 Type Library"
+
+[Software\\Classes\\Typelib\\{5A6F1EBD-2DB1-11D0-8C39-00C04FD9126B}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641baa0c2a
+@="C:\\windows\\system32\\pstorec.dll"
+
+[Software\\Classes\\Typelib\\{5A6F1EBD-2DB1-11D0-8C39-00C04FD9126B}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641baa0db0
+@="0"
+
+[Software\\Classes\\Typelib\\{662901FC-6951-4854-9EB2-D9A2570F2B2E}\\5.1] 1660099897
+#time=1d8ac641bdf05a6
+@="Microsoft WinHTTP Services, version 5.1"
+
+[Software\\Classes\\Typelib\\{662901FC-6951-4854-9EB2-D9A2570F2B2E}\\5.1\\0\\win32] 1660099897
+#time=1d8ac641bdf045c
+@="C:\\windows\\system32\\winhttp.dll"
+
+[Software\\Classes\\Typelib\\{662901FC-6951-4854-9EB2-D9A2570F2B2E}\\5.1\\FLAGS] 1660099897
+#time=1d8ac641bdf0614
+@="0"
+
+[Software\\Classes\\Typelib\\{683364A1-B37D-11D1-ADC5-006008A5848C}\\1.0] 1660099896
+#time=1d8ac641b5b1bd8
+@="DHTMLEDLib"
+
+[Software\\Classes\\Typelib\\{683364A1-B37D-11D1-ADC5-006008A5848C}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641b5b1ab6
+@="C:\\windows\\system32\\dhtmled.ocx"
+
+[Software\\Classes\\Typelib\\{683364A1-B37D-11D1-ADC5-006008A5848C}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641b5b1c3c
+@="0"
+
+[Software\\Classes\\Typelib\\{6BF52A50-394A-11D3-B153-00C04F79FAA6}\\1.0] 1660099897
+#time=1d8ac641be3be02
+@="Windows Media Player"
+
+[Software\\Classes\\Typelib\\{6BF52A50-394A-11D3-B153-00C04F79FAA6}\\1.0\\0\\win32] 1660099897
+#time=1d8ac641be3bcf4
+@="C:\\windows\\system32\\wmp.dll"
+
+[Software\\Classes\\Typelib\\{6BF52A50-394A-11D3-B153-00C04F79FAA6}\\1.0\\FLAGS] 1660099897
+#time=1d8ac641be3be66
+@="0"
+
+[Software\\Classes\\Typelib\\{8CC497C9-A1DF-11CE-8098-00AA0047BE5D}\\1.0] 1660099896
+#time=1d8ac641bb01624
+@="tom"
+
+[Software\\Classes\\Typelib\\{8CC497C9-A1DF-11CE-8098-00AA0047BE5D}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641bb0150c
+@="C:\\windows\\system32\\riched20.dll"
+
+[Software\\Classes\\Typelib\\{8CC497C9-A1DF-11CE-8098-00AA0047BE5D}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641bb01688
+@="0"
+
+[Software\\Classes\\Typelib\\{97D25DB0-0363-11CF-ABC4-02608C9E7553}\\1.0] 1660099896
+#time=1d8ac641b2edb04
+@="Active DS Type Library"
+
+[Software\\Classes\\Typelib\\{97D25DB0-0363-11CF-ABC4-02608C9E7553}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641b2ed9f6
+@="C:\\windows\\system32\\activeds.tlb"
+
+[Software\\Classes\\Typelib\\{97D25DB0-0363-11CF-ABC4-02608C9E7553}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641b2edb68
+@="0"
+
+[Software\\Classes\\Typelib\\{9EECDD85-B715-4188-8A72-61159ABDB8C4}\\1.0] 1660099896
+#time=1d8ac641b84f610
+@="MMCVersionLib"
+
+[Software\\Classes\\Typelib\\{9EECDD85-B715-4188-8A72-61159ABDB8C4}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641b84f50c
+@="C:\\windows\\system32\\mmcndmgr.dll"
+
+[Software\\Classes\\Typelib\\{9EECDD85-B715-4188-8A72-61159ABDB8C4}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641b84f674
+@="0"
+
+[Software\\Classes\\Typelib\\{ADB880A2-D8FF-11CF-9377-00AA003B7A11}\\4.0] 1660099896
+#time=1d8ac641b74239e
+@="HHCtrl 4.0 Type Library"
+
+[Software\\Classes\\Typelib\\{ADB880A2-D8FF-11CF-9377-00AA003B7A11}\\4.0\\0\\win32] 1660099896
+#time=1d8ac641b74222c
+@="C:\\windows\\system32\\hhctrl.ocx"
+
+[Software\\Classes\\Typelib\\{ADB880A2-D8FF-11CF-9377-00AA003B7A11}\\4.0\\FLAGS] 1660099896
+#time=1d8ac641b742416
+@="0"
+
+[Software\\Classes\\Typelib\\{B596CC9F-56E5-419E-A622-E01BB457431E}\\2.0] 1660099897
+#time=1d8ac641be9a312
+@="WUAPI 2.0 Type Library"
+
+[Software\\Classes\\Typelib\\{B596CC9F-56E5-419E-A622-E01BB457431E}\\2.0\\0\\win32] 1660099897
+#time=1d8ac641be9a218
+@="C:\\windows\\system32\\wuapi.dll"
+
+[Software\\Classes\\Typelib\\{B596CC9F-56E5-419E-A622-E01BB457431E}\\2.0\\FLAGS] 1660099897
+#time=1d8ac641be9a36c
+@="0"
+
+[Software\\Classes\\Typelib\\{BEF6E001-A874-101A-8BBA-00AA00300CAB}\\2.0] 1660099896
+#time=1d8ac641ba56f1c
+@="Standard OLE Types"
+
+[Software\\Classes\\Typelib\\{BEF6E001-A874-101A-8BBA-00AA00300CAB}\\2.0\\0\\win32] 1660099896
+#time=1d8ac641ba56df0
+@="C:\\windows\\system32\\olepro32.dll"
+
+[Software\\Classes\\Typelib\\{BEF6E001-A874-101A-8BBA-00AA00300CAB}\\2.0\\FLAGS] 1660099896
+#time=1d8ac641ba56f8a
+@="0"
+
+[Software\\Classes\\Typelib\\{C866CA3A-32F7-11D2-9602-00C04F8EE628}\\5.4] 1660099895
+#time=1d8ac641b0e54e2
+@="Speech Object Library"
+
+[Software\\Classes\\Typelib\\{C866CA3A-32F7-11D2-9602-00C04F8EE628}\\5.4\\0\\win32] 1660099895
+#time=1d8ac641b0e53de
+@="C:\\windows\\system32\\Speech\\Common\\sapi.dll"
+
+[Software\\Classes\\Typelib\\{C866CA3A-32F7-11D2-9602-00C04F8EE628}\\5.4\\FLAGS] 1660099895
+#time=1d8ac641b0e5546
+@="0"
+
+[Software\\Classes\\Typelib\\{D63E0CE2-A0A2-11D0-9C02-00C04FC99C8E}\\2.0] 1660099895
+#time=1d8ac641b024968
+@="Microsoft XML, v2.0"
+
+[Software\\Classes\\Typelib\\{D63E0CE2-A0A2-11D0-9C02-00C04FC99C8E}\\2.0\\0\\win32] 1660099895
+#time=1d8ac641b024850
+@="C:\\windows\\system32\\msxml.dll"
+
+[Software\\Classes\\Typelib\\{D63E0CE2-A0A2-11D0-9C02-00C04FC99C8E}\\2.0\\FLAGS] 1660099895
+#time=1d8ac641b0249cc
+@="0"
+
+[Software\\Classes\\Typelib\\{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}\\1.0] 1660099896
+#time=1d8ac641b753f4a
+@="NetFwPublicTypeLib"
+
+[Software\\Classes\\Typelib\\{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}\\1.0\\0\\win32] 1660099896
+#time=1d8ac641b753df6
+@="C:\\windows\\system32\\hnetcfg.dll"
+
+[Software\\Classes\\Typelib\\{DB4F3345-3EF8-45ED-B976-25A6D3B81B71}\\1.0\\FLAGS] 1660099896
+#time=1d8ac641b753fb8
+@="0"
+
+[Software\\Classes\\Typelib\\{E34CB9F1-C7F7-424C-BE29-027DCC09363A}\\1.0] 1660099897
+#time=1d8ac641bc594ae
+@="TaskScheduler"
+
+[Software\\Classes\\Typelib\\{E34CB9F1-C7F7-424C-BE29-027DCC09363A}\\1.0\\0\\win32] 1660099897
+#time=1d8ac641bc589aa
+@="C:\\windows\\system32\\taskschd.dll"
+
+[Software\\Classes\\Typelib\\{E34CB9F1-C7F7-424C-BE29-027DCC09363A}\\1.0\\FLAGS] 1660099897
+#time=1d8ac641bc59580
+@="0"
+
+[Software\\Classes\\Typelib\\{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}\\1.1] 1660099895
+#time=1d8ac641b0d178a
+@="Microsoft Internet Controls"
+
+[Software\\Classes\\Typelib\\{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}\\1.1\\0\\win32] 1660099896
+#time=1d8ac641b779d76
+@="C:\\windows\\system32\\ieframe.dll"
+
+[Software\\Classes\\Typelib\\{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}\\1.1\\FLAGS] 1660099895
+#time=1d8ac641b0d17da
+@="0"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\2.6] 1660099895
+#time=1d8ac641b034fa2
+@="Microsoft XML, v2.6"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\2.6\\0\\win32] 1660099895
+#time=1d8ac641b034e6c
+@="C:\\windows\\system32\\msxml2.dll"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\2.6\\FLAGS] 1660099895
+#time=1d8ac641b035010
+@="0"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\3.0] 1660099895
+#time=1d8ac641b04b1a8
+@="Microsoft XML, v3.0"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\3.0\\0\\win32] 1660099895
+#time=1d8ac641b04b07c
+@="C:\\windows\\system32\\msxml3.dll"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\3.0\\FLAGS] 1660099895
+#time=1d8ac641b04b20c
+@="0"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\4.0] 1660099895
+#time=1d8ac641b081762
+@="Microsoft XML, v4.0"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\4.0\\0\\win32] 1660099895
+#time=1d8ac641b081654
+@="C:\\windows\\system32\\msxml4.dll"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\4.0\\FLAGS] 1660099895
+#time=1d8ac641b0817c6
+@="0"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\6.0] 1660099895
+#time=1d8ac641b0aea8c
+@="Microsoft XML, v6.0"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\6.0\\0\\win32] 1660099895
+#time=1d8ac641b0ae8e8
+@="C:\\windows\\system32\\msxml6.dll"
+
+[Software\\Classes\\Typelib\\{F5078F18-C551-11D3-89B9-0000F81FE221}\\6.0\\FLAGS] 1660099895
+#time=1d8ac641b0aeafa
+@="0"
+
+[Software\\Classes\\Typelib\\{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}\\1.0] 1660099897
+#time=1d8ac641be7e036
+@="Windows Script Host Object Model"
+
+[Software\\Classes\\Typelib\\{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}\\1.0\\0\\win32] 1660099897
+#time=1d8ac641be7def6
+@="C:\\windows\\system32\\wshom.ocx"
+
+[Software\\Classes\\Typelib\\{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}\\1.0\\FLAGS] 1660099897
+#time=1d8ac641be7e0a4
+@="0"
+
+[Software\\Classes\\VBS] 1660099897
+#time=1d8ac641bce3384
+@="VB Script Language"
+
+[Software\\Classes\\VBS\\CLSID] 1660099897
+#time=1d8ac641bce3280
+@="{B54F3741-5B07-11CF-A4B0-00AA004A55E8}"
+
+[Software\\Classes\\VBS\\OLEScript] 1660099897
+#time=1d8ac641bce3384
+
+[Software\\Classes\\VBS Author] 1660099897
+#time=1d8ac641bce3776
+@="VB Script Language Authoring"
+
+[Software\\Classes\\VBS Author\\CLSID] 1660099897
+#time=1d8ac641bce36a4
+@="{B54F3742-5B07-11CF-A4B0-00AA004A55E8}"
+
+[Software\\Classes\\VBS Author\\OLEScript] 1660099897
+#time=1d8ac641bce3776
+
+[Software\\Classes\\VBScript] 1660099897
+#time=1d8ac641bce3a3c
+@="VB Script Language"
+
+[Software\\Classes\\VBScript\\CLSID] 1660099897
+#time=1d8ac641bcde44c
+@="{B54F3741-5B07-11CF-A4B0-00AA004A55E8}"
+
+[Software\\Classes\\VBScript\\OLEScript] 1660099897
+#time=1d8ac641bce3a3c
+
+[Software\\Classes\\VBScript Author] 1660099897
+#time=1d8ac641bce3c30
+@="VB Script Language Authoring"
+
+[Software\\Classes\\VBScript Author\\CLSID] 1660099897
+#time=1d8ac641bcde67c
+@="{B54F3742-5B07-11CF-A4B0-00AA004A55E8}"
+
+[Software\\Classes\\VBScript Author\\OLEScript] 1660099897
+#time=1d8ac641bce3c30
+
+[Software\\Classes\\VBScript.Encode] 1660099897
+#time=1d8ac641bce3dde
+@="VB Script Language Encoding"
+
+[Software\\Classes\\VBScript.Encode\\CLSID] 1660099897
+#time=1d8ac641bcde8ac
+@="{B54F3743-5B07-11CF-A4B0-00AA004A55E8}"
+
+[Software\\Classes\\VBScript.Encode\\OLEScript] 1660099897
+#time=1d8ac641bce3dde
+
+[Software\\Classes\\VBScript.RegExp] 1660099897
+#time=1d8ac641bce3fa0
+@="VBScript Regular Expression"
+
+[Software\\Classes\\VBScript.RegExp\\CLSID] 1660099897
+#time=1d8ac641bcde01e
+@="{3F4DACA4-160D-11D2-A8E9-00104B365C9F}"
+
+[Software\\Classes\\VBScript.RegExp\\OLEScript] 1660099897
+#time=1d8ac641bce3fa0
+
+[Software\\Classes\\VBSFile] 1660099897
+#time=1d8ac641bce47fc
+@="VBScript Script File"
+
+[Software\\Classes\\VBSFile\\ScriptEngine] 1660099897
+#time=1d8ac641bce4694
+@="VBScript"
+
+[Software\\Classes\\VBSFile\\Shell] 1660099897
+#time=1d8ac641bce565c
+@="Open"
+
+[Software\\Classes\\VBSFile\\Shell\\Edit\\Command] 1660099897
+#time=1d8ac641bce4e28
+@="\"%SystemRoot%\\system32\\notepad.exe\" %1"
+
+[Software\\Classes\\VBSFile\\Shell\\Open\\Command] 1660099897
+#time=1d8ac641bce5242
+@="\"%SystemRoot%\\system32\\wscript.exe\" \"%1\" %*"
+
+[Software\\Classes\\VBSFile\\Shell\\Open2\\Command] 1660099897
+#time=1d8ac641bce5512
+@="\"%SystemRoot%\\system32\\cscript.exe\" \"%1\" %*"
+
+[Software\\Classes\\VBSFile\\Shell\\Print\\Command] 1660099897
+#time=1d8ac641bce5756
+@="\"%SystemRoot%\\system32\\notepad.exe\" /p %1"
+
+[Software\\Classes\\WbemScripting.SWbemLocator] 1660099895
+#time=1d8ac641b105242
+@="SWbemLocator"
+
+[Software\\Classes\\WbemScripting.SWbemLocator\\CLSID] 1660099895
+#time=1d8ac641b1051a2
+@="{76A64158-CB41-11D1-8B02-00600806D9B6}"
+
+[Software\\Classes\\WbemScripting.SWbemLocator\\CurVer] 1660099895
+#time=1d8ac641b105292
+@="WbemScripting.SWbemLocator.1"
+
+[Software\\Classes\\WbemScripting.SWbemLocator.1] 1660099895
+#time=1d8ac641b104f54
+@="SWbemLocator"
+
+[Software\\Classes\\WbemScripting.SWbemLocator.1\\CLSID] 1660099895
+#time=1d8ac641b104fa4
+@="{76A64158-CB41-11D1-8B02-00600806D9B6}"
+
+[Software\\Classes\\WiaDevMgr] 1660099897
+#time=1d8ac641bd5baaa
+@="WIA Device Manager"
+
+[Software\\Classes\\WiaDevMgr\\CLSID] 1660099897
+#time=1d8ac641bd5b9ba
+@="{A1F4E726-8CF1-11D1-BF92-0060081ED811}"
+
+[Software\\Classes\\WiaDevMgr\\CurVer] 1660099897
+#time=1d8ac641bd5bb36
+@="WiaDevMgr.1"
+
+[Software\\Classes\\WiaDevMgr.1] 1660099897
+#time=1d8ac641bd5b5fa
+@="WIA Device Manager"
+
+[Software\\Classes\\WiaDevMgr.1\\CLSID] 1660099897
+#time=1d8ac641bd5b686
+@="{A1F4E726-8CF1-11D1-BF92-0060081ED811}"
+
+[Software\\Classes\\WindowsInstaller.Installer] 1660099896
+#time=1d8ac641b92a1de
+@="Microsoft Windows Installer"
+
+[Software\\Classes\\WindowsInstaller.Installer\\CLSID] 1660099896
+#time=1d8ac641b92a242
+@="{000C1090-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\WindowsInstaller.Message] 1660099896
+#time=1d8ac641b929f9a
+@="Microsoft Windows Installer Message RPC"
+
+[Software\\Classes\\WindowsInstaller.Message\\CLSID] 1660099896
+#time=1d8ac641b929ffe
+@="{000C101D-0000-0000-C000-000000000046}"
+
+[Software\\Classes\\WINEDBROWPRX.AsProxy] 1660099895
+#time=1d8ac641b15ac74
+@="Wine OLE DB Row Proxy"
+
+[Software\\Classes\\WINEDBROWPRX.AsProxy\\CLSID] 1660099895
+#time=1d8ac641b15abb6
+@="{38248179-CF6D-11DE-ABE5-000C2916D865}"
+
+[Software\\Classes\\WINEDBROWPRX.AsProxy\\CurVer] 1660099895
+#time=1d8ac641b15acd8
+@="WINEDBROWPRX.AsProxy.1"
+
+[Software\\Classes\\WINEDBROWPRX.AsProxy.1] 1660099895
+#time=1d8ac641b15a8e6
+@="Wine OLE DB Row Proxy"
+
+[Software\\Classes\\WINEDBROWPRX.AsProxy.1\\CLSID] 1660099895
+#time=1d8ac641b15a94a
+@="{38248179-CF6D-11DE-ABE5-000C2916D865}"
+
+[Software\\Classes\\WINEDBROWPRX.AsServer] 1660099895
+#time=1d8ac641b15a67a
+@="Wine OLE DB Row Server"
+
+[Software\\Classes\\WINEDBROWPRX.AsServer\\CLSID] 1660099895
+#time=1d8ac641b15a5a8
+@="{38248178-CF6D-11DE-ABE5-000C2916D865}"
+
+[Software\\Classes\\WINEDBROWPRX.AsServer\\CurVer] 1660099895
+#time=1d8ac641b15a6e8
+@="WINEDBROWPRX.AsServer.1"
+
+[Software\\Classes\\WINEDBROWPRX.AsServer.1] 1660099895
+#time=1d8ac641b15a0e4
+@="Wine OLE DB Row Server"
+
+[Software\\Classes\\WINEDBROWPRX.AsServer.1\\CLSID] 1660099895
+#time=1d8ac641b15a2a6
+@="{38248178-CF6D-11DE-ABE5-000C2916D865}"
+
+[Software\\Classes\\WINEDBRSTPRX.AsProxy] 1660099895
+#time=1d8ac641b15b8ae
+@="Wine OLE DB Rowset Proxy"
+
+[Software\\Classes\\WINEDBRSTPRX.AsProxy\\CLSID] 1660099895
+#time=1d8ac641b15b7e6
+@="{3824817B-CF6D-11DE-ABE5-000C2916D865}"
+
+[Software\\Classes\\WINEDBRSTPRX.AsProxy\\CurVer] 1660099895
+#time=1d8ac641b15b912
+@="WINEDBRSTPRX.AsProxy.1"
+
+[Software\\Classes\\WINEDBRSTPRX.AsProxy.1] 1660099895
+#time=1d8ac641b15b52a
+@="Wine OLE DB Rowset Proxy"
+
+[Software\\Classes\\WINEDBRSTPRX.AsProxy.1\\CLSID] 1660099895
+#time=1d8ac641b15b58e
+@="{3824817B-CF6D-11DE-ABE5-000C2916D865}"
+
+[Software\\Classes\\WINEDBRSTPRX.AsServer] 1660099895
+#time=1d8ac641b15b2b4
+@="Wine OLE DB Rowset Server"
+
+[Software\\Classes\\WINEDBRSTPRX.AsServer\\CLSID] 1660099895
+#time=1d8ac641b15b192
+@="{3824817A-CF6D-11DE-ABE5-000C2916D865}"
+
+[Software\\Classes\\WINEDBRSTPRX.AsServer\\CurVer] 1660099895
+#time=1d8ac641b15b318
+@="WINEDBRSTPRX.AsServer.1"
+
+[Software\\Classes\\WINEDBRSTPRX.AsServer.1] 1660099895
+#time=1d8ac641b15aecc
+@="Wine OLE DB Rowset Server"
+
+[Software\\Classes\\WINEDBRSTPRX.AsServer.1\\CLSID] 1660099895
+#time=1d8ac641b15af30
+@="{3824817A-CF6D-11DE-ABE5-000C2916D865}"
+
+[Software\\Classes\\WinHttp.WinHttpRequest.5.1] 1660099897
+#time=1d8ac641bdf169a
+@="WinHttpRequest Component version 5.1"
+
+[Software\\Classes\\WinHttp.WinHttpRequest.5.1\\CLSID] 1660099897
+#time=1d8ac641bdf16fe
+@="{2087C2F4-2CEF-4953-A8AB-66779B670495}"
+
+[Software\\Classes\\WINMGMTS] 1660099895
+#time=1d8ac641b105d3c
+@="WinMGMTS"
+
+[Software\\Classes\\WINMGMTS\\CLSID] 1660099895
+#time=1d8ac641b105c9c
+@="{172BDDF8-CEEA-11D1-8B05-00600806D9B6}"
+
+[Software\\Classes\\WINMGMTS\\CurVer] 1660099895
+#time=1d8ac641b105d96
+@="WINMGMTS.1"
+
+[Software\\Classes\\WINMGMTS.1] 1660099895
+#time=1d8ac641b105a44
+@="WinMGMTS"
+
+[Software\\Classes\\WINMGMTS.1\\CLSID] 1660099895
+#time=1d8ac641b105a94
+@="{172BDDF8-CEEA-11D1-8B05-00600806D9B6}"
+
+[Software\\Classes\\WMFFilter.CoWMFFilter] 1660099896
+#time=1d8ac641b8ae2a0
+@="CoWMFFilter Class"
+
+[Software\\Classes\\WMFFilter.CoWMFFilter\\CLSID] 1660099896
+#time=1d8ac641b8ae1ec
+@="{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}"
+
+[Software\\Classes\\WMFFilter.CoWMFFilter\\CurVer] 1660099896
+#time=1d8ac641b8ae2fa
+@="WMFFilter.CoWMFFilter.1"
+
+[Software\\Classes\\WMFFilter.CoWMFFilter.1] 1660099896
+#time=1d8ac641b8adf94
+@="CoWMFFilter Class"
+
+[Software\\Classes\\WMFFilter.CoWMFFilter.1\\CLSID] 1660099896
+#time=1d8ac641b8adfee
+@="{607FD4E8-0A03-11D1-AB1D-00C04FC9B304}"
+
+[Software\\Classes\\WMPlayer.OCX] 1660099897
+#time=1d8ac641be49138
+@="Windows Media Player"
+
+[Software\\Classes\\WMPlayer.OCX\\CLSID] 1660099897
+#time=1d8ac641be4907a
+@="{6BF52A52-394A-11D3-B153-00C04F79FAA6}"
+
+[Software\\Classes\\WMPlayer.OCX\\CurVer] 1660099897
+#time=1d8ac641be4919c
+@="WMPlayer.OCX.7"
+
+[Software\\Classes\\WMPlayer.OCX.7] 1660099897
+#time=1d8ac641be49b4c
+@="Windows Media Player"
+
+[Software\\Classes\\WMPlayer.OCX.7\\CLSID] 1660099897
+#time=1d8ac641be48cce
+@="{6BF52A52-394A-11D3-B153-00C04F79FAA6}"
+
+[Software\\Classes\\WMPlayer.OCX.7\\Insertable] 1660099897
+#time=1d8ac641be49b4c
+
+[Software\\Classes\\wrifile\\shell\\open\\command] 1660099897
+#time=1d8ac641c4c3130
+@="\"C:\\Program Files\\Windows NT\\Accessories\\wordpad.exe\" %1"
+
+[Software\\Classes\\wrifile\\shell\\print\\command] 1660099897
+#time=1d8ac641c4c3536
+@="\"C:\\Program Files\\Windows NT\\Accessories\\wordpad.exe\" /p %1"
+
+[Software\\Classes\\WScript.Network] 1660099897
+#time=1d8ac641be88f72
+@="Windows Script Host Network Object"
+
+[Software\\Classes\\WScript.Network\\CLSID] 1660099897
+#time=1d8ac641be89418
+@="{093FF999-1EA0-4079-9525-9614C3504B74}"
+
+[Software\\Classes\\WScript.Network\\CurVer] 1660099897
+#time=1d8ac641be88fcc
+@="WScript.Network.1"
+
+[Software\\Classes\\WScript.Network.1] 1660099897
+#time=1d8ac641be88c0c
+@="Windows Script Host Network Object"
+
+[Software\\Classes\\WScript.Network.1\\CLSID] 1660099897
+#time=1d8ac641be891fc
+@="{093FF999-1EA0-4079-9525-9614C3504B74}"
+
+[Software\\Classes\\WScript.Shell] 1660099897
+#time=1d8ac641be88374
+@="Windows Script Host Shell Object"
+
+[Software\\Classes\\WScript.Shell\\CLSID] 1660099897
+#time=1d8ac641be88932
+@="{72C24DD5-D70A-438B-8A42-98424B88AFB8}"
+
+[Software\\Classes\\WScript.Shell\\CurVer] 1660099897
+#time=1d8ac641be884c8
+@="WScript.Shell.1"
+
+[Software\\Classes\\WScript.Shell.1] 1660099897
+#time=1d8ac641be88022
+@="Windows Script Host Shell Object"
+
+[Software\\Classes\\WScript.Shell.1\\CLSID] 1660099897
+#time=1d8ac641be8870c
+@="{72C24DD5-D70A-438B-8A42-98424B88AFB8}"
+
+[Software\\Classes\\xmlfile] 1660099897
+#time=1d8ac641c4c37d4
+@="XML Document"
+
+[Software\\Classes\\xmlfile\\CLSID] 1660099895
+#time=1d8ac641b07a3e0
+@="{48123BC4-99D9-11D1-A6B3-00C04FD91555}"
+
+[Software\\Classes\\xmlfile\\shell\\open\\command] 1660099897
+#time=1d8ac641c4c3a54
+@="\"C:\\windows\\system32\\winebrowser.exe\" -nohome"
+
+[Software\\Classes\\xmlfile\\shell\\open\\ddeexec] 1660099897
+#time=1d8ac641c4c435a
+@="\"%1\",,-1,0,,,,"
+"NoActivateHandler"=""
+
+[Software\\Classes\\xmlfile\\shell\\open\\ddeexec\\Application] 1660099897
+#time=1d8ac641c4c4292
+@="IExplore"
+
+[Software\\Classes\\xmlfile\\shell\\open\\ddeexec\\Topic] 1660099897
+#time=1d8ac641c4c440e
+@="WWW_OpenURL"
+
+[Software\\Clients\\Mail] 1660099897
+#time=1d8ac641c4ea6ae
+@="Native Mail Client"
+
+[Software\\Clients\\Mail\\Native Mail Client] 1660099897
+#time=1d8ac641c4ea91a
+@="Native Mail Client"
+"DLLPath"="C:\\windows\\system32\\winemapi.dll"
+
+[Software\\Khronos\\Vulkan\\Drivers] 1660099897
+#time=1d8ac641c35727e
+"C:\\windows\\system32\\winevulkan.json"=dword:00000000
+
+[Software\\Microsoft\\Active Setup\\Installed Components\\{44BBA855-CC51-11CF-AAFA-00AA00B6015F}] 1660099897
+#time=1d8ac641c4ef758
+@="DirectDrawEx"
+"ComponentID"="DirectDrawEx"
+"IsInstalled"=dword:00000001
+"Locale"="*"
+"Version"="4,71,1113,0"
+
+[Software\\Microsoft\\Active Setup\\Installed Components\\{6BF52A52-394A-11d3-B153-00C04F79FAA6}] 1660099897
+#time=1d8ac641c4f06e4
+@="Windows Media Player"
+"ComponentID"="wmp"
+"IsInstalled"=dword:00000001
+"Locale"="*"
+"Version"="12,0,7601,18840"
+
+[Software\\Microsoft\\Active Setup\\Installed Components\\{de5aed00-a4bf-11d1-9948-00c04f98bbc9}] 1660099897
+#time=1d8ac641c4efec4
+@="HTML Help"
+"ComponentID"="HTMLHelp"
+"IsInstalled"=dword:00000001
+"Locale"="*"
+"Version"="4,74,9273,0"
+
+[Software\\Microsoft\\ADs\\Providers\\LDAP] 1660099896
+#time=1d8ac641b314b1e
+@="LDAPNamespace"
+
+[Software\\Microsoft\\Advanced INF Setup] 1660099897
+#time=1d8ac641c4ea9e2
+
+[Software\\Microsoft\\AudioCompressionManager\\DriverCache\\msacm.imaadpcm] 1660099897
+#time=1d8ac641c4b3fc8
+"aFormatTagCache"=hex:01,00,00,00,10,00,00,00,11,00,00,00,14,00,00,00
+"cFilterTags"=dword:00000000
+"cFormatTags"=dword:00000002
+"fdwSupport"=dword:00000001
+
+[Software\\Microsoft\\AudioCompressionManager\\DriverCache\\msacm.l3acm] 1660099897
+#time=1d8ac641c4b4644
+"aFormatTagCache"=hex:01,00,00,00,10,00,00,00,55,00,00,00,1e,00,00,00,50,00,00,\
+  00,28,00,00,00
+"cFilterTags"=dword:00000000
+"cFormatTags"=dword:00000003
+"fdwSupport"=dword:00000001
+
+[Software\\Microsoft\\AudioCompressionManager\\DriverCache\\msacm.msadpcm] 1660099897
+#time=1d8ac641c4b425c
+"aFormatTagCache"=hex:01,00,00,00,10,00,00,00,02,00,00,00,32,00,00,00
+"cFilterTags"=dword:00000000
+"cFormatTags"=dword:00000002
+"fdwSupport"=dword:00000001
+
+[Software\\Microsoft\\AudioCompressionManager\\DriverCache\\msacm.msg711] 1660099897
+#time=1d8ac641c4b4446
+"aFormatTagCache"=hex:01,00,00,00,10,00,00,00,06,00,00,00,12,00,00,00,07,00,00,\
+  00,12,00,00,00
+"cFilterTags"=dword:00000000
+"cFormatTags"=dword:00000003
+"fdwSupport"=dword:00000001
+
+[Software\\Microsoft\\AudioCompressionManager\\DriverCache\\msacm.msgsm610] 1660099897
+#time=1d8ac641c4b4824
+"aFormatTagCache"=hex:01,00,00,00,10,00,00,00,31,00,00,00,14,00,00,00
+"cFilterTags"=dword:00000000
+"cFormatTags"=dword:00000002
+"fdwSupport"=dword:00000001
+
+[Software\\Microsoft\\AudioCompressionManager\\DriverCache\\msacm32.dll] 1660099897
+#time=1d8ac641c4b4a18
+"aFormatTagCache"=hex:01,00,00,00,10,00,00,00
+"cFilterTags"=dword:00000000
+"cFormatTags"=dword:00000001
+"fdwSupport"=dword:00000002
+
+[Software\\Microsoft\\Clients] 1660099897
+#time=1d8ac641c4eaab4
+
+[Software\\Microsoft\\Cryptography] 1660099897
+#time=1d8ac641c4eb022
+"MachineGuid"="d11ce011-6037-4528-93d7-8e707242f2c4"
+
+[Software\\Microsoft\\Cryptography\\Calais\\Current] 1660099897
+#time=1d8ac641c4eae56
+
+[Software\\Microsoft\\Cryptography\\Calais\\Readers] 1660099897
+#time=1d8ac641c4eaf64
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider\\Microsoft Base Cryptographic Provider v1.0] 1660099896
+#time=1d8ac641bb1555c
+"Image Path"="C:\\windows\\system32\\rsaenh.dll"
+"Signature"=hex:de,ad,be,ef
+"Type"=dword:00000001
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider\\Microsoft Base DSS and Diffie-Hellman Cryptographic Provider] 1660099896
+#time=1d8ac641b66ee4a
+"Image Path"="C:\\windows\\system32\\dssenh.dll"
+"Type"=dword:0000000d
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider\\Microsoft Base DSS Cryptographic Provider] 1660099896
+#time=1d8ac641b66ec42
+"Image Path"="C:\\windows\\system32\\dssenh.dll"
+"Type"=dword:00000003
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider\\Microsoft DH SChannel Cryptographic Provider] 1660099896
+#time=1d8ac641b66f34a
+"Image Path"="C:\\windows\\system32\\dssenh.dll"
+"Type"=dword:00000012
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider\\Microsoft Enhanced Cryptographic Provider v1.0] 1660099896
+#time=1d8ac641bb157aa
+"Image Path"="C:\\windows\\system32\\rsaenh.dll"
+"Signature"=hex:de,ad,be,ef
+"Type"=dword:00000001
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider\\Microsoft Enhanced DSS and Diffie-Hellman Cryptographic Provider] 1660099896
+#time=1d8ac641b66f048
+"Image Path"="C:\\windows\\system32\\dssenh.dll"
+"Type"=dword:0000000d
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider\\Microsoft Enhanced RSA and AES Cryptographic Provider] 1660099896
+#time=1d8ac641bb159f8
+"Image Path"="C:\\windows\\system32\\rsaenh.dll"
+"Signature"=hex:de,ad,be,ef
+"Type"=dword:00000018
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider\\Microsoft Enhanced RSA and AES Cryptographic Provider (Prototype)] 1660099896
+#time=1d8ac641bb15c46
+"Image Path"="C:\\windows\\system32\\rsaenh.dll"
+"Signature"=hex:de,ad,be,ef
+"Type"=dword:00000018
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider\\Microsoft RSA SChannel Cryptographic Provider] 1660099896
+#time=1d8ac641bb15e94
+"Image Path"="C:\\windows\\system32\\rsaenh.dll"
+"Signature"=hex:de,ad,be,ef
+"Type"=dword:0000000c
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider\\Microsoft Strong Cryptographic Provider] 1660099896
+#time=1d8ac641bb160d8
+"Image Path"="C:\\windows\\system32\\rsaenh.dll"
+"Signature"=hex:de,ad,be,ef
+"Type"=dword:00000001
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider Types\\Type 001] 1660099896
+#time=1d8ac641bb1636c
+"Name"="Microsoft Enhanced Cryptographic Provider v1.0"
+"TypeName"="RSA Full (Signature and Key Exchange)"
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider Types\\Type 003] 1660099896
+#time=1d8ac641b66f606
+"Name"="Microsoft Base DSS Cryptographic Provider"
+"TypeName"="DSS Signature"
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider Types\\Type 012] 1660099896
+#time=1d8ac641bb16542
+"Name"="Microsoft RSA SChannel Cryptographic Provider"
+"TypeName"="RSA SChannel"
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider Types\\Type 013] 1660099896
+#time=1d8ac641b66f7fa
+"Name"="Microsoft Enhanced DSS and Diffie-Hellman Cryptographic Provider"
+"TypeName"="DSS Signature with Diffie-Hellman Key Exchange"
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider Types\\Type 018] 1660099896
+#time=1d8ac641b66fa66
+"Name"="Microsoft DH SChannel Cryptographic Provider"
+"TypeName"="Diffie-Hellman SChannel"
+
+[Software\\Microsoft\\Cryptography\\Defaults\\Provider Types\\Type 024] 1660099896
+#time=1d8ac641bb16718
+"Name"="Microsoft Enhanced RSA and AES Cryptographic Provider"
+"TypeName"="RSA Full and AES"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CertDllOpenStoreProv\\#16] 1660099897
+#time=1d8ac641c258f30
+"Dll"="cryptnet.dll"
+"FuncName"="LdapProvOpenStore"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CertDllOpenStoreProv\\Ldap] 1660099897
+#time=1d8ac641c258da0
+"Dll"="cryptnet.dll"
+"FuncName"="LdapProvOpenStore"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllCreateIndirectData\\{000C10F1-0000-0000-C000-000000000046}] 1660099897
+#time=1d8ac641c26f5aa
+"Dll"="MSISIP.DLL"
+"FuncName"="MsiSIPCreateIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllCreateIndirectData\\{9BA61D3F-E73A-11D0-8CD2-00C04FC295EE}] 1660099897
+#time=1d8ac641c368fd8
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPCreateIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllCreateIndirectData\\{C689AAB8-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c3677d2
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPCreateIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllCreateIndirectData\\{C689AAB9-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c367fca
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPCreateIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllCreateIndirectData\\{C689AABA-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c366ee0
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPCreateIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllCreateIndirectData\\{DE351A42-8E59-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c3665f8
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPCreateIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllCreateIndirectData\\{DE351A43-8E59-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c3687cc
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPCreateIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllGetSignedDataMsg\\{000C10F1-0000-0000-C000-000000000046}] 1660099897
+#time=1d8ac641c26e9c0
+"Dll"="MSISIP.DLL"
+"FuncName"="MsiSIPGetSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllGetSignedDataMsg\\{9BA61D3F-E73A-11D0-8CD2-00C04FC295EE}] 1660099897
+#time=1d8ac641c368ca4
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPGetSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllGetSignedDataMsg\\{C689AAB8-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c36749e
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPGetSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllGetSignedDataMsg\\{C689AAB9-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c367c8c
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPGetSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllGetSignedDataMsg\\{C689AABA-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c366bb6
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPGetSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllGetSignedDataMsg\\{DE351A42-8E59-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c3662b0
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPGetSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllGetSignedDataMsg\\{DE351A43-8E59-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c368498
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPGetSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllIsMyFileType2\\{000C10F1-0000-0000-C000-000000000046}] 1660099897
+#time=1d8ac641c270158
+"Dll"="MSISIP.DLL"
+"FuncName"="MsiSIPIsMyTypeOfFile"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllPutSignedDataMsg\\{000C10F1-0000-0000-C000-000000000046}] 1660099897
+#time=1d8ac641c26e3d0
+"Dll"="MSISIP.DLL"
+"FuncName"="MsiSIPPutSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllPutSignedDataMsg\\{9BA61D3F-E73A-11D0-8CD2-00C04FC295EE}] 1660099897
+#time=1d8ac641c368b0a
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPPutSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllPutSignedDataMsg\\{C689AAB8-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c3672c8
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPPutSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllPutSignedDataMsg\\{C689AAB9-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c367b06
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPPutSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllPutSignedDataMsg\\{C689AABA-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c366936
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPPutSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllPutSignedDataMsg\\{DE351A42-8E59-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c36610c
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPPutSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllPutSignedDataMsg\\{DE351A43-8E59-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c3682fe
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPPutSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllRemoveSignedDataMsg\\{000C10F1-0000-0000-C000-000000000046}] 1660099897
+#time=1d8ac641c26efce
+"Dll"="MSISIP.DLL"
+"FuncName"="MsiSIPRemoveSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllRemoveSignedDataMsg\\{9BA61D3F-E73A-11D0-8CD2-00C04FC295EE}] 1660099897
+#time=1d8ac641c368e34
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPRemoveSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllRemoveSignedDataMsg\\{C689AAB8-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c36762e
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPRemoveSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllRemoveSignedDataMsg\\{C689AAB9-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c367e30
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPRemoveSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllRemoveSignedDataMsg\\{C689AABA-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c366d50
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPRemoveSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllRemoveSignedDataMsg\\{DE351A42-8E59-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c36644a
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPRemoveSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllRemoveSignedDataMsg\\{DE351A43-8E59-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c368628
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPRemoveSignedDataMsg"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllVerifyIndirectData\\{000C10F1-0000-0000-C000-000000000046}] 1660099897
+#time=1d8ac641c26fb7c
+"Dll"="MSISIP.DLL"
+"FuncName"="MsiSIPVerifyIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllVerifyIndirectData\\{9BA61D3F-E73A-11D0-8CD2-00C04FC295EE}] 1660099897
+#time=1d8ac641c369186
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPVerifyIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllVerifyIndirectData\\{C689AAB8-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c36796c
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPVerifyIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllVerifyIndirectData\\{C689AAB9-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c36815a
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPVerifyIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllVerifyIndirectData\\{C689AABA-8E78-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c367110
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPVerifyIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllVerifyIndirectData\\{DE351A42-8E59-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c366792
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPVerifyIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllVerifyIndirectData\\{DE351A43-8E59-11D0-8C47-00C04FC295EE}] 1660099897
+#time=1d8ac641c368970
+"Dll"="WINTRUST.DLL"
+"FuncName"="CryptSIPVerifyIndirectData"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CertDllVerifyRevocation\\DEFAULT] 1660099897
+#time=1d8ac641c2587a6
+"Dll"=str(7):"cryptnet.dll\0"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2000] 1660099897
+#time=1d8ac641c35a08c
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSpAgencyInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2001] 1660099897
+#time=1d8ac641c35a6ae
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcMinimalCriteriaInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2002] 1660099897
+#time=1d8ac641c35acf8
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcFinancialCriteriaInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2003] 1660099897
+#time=1d8ac641c359a4c
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcIndirectDataContentDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2004] 1660099897
+#time=1d8ac641c357a3a
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcPeImageDataDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2005] 1660099897
+#time=1d8ac641c358d36
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2006] 1660099897
+#time=1d8ac641c35bda6
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcStatementTypeDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2007] 1660099897
+#time=1d8ac641c35d1ce
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSpOpusInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2008] 1660099897
+#time=1d8ac641c358084
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2009] 1660099897
+#time=1d8ac641c3586e2
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2130] 1660099897
+#time=1d8ac641c359344
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSigInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2221] 1660099897
+#time=1d8ac641c35c4f4
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1CatNameValueDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\#2222] 1660099897
+#time=1d8ac641c35cb66
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1CatMemberInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.12.2.1] 1660099897
+#time=1d8ac641c35c1ca
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1CatNameValueDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.12.2.2] 1660099897
+#time=1d8ac641c35c83c
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1CatMemberInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.16.1.1] 1660099897
+#time=1d8ac641c255a10
+"Dll"="cryptdlg.dll"
+"FuncName"="DecodeAttrSequence"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.16.4] 1660099897
+#time=1d8ac641c255b6e
+"Dll"="cryptdlg.dll"
+"FuncName"="DecodeRecipientID"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.2.1.10] 1660099897
+#time=1d8ac641c359d62
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSpAgencyInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.2.1.11] 1660099897
+#time=1d8ac641c35b018
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcStatementTypeDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.2.1.12] 1660099897
+#time=1d8ac641c35ce86
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSpOpusInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.2.1.15] 1660099897
+#time=1d8ac641c35771a
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcPeImageDataDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.2.1.20] 1660099897
+#time=1d8ac641c3583cc
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.2.1.25] 1660099897
+#time=1d8ac641c357d5a
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.2.1.26] 1660099897
+#time=1d8ac641c35a3a2
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcMinimalCriteriaInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.2.1.27] 1660099897
+#time=1d8ac641c35a9e2
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcFinancialCriteriaInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.2.1.28] 1660099897
+#time=1d8ac641c358a0c
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.2.1.30] 1660099897
+#time=1d8ac641c359042
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSigInfoDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllDecodeObject\\1.3.6.1.4.1.311.2.1.4] 1660099897
+#time=1d8ac641c35972c
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcIndirectDataContentDecode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2000] 1660099897
+#time=1d8ac641c359f06
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSpAgencyInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2001] 1660099897
+#time=1d8ac641c35a528
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcMinimalCriteriaInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2002] 1660099897
+#time=1d8ac641c35ab72
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcFinancialCriteriaInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2003] 1660099897
+#time=1d8ac641c3598bc
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcIndirectDataContentEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2004] 1660099897
+#time=1d8ac641c3578b4
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcPeImageDataEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2005] 1660099897
+#time=1d8ac641c358ba6
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2006] 1660099897
+#time=1d8ac641c35b982
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcStatementTypeEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2007] 1660099897
+#time=1d8ac641c35d034
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSpOpusInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2008] 1660099897
+#time=1d8ac641c357ef4
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2009] 1660099897
+#time=1d8ac641c35855c
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2130] 1660099897
+#time=1d8ac641c3591be
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSigInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2221] 1660099897
+#time=1d8ac641c35c364
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1CatNameValueEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\#2222] 1660099897
+#time=1d8ac641c35c9cc
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1CatMemberInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.12.2.1] 1660099897
+#time=1d8ac641c35bfd6
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1CatNameValueEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.12.2.2] 1660099897
+#time=1d8ac641c35c6a2
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1CatMemberInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.16.1.1] 1660099897
+#time=1d8ac641c2552f4
+"Dll"="cryptdlg.dll"
+"FuncName"="EncodeAttrSequence"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.16.4] 1660099897
+#time=1d8ac641c2554b6
+"Dll"="cryptdlg.dll"
+"FuncName"="EncodeRecipientID"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.2.1.10] 1660099897
+#time=1d8ac641c359bd2
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSpAgencyInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.2.1.11] 1660099897
+#time=1d8ac641c35ae88
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcStatementTypeEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.2.1.12] 1660099897
+#time=1d8ac641c35cd00
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSpOpusInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.2.1.15] 1660099897
+#time=1d8ac641c357576
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcPeImageDataEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.2.1.20] 1660099897
+#time=1d8ac641c35821e
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.2.1.25] 1660099897
+#time=1d8ac641c357bca
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.2.1.26] 1660099897
+#time=1d8ac641c35a21c
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcMinimalCriteriaInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.2.1.27] 1660099897
+#time=1d8ac641c35a852
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcFinancialCriteriaInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.2.1.28] 1660099897
+#time=1d8ac641c35887c
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcLinkEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.2.1.30] 1660099897
+#time=1d8ac641c358ebc
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcSigInfoEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllEncodeObject\\1.3.6.1.4.1.311.2.1.4] 1660099897
+#time=1d8ac641c359588
+"Dll"="WINTRUST.DLL"
+"FuncName"="WVTAsn1SpcIndirectDataContentEncode"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllFormatObject\\1.3.6.1.5.5.7.3.4] 1660099897
+#time=1d8ac641c2560d2
+"Dll"="cryptdlg.dll"
+"FuncName"="FormatPKIXEmailProtection"
+
+[Software\\Microsoft\\Cryptography\\OID\\EncodingType 1\\CryptDllFormatObject\\2.5.29.32] 1660099897
+#time=1d8ac641c25623a
+"Dll"="cryptdlg.dll"
+"FuncName"="FormatVerisignExtension"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\CertCheck\\{00AAC56B-CD44-11D0-8CC2-00C04FC295EE}] 1660099897
+#time=1d8ac641c35e8a8
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCheckCert"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\CertCheck\\{189A3842-3041-11D1-85E1-00C04FC295EE}] 1660099897
+#time=1d8ac641c36081a
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCheckCert"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\CertCheck\\{5555C2CD-17FB-11D1-85C4-00C04FC295EE}] 1660099897
+#time=1d8ac641c3645fa
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCheckCert"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\CertCheck\\{573E31F8-AABA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c363a9c
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCheckCert"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\CertCheck\\{573E31F8-DDBA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c3612ce
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCheckCert"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\CertCheck\\{64B9D180-8DA2-11CF-8736-00AA00A485EB}] 1660099897
+#time=1d8ac641c35f2e4
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCheckCert"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\CertCheck\\{7801EBD0-CF4B-11D0-851F-0060979387EA}] 1660099897
+#time=1d8ac641c2541ec
+"$DLL"="cryptdlg.dll"
+"$Function"="CertTrustCertPolicy"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\CertCheck\\{C6B2E8D0-E005-11CF-A134-00C04FD7BF43}] 1660099897
+#time=1d8ac641c35fd98
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCheckCert"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\CertCheck\\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}] 1660099897
+#time=1d8ac641c365108
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCheckCert"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\CertCheck\\{FC451C16-AC75-11D1-B4B8-00C04FB66EA0}] 1660099897
+#time=1d8ac641c365bee
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCheckCert"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Certificate\\{00AAC56B-CD44-11D0-8CC2-00C04FC295EE}] 1660099897
+#time=1d8ac641c35e722
+"$DLL"="WINTRUST.DLL"
+"$Function"="WintrustCertificateTrust"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Certificate\\{189A3842-3041-11D1-85E1-00C04FC295EE}] 1660099897
+#time=1d8ac641c3606c6
+"$DLL"="WINTRUST.DLL"
+"$Function"="WintrustCertificateTrust"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Certificate\\{5555C2CD-17FB-11D1-85C4-00C04FC295EE}] 1660099897
+#time=1d8ac641c364474
+"$DLL"="WINTRUST.DLL"
+"$Function"="WintrustCertificateTrust"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Certificate\\{573E31F8-AABA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c36390c
+"$DLL"="WINTRUST.DLL"
+"$Function"="HTTPSCertificateTrust"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Certificate\\{573E31F8-DDBA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c361102
+"$DLL"="WINTRUST.DLL"
+"$Function"="WintrustCertificateTrust"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Certificate\\{64B9D180-8DA2-11CF-8736-00AA00A485EB}] 1660099897
+#time=1d8ac641c35f172
+"$DLL"="WINTRUST.DLL"
+"$Function"="WintrustCertificateTrust"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Certificate\\{7801EBD0-CF4B-11D0-851F-0060979387EA}] 1660099897
+#time=1d8ac641c253bf2
+"$DLL"="wintrust.dll"
+"$Function"="WintrustCertificateTrust"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Certificate\\{C6B2E8D0-E005-11CF-A134-00C04FD7BF43}] 1660099897
+#time=1d8ac641c35fc1c
+"$DLL"="WINTRUST.DLL"
+"$Function"="WintrustCertificateTrust"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Certificate\\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}] 1660099897
+#time=1d8ac641c364f6e
+"$DLL"="WINTRUST.DLL"
+"$Function"="WintrustCertificateTrust"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Certificate\\{FC451C16-AC75-11D1-B4B8-00C04FB66EA0}] 1660099897
+#time=1d8ac641c365a5e
+"$DLL"="WINTRUST.DLL"
+"$Function"="GenericChainCertificateTrust"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Cleanup\\{00AAC56B-CD44-11D0-8CC2-00C04FC295EE}] 1660099897
+#time=1d8ac641c35eb96
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCleanup"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Cleanup\\{189A3842-3041-11D1-85E1-00C04FC295EE}] 1660099897
+#time=1d8ac641c360ad6
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCleanup"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Cleanup\\{5555C2CD-17FB-11D1-85C4-00C04FC295EE}] 1660099897
+#time=1d8ac641c36492e
+"$DLL"="WINTRUST.DLL"
+"$Function"="OfficeCleanupPolicy"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Cleanup\\{573E31F8-AABA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c363dd0
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCleanup"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Cleanup\\{573E31F8-DDBA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c361eb8
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCleanup"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Cleanup\\{64B9D180-8DA2-11CF-8736-00AA00A485EB}] 1660099897
+#time=1d8ac641c35f5fa
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCleanup"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Cleanup\\{7801EBD0-CF4B-11D0-851F-0060979387EA}] 1660099897
+#time=1d8ac641c254d0e
+"$DLL"="cryptdlg.dll"
+"$Function"="CertTrustCleanup"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Cleanup\\{C6B2E8D0-E005-11CF-A134-00C04FD7BF43}] 1660099897
+#time=1d8ac641c3600a4
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCleanup"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Cleanup\\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}] 1660099897
+#time=1d8ac641c365428
+"$DLL"="WINTRUST.DLL"
+"$Function"="DriverCleanupPolicy"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Cleanup\\{FC451C16-AC75-11D1-B4B8-00C04FB66EA0}] 1660099897
+#time=1d8ac641c365f04
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubCleanup"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\DiagnosticPolicy\\{573E31F8-DDBA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c361d32
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubDumpStructure"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\FinalPolicy\\{00AAC56B-CD44-11D0-8CC2-00C04FC295EE}] 1660099897
+#time=1d8ac641c35ea24
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubAuthenticode"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\FinalPolicy\\{189A3842-3041-11D1-85E1-00C04FC295EE}] 1660099897
+#time=1d8ac641c360964
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubAuthenticode"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\FinalPolicy\\{5555C2CD-17FB-11D1-85C4-00C04FC295EE}] 1660099897
+#time=1d8ac641c36479e
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubAuthenticode"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\FinalPolicy\\{573E31F8-AABA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c363c2c
+"$DLL"="WINTRUST.DLL"
+"$Function"="HTTPSFinalProv"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\FinalPolicy\\{573E31F8-DDBA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c3614ae
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubAuthenticode"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\FinalPolicy\\{64B9D180-8DA2-11CF-8736-00AA00A485EB}] 1660099897
+#time=1d8ac641c35f460
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubAuthenticode"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\FinalPolicy\\{7801EBD0-CF4B-11D0-851F-0060979387EA}] 1660099897
+#time=1d8ac641c2547aa
+"$DLL"="cryptdlg.dll"
+"$Function"="CertTrustFinalPolicy"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\FinalPolicy\\{C6B2E8D0-E005-11CF-A134-00C04FD7BF43}] 1660099897
+#time=1d8ac641c35ff28
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubAuthenticode"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\FinalPolicy\\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}] 1660099897
+#time=1d8ac641c36528e
+"$DLL"="WINTRUST.DLL"
+"$Function"="DriverFinalPolicy"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\FinalPolicy\\{FC451C16-AC75-11D1-B4B8-00C04FB66EA0}] 1660099897
+#time=1d8ac641c365d7e
+"$DLL"="WINTRUST.DLL"
+"$Function"="GenericChainFinalProv"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Initialization\\{00AAC56B-CD44-11D0-8CC2-00C04FC295EE}] 1660099897
+#time=1d8ac641c35d98a
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubInitialize"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Initialization\\{189A3842-3041-11D1-85E1-00C04FC295EE}] 1660099897
+#time=1d8ac641c36025c
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubDefCertInit"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Initialization\\{5555C2CD-17FB-11D1-85C4-00C04FC295EE}] 1660099897
+#time=1d8ac641c363f56
+"$DLL"="WINTRUST.DLL"
+"$Function"="OfficeInitializePolicy"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Initialization\\{573E31F8-AABA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c36347a
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubInitialize"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Initialization\\{573E31F8-DDBA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c360c66
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubInitialize"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Initialization\\{64B9D180-8DA2-11CF-8736-00AA00A485EB}] 1660099897
+#time=1d8ac641c35ed1c
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubInitialize"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Initialization\\{7801EBD0-CF4B-11D0-851F-0060979387EA}] 1660099897
+#time=1d8ac641c2532c4
+"$DLL"="cryptdlg.dll"
+"$Function"="CertTrustInit"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Initialization\\{C6B2E8D0-E005-11CF-A134-00C04FD7BF43}] 1660099897
+#time=1d8ac641c35f76c
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubInitialize"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Initialization\\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}] 1660099897
+#time=1d8ac641c364ac8
+"$DLL"="WINTRUST.DLL"
+"$Function"="DriverInitializePolicy"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Initialization\\{FC451C16-AC75-11D1-B4B8-00C04FB66EA0}] 1660099897
+#time=1d8ac641c3655b8
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubInitialize"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Message\\{00AAC56B-CD44-11D0-8CC2-00C04FC295EE}] 1660099897
+#time=1d8ac641c35df7a
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadMessage"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Message\\{189A3842-3041-11D1-85E1-00C04FC295EE}] 1660099897
+#time=1d8ac641c36040a
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadMessage"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Message\\{5555C2CD-17FB-11D1-85C4-00C04FC295EE}] 1660099897
+#time=1d8ac641c36415e
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadMessage"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Message\\{573E31F8-AABA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c363600
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadMessage"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Message\\{573E31F8-DDBA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c360dec
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadMessage"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Message\\{64B9D180-8DA2-11CF-8736-00AA00A485EB}] 1660099897
+#time=1d8ac641c35ee98
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadMessage"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Message\\{C6B2E8D0-E005-11CF-A134-00C04FD7BF43}] 1660099897
+#time=1d8ac641c35f8de
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadMessage"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Message\\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}] 1660099897
+#time=1d8ac641c364c44
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadMessage"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Message\\{FC451C16-AC75-11D1-B4B8-00C04FB66EA0}] 1660099897
+#time=1d8ac641c365752
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadMessage"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Signature\\{00AAC56B-CD44-11D0-8CC2-00C04FC295EE}] 1660099897
+#time=1d8ac641c35e59c
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadSignature"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Signature\\{189A3842-3041-11D1-85E1-00C04FC295EE}] 1660099897
+#time=1d8ac641c360554
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadSignature"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Signature\\{5555C2CD-17FB-11D1-85C4-00C04FC295EE}] 1660099897
+#time=1d8ac641c3642ee
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadSignature"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Signature\\{573E31F8-AABA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c363786
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadSignature"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Signature\\{573E31F8-DDBA-11D0-8CCB-00C04FC295EE}] 1660099897
+#time=1d8ac641c360f72
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadSignature"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Signature\\{64B9D180-8DA2-11CF-8736-00AA00A485EB}] 1660099897
+#time=1d8ac641c35f000
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadSignature"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Signature\\{C6B2E8D0-E005-11CF-A134-00C04FD7BF43}] 1660099897
+#time=1d8ac641c35fa50
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadSignature"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Signature\\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}] 1660099897
+#time=1d8ac641c364dca
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadSignature"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Signature\\{FC451C16-AC75-11D1-B4B8-00C04FB66EA0}] 1660099897
+#time=1d8ac641c3658ce
+"$DLL"="WINTRUST.DLL"
+"$Function"="SoftpubLoadSignature"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Usages\\1.3.6.1.4.1.311.10.3.3] 1660099897
+#time=1d8ac641c362e08
+"$DLL"="WINTRUST.DLL"
+"CallbackAllocFunction"="SoftpubLoadDefUsageCallData"
+"CallbackFreeFunction"="SoftpubFreeDefUsageCallData"
+"DefaultId"="{573E31F8-AABA-11D0-8CCB-00C04FC295EE}"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Usages\\1.3.6.1.5.5.7.3.1] 1660099897
+#time=1d8ac641c362412
+"$DLL"="WINTRUST.DLL"
+"CallbackAllocFunction"="SoftpubLoadDefUsageCallData"
+"CallbackFreeFunction"="SoftpubFreeDefUsageCallData"
+"DefaultId"="{573E31F8-AABA-11D0-8CCB-00C04FC295EE}"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Usages\\1.3.6.1.5.5.7.3.2] 1660099897
+#time=1d8ac641c36293a
+"$DLL"="WINTRUST.DLL"
+"CallbackAllocFunction"="SoftpubLoadDefUsageCallData"
+"CallbackFreeFunction"="SoftpubFreeDefUsageCallData"
+"DefaultId"="{573E31F8-AABA-11D0-8CCB-00C04FC295EE}"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Usages\\1.3.6.1.5.5.7.3.3] 1660099897
+#time=1d8ac641c35d7f0
+"DefaultId"="{00AAC56B-CD44-11D0-8CC2-00C04FC295EE}"
+
+[Software\\Microsoft\\Cryptography\\Providers\\Trust\\Usages\\2.16.840.1.113730.4.1] 1660099897
+#time=1d8ac641c3632c2
+"$DLL"="WINTRUST.DLL"
+"CallbackAllocFunction"="SoftpubLoadDefUsageCallData"
+"CallbackFreeFunction"="SoftpubFreeDefUsageCallData"
+"DefaultId"="{573E31F8-AABA-11D0-8CCB-00C04FC295EE}"
+
+[Software\\Microsoft\\Cryptography\\Services] 1660099897
+#time=1d8ac641c4eb022
+
+[Software\\Microsoft\\CTF\\SystemShared] 1660099897
+#time=1d8ac641c4eb2f2
+
+[Software\\Microsoft\\CTF\\TIP] 1660099897
+#time=1d8ac641c4eb400
+
+[Software\\Microsoft\\DFS] 1660099897
+#time=1d8ac641c4eb4c8
+
+[Software\\Microsoft\\DirectMusic] 1660099897
+#time=1d8ac641c4e1144
+"GMFilePath"="C:\\windows\\system32\\drivers\\gm.dls"
+
+[Software\\Microsoft\\DirectMusic\\Defaults] 1660099897
+#time=1d8ac641c4e0ea6
+"DefaultOutputPort"="{58C2B4D0-46E7-11D1-89AC-00A0C9054129}"
+
+[Software\\Microsoft\\DirectMusic\\SoftwareSynths\\{58C2B4D0-46E7-11D1-89AC-00A0C9054129}] 1660099897
+#time=1d8ac641c4e12b6
+"Description"="Microsoft Software Synthesizer"
+
+[Software\\Microsoft\\DirectPlay\\Service Providers\\Internet TCP/IP Connection For DirectPlay] 1660099897
+#time=1d8ac641c4e1d24
+"DescriptionA"="Internet TCP/IP Connection For DirectPlay"
+"DescriptionW"="Internet TCP/IP Connection For DirectPlay"
+"dwReserved1"=dword:000001f4
+"dwReserved2"=dword:00000000
+"Guid"="{36E95EE0-8577-11cf-960C-0080C7534E82}"
+"NATHelp"="dpnhupnp.dll"
+"Path"="dpwsockx.dll"
+
+[Software\\Microsoft\\DirectPlay\\Service Providers\\IPX Connection For DirectPlay] 1660099897
+#time=1d8ac641c4e2382
+"DescriptionA"="IPX Connection For DirectPlay"
+"DescriptionW"="IPX Connection For DirectPlay"
+"dwReserved1"=dword:00000032
+"dwReserved2"=dword:00000000
+"Guid"="{685BC400-9D2C-11cf-A9CD-00AA006886E3}"
+"Path"="dpwsockx.dll"
+
+[Software\\Microsoft\\DirectPlay\\Service Providers\\Modem Connection For DirectPlay] 1660099897
+#time=1d8ac641c4e29f4
+"DescriptionA"="Modem Connection For DirectPlay"
+"DescriptionW"="Modem Connection For DirectPlay"
+"dwReserved1"=dword:00000000
+"dwReserved2"=dword:00000000
+"Guid"="{44EAA760-CB68-11cf-9C4E-00A0C905425E}"
+"Path"="dpmodemx.dll"
+
+[Software\\Microsoft\\DirectPlay\\Service Providers\\Serial Connection For DirectPlay] 1660099897
+#time=1d8ac641c4e3048
+"DescriptionA"="Serial Connection For DirectPlay"
+"DescriptionW"="Serial Connection For DirectPlay"
+"dwReserved1"=dword:00000000
+"dwReserved2"=dword:00000000
+"Guid"="{0F1D6860-88D9-11cf-9C4E-00A0C905425E}"
+"Path"="dpmodemx.dll"
+
+[Software\\Microsoft\\DirectPlay8\\Service Providers\\DPNSPWinsockTCP] 1660099896
+#time=1d8ac641b646440
+"Friendly Name"="Internet TCP/IP Connection For DirectPlay"
+"GUID"="{EBFE7BA0-628D-11D2-AE0F-006097B01411}"
+
+[Software\\Microsoft\\DirectX] 1660099897
+#time=1d8ac641c4e0c58
+"InstalledVersion"=hex:00,00,00,09,00,00,00,00
+"Version"="4.09.00.0904"
+
+[Software\\Microsoft\\Driver Signing] 1660099897
+#time=1d8ac641c4eb5a4
+
+[Software\\Microsoft\\EnterpriseCertificates] 1660099897
+#time=1d8ac641c4eb662
+
+[Software\\Microsoft\\EventSystem] 1660099897
+#time=1d8ac641c4eb72a
+
+[Software\\Microsoft\\Internet Explorer] 1660099897
+#time=1d8ac641c4a3bb4
+"Build"="99600"
+"svcVersion"="11.0.9600.18376"
+"Version"="9.11.9600.18376"
+"W2kVersion"="9.11.9600.18376"
+
+[Software\\Microsoft\\Internet Explorer\\Main] 1660099897
+#time=1d8ac641c4a4708
+"Default_Page_URL"="https://www.winehq.org"
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ADDON_MANAGEMENT] 1660099897
+#time=1d8ac641bcbd3d2
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BEHAVIORS] 1660099897
+#time=1d8ac641bcbcf36
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_DISABLE_LEGACY_COMPRESSION] 1660099897
+#time=1d8ac641bcbd7d8
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_DISABLE_MK_PROTOCOL] 1660099897
+#time=1d8ac641bcbcfe0
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_DISABLE_TELNET_PROTOCOL] 1660099897
+#time=1d8ac641bcbd940
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_FEEDS] 1660099897
+#time=1d8ac641bcbd9ea
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_FORCE_ADDR_AND_STATUS] 1660099897
+#time=1d8ac641bcbd896
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE] 1660099897
+#time=1d8ac641bcbd530
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_LOCALMACHINE_LOCKDOWN] 1660099897
+#time=1d8ac641bcbd08a
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_MIME_HANDLING] 1660099897
+#time=1d8ac641bcbcc70
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_MIME_SNIFFING] 1660099897
+#time=1d8ac641bcbcd10
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_OBJECT_CACHING] 1660099897
+#time=1d8ac641bcbcb1c
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_PROTOCOL_LOCKDOWN] 1660099897
+#time=1d8ac641bcbd47c
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_RESTRICT_ACTIVEXINSTALL] 1660099897
+#time=1d8ac641bcbd1de
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_RESTRICT_FILEDOWNLOAD] 1660099897
+#time=1d8ac641bcbd328
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_SAFE_BINDTOOBJECT] 1660099897
+#time=1d8ac641bcbd5da
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_SECURITYBAND] 1660099897
+#time=1d8ac641bcbd134
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_SSLUX] 1660099897
+#time=1d8ac641bcbd72e
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_UNC_SAVEDFILECHECK] 1660099897
+#time=1d8ac641bcbd684
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_VALIDATE_NAVIGATE_URL] 1660099897
+#time=1d8ac641bcbd288
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_WEBOC_POPUPMANAGEMENT] 1660099897
+#time=1d8ac641bcbce82
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_WINDOW_RESTRICTIONS] 1660099897
+#time=1d8ac641bcbcdc4
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ZONE_ELEVATION] 1660099897
+#time=1d8ac641bcbcbc6
+
+[Software\\Microsoft\\MediaPlayer] 1660099897
+#time=1d8ac641c4eb9aa
+"Installation DirectoryLFN"="C:\\Program Files\\Windows Media Player"
+
+[Software\\Microsoft\\MediaPlayer\\PlayerUpgrade] 1660099897
+#time=1d8ac641c4eba68
+"PlayerVersion"="12,0,7601,18840"
+
+[Software\\Microsoft\\MSMQ] 1660099897
+#time=1d8ac641c4ebb26
+
+[Software\\Microsoft\\Multimedia\\WMPlayer\\Extensions] 1660099897
+#time=1d8ac641be49e80
+
+[Software\\Microsoft\\Non-Driver Signing] 1660099897
+#time=1d8ac641c4ebbe4
+
+[Software\\Microsoft\\Notepad\\DefaultFonts] 1660099897
+#time=1d8ac641c4ebebe
+
+[Software\\Microsoft\\OLE] 1660099897
+#time=1d8ac641c50cb6e
+"EnableDCOM"="Y"
+"EnableRemoteConnect"="N"
+
+[Software\\Microsoft\\RAS] 1660099897
+#time=1d8ac641c4ebfcc
+
+[Software\\Microsoft\\Rpc\\SecurityService] 1660099897
+#time=1d8ac641c4ecc6a
+"1"="secur32.dll"
+"10"="secur32.dll"
+"14"="schannel.dll"
+"16"="secur32.dll"
+"18"="secur32.dll"
+"68"="netlogon.dll"
+"9"="secur32.dll"
+
+[Software\\Microsoft\\Shared Tools\\MSInfo] 1660099897
+#time=1d8ac641c4ecf30
+
+[Software\\Microsoft\\Speech\\AudioOutput] 1660099895
+#time=1d8ac641b0f9654
+"DefaultDefaultTokenId"="HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Speech\\AudioOutput\\TokenEnums\\MMAudioOut\\"
+
+[Software\\Microsoft\\Speech\\AudioOutput\\TokenEnums\\MMAudioOut] 1660099895
+#time=1d8ac641b0f9730
+"CLSID"="{AB1890A0-E91F-11D2-BB91-00C04F8EE6C0}"
+
+[Software\\Microsoft\\Speech\\Voices] 1660099895
+#time=1d8ac641b0f9870
+
+[Software\\Microsoft\\SystemCertificates] 1660099897
+#time=1d8ac641c4ed034
+
+[Software\\Microsoft\\TermServLicensing] 1660099897
+#time=1d8ac641c4ed0fc
+
+[Software\\Microsoft\\Transaction Server] 1660099897
+#time=1d8ac641c4ed1ba
+
+[Software\\Microsoft\\WBEM] 1660099897
+#time=1d8ac641c4ed368
+"Installation Directory"="C:\\windows\\system32\\wbem"
+
+[Software\\Microsoft\\Windows\\CurrentVersion] 1660099898
+#time=1d8ac641c9ce1b6
+"CommonFilesDir"="C:\\Program Files\\Common Files"
+"FirstInstallDateTime"=hex:21,81,7c,23
+"ProductId"="12345-oem-0000001-54321"
+"ProgramFilesDir"="C:\\Program Files"
+"ProgramFilesPath"=str(2):"%ProgramFiles%"
+"RegisteredOrganization"=""
+"RegisteredOwner"=""
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\iexplore.exe] 1660099897
+#time=1d8ac641c4a4d7a
+@="C:\\Program Files\\Internet Explorer\\iexplore.exe"
+"Path"="C:\\Program Files\\Internet Explorer;"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Control Panel\\Cursors\\Schemes] 1660099897
+#time=1d8ac641c4dbb36
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Controls Folder\\PowerCfg] 1660099897
+#time=1d8ac641c4dc2ca
+"DiskSpinDownMax"="3600"
+"DiskSpinDownMin"="3"
+"LastID"="5"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\AutoplayHandlers] 1660099897
+#time=1d8ac641c4dc388
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\Namespace\\{450D8FBA-AD25-11D0-98A8-0800361B1103}] 1660099896
+#time=1d8ac641bbcec96
+@="My Documents"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\Namespace\\{645FF040-5081-101B-9F08-00AA002F954E}] 1660099896
+#time=1d8ac641bbcedb8
+@="Trash"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\Namespace\\{9D20AAE8-0625-44B0-9CA7-71889C2254D9}] 1660099896
+#time=1d8ac641bbceeee
+@="/"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\DriveIcons] 1660099897
+#time=1d8ac641c4dc45a
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{0139D44E-6AFE-49F2-8690-3DAFCAE6FFB8}] 1660099897
+#time=1d8ac641bf299fe
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="Common Programs"
+"ParentFolder"="{A4115719-D62E-491D-AA7C-E74B8BE3B067}"
+"RelativePath"="Programs"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{054FAE61-4DD8-4787-80B6-090220C4B700}] 1660099897
+#time=1d8ac641bf3093e
+"Category"=dword:00000004
+"Name"="GameTasks"
+"ParentFolder"="{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}"
+"RelativePath"="Microsoft\\Windows\\GameExplorer"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{0762D272-C50A-4BB0-A382-697DCD729B80}] 1660099897
+#time=1d8ac641bf3e9ee
+"Attributes"=dword:00000001
+"Category"=dword:00000002
+"Name"="UserProfiles"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{0AC0837C-BBF8-452A-850D-79D08E667CA7}] 1660099897
+#time=1d8ac641bf289b4
+"Category"=dword:00000001
+"Name"="MyComputerFolder"
+"ParsingName"="::{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{0F214138-B1D3-4A90-BBA9-27CBC0C5389A}] 1660099897
+#time=1d8ac641bf3e3f4
+"Category"=dword:00000001
+"Name"="SyncSetupFolder"
+"ParsingName"="::{21EC2020-3AEA-1069-A2DD-08002B30309D}\\::{9C73F5E5-7AE7-4E32-A8E8-8D23B85255BF}\\::{F1390A9A-A3F4-4E5D-9C5F-98F3BD8D935C},"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{15CA69B3-30EE-49C1-ACE1-6B5EC372AFB5}] 1660099897
+#time=1d8ac641bf3a3b2
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="SamplePlaylists"
+"ParentFolder"="{3214FAB5-9757-4298-BB61-92A9DEAA44FF}"
+"RelativePath"="Sample Playlists"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{1777F761-68AD-4D8A-87BD-30B759FA33DD}] 1660099897
+#time=1d8ac641bf2ac32
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Favorites"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"RelativePath"="Favorites"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{18989B1D-99B5-455B-841C-AB7C74E4DDFC}] 1660099897
+#time=1d8ac641bf2846e
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="My Video"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"ParsingName"="::{59031a47-3f72-44a7-89c5-5595fe6b30ee}\\{18989B1D-99B5-455B-841C-AB7C74E4DDFC}"
+"RelativePath"="Videos"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{190337D1-B8CA-4121-A639-6D472D16972A}] 1660099897
+#time=1d8ac641bf3d81e
+"Category"=dword:00000001
+"Name"="SearchHomeFolder"
+"ParsingName"="::{9343812e-1c37-4a49-a12e-4b2d810d956b}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{1A6FDBA2-F42D-4358-A798-B74D745926C5}] 1660099897
+#time=1d8ac641bf382ba
+"Category"=dword:00000003
+"Name"="RecordedTVLibrary"
+"ParentFolder"="{48DAF80B-E6CF-4F4E-B800-0E69D84EE384}"
+"RelativePath"="RecordedTV.library-ms"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{1AC14E77-02E7-4E5D-B744-2EB1AE5198B7}] 1660099897
+#time=1d8ac641bf2b95c
+"Category"=dword:00000002
+"Name"="System"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}] 1660099897
+#time=1d8ac641bf32306
+"Category"=dword:00000004
+"Name"="Libraries"
+"ParentFolder"="{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}"
+"RelativePath"="Microsoft\\Windows\\Libraries"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{2112AB0A-C86A-4FFE-A368-0DE96E47012E}] 1660099897
+#time=1d8ac641bf334c2
+"Category"=dword:00000004
+"Name"="MusicLibrary"
+"ParentFolder"="{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}"
+"ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{2112AB0A-C86A-4ffe-A368-0DE96E47012E}"
+"RelativePath"="Music.library-ms"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{2400183A-6185-49FB-A2D8-4A392A602BA3}] 1660099897
+#time=1d8ac641bf2e2c4
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="CommonVideo"
+"ParentFolder"="{DFDF76A2-C82A-4D63-906A-5644AC457385}"
+"RelativePath"="Videos"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{289A9A43-BE44-4057-A41B-587A76D7E7F9}] 1660099897
+#time=1d8ac641bf3e1d8
+"Category"=dword:00000001
+"Name"="SyncResultsFolder"
+"ParsingName"="::{21EC2020-3AEA-1069-A2DD-08002B30309D}\\::{9C73F5E5-7AE7-4E32-A8E8-8D23B85255BF}\\::{BC48B32F-5910-47F5-8570-5074A8A5636A},"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{2A00375E-224C-49DE-B8D1-440DF7EF3DDC}] 1660099897
+#time=1d8ac641bf2e86e
+"Category"=dword:00000002
+"Name"="LocalizedResourcesDir"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{2B0F765D-C0E9-4171-908E-08A611B84FF6}] 1660099897
+#time=1d8ac641bf2b1d2
+"Category"=dword:00000004
+"Name"="Cookies"
+"ParentFolder"="{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}"
+"RelativePath"="Microsoft\\Windows\\Cookies"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{2C36C0AA-5812-4B87-BFD0-4CD0DFB19B39}] 1660099897
+#time=1d8ac641bf33abc
+"Category"=dword:00000004
+"Name"="Original Images"
+"ParentFolder"="{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}"
+"RelativePath"="Microsoft\\Windows Photo Gallery\\Original Images"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{3214FAB5-9757-4298-BB61-92A9DEAA44FF}] 1660099897
+#time=1d8ac641bf2d784
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="CommonMusic"
+"ParentFolder"="{DFDF76A2-C82A-4D63-906A-5644AC457385}"
+"RelativePath"="Music"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{33E28130-4E1E-4676-835A-98395C3BC3BB}] 1660099897
+#time=1d8ac641bf2beac
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="My Pictures"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"ParsingName"="::{59031a47-3f72-44a7-89c5-5595fe6b30ee}\\{33E28130-4E1E-4676-835A-98395C3BC3BB}"
+"RelativePath"="Pictures"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{352481E8-33BE-4251-BA85-6007CAEDCF9D}] 1660099897
+#time=1d8ac641bf2af3e
+"Category"=dword:00000004
+"Name"="Cache"
+"ParentFolder"="{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}"
+"RelativePath"="Microsoft\\Windows\\Temporary Internet Files"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{374DE290-123F-4565-9164-39C4925E467B}] 1660099897
+#time=1d8ac641bf300ba
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Downloads"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"RelativePath"="Downloads"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{3D644C9B-1FB8-4F30-9B45-F670235F79C0}] 1660099897
+#time=1d8ac641bf371da
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="CommonDownloads"
+"ParentFolder"="{DFDF76A2-C82A-4D63-906A-5644AC457385}"
+"RelativePath"="Downloads"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}] 1660099897
+#time=1d8ac641bf2a372
+"Category"=dword:00000004
+"Name"="AppData"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"RelativePath"="AppData\\Roaming"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{43668BF8-C14E-49B2-97C9-747784D784B7}] 1660099897
+#time=1d8ac641bf3dfa8
+"Category"=dword:00000001
+"Name"="SyncCenterFolder"
+"ParsingName"="::{21EC2020-3AEA-1069-A2DD-08002B30309D}\\::{9C73F5E5-7AE7-4E32-A8E8-8D23B85255BF}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{48DAF80B-E6CF-4F4E-B800-0E69D84EE384}] 1660099897
+#time=1d8ac641bf379fa
+"Attributes"=dword:00000003
+"Category"=dword:00000003
+"Name"="PublicLibraries"
+"ParentFolder"="{DFDF76A2-C82A-4D63-906A-5644AC457385}"
+"RelativePath"="Libraries"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{491E922F-5643-4AF4-A7EB-4E7A138D8174}] 1660099897
+#time=1d8ac641bf413ba
+"Category"=dword:00000004
+"Name"="VideosLibrary"
+"ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{491E922F-5643-4af4-A7EB-4E7A138D8174}"
+"RelativePath"="Videos.library-ms"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{4BD8D571-6D19-48D3-BE97-422220080E43}] 1660099897
+#time=1d8ac641bf280e0
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="My Music"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"ParsingName"="::{59031a47-3f72-44a7-89c5-5595fe6b30ee}\\{4BD8D571-6D19-48D3-BE97-422220080E43}"
+"RelativePath"="Music"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{4BFEFB45-347D-4006-A5BE-AC0CB0567192}] 1660099897
+#time=1d8ac641bf2f624
+"Category"=dword:00000001
+"Name"="ConflictFolder"
+"ParsingName"="::{21EC2020-3AEA-1069-A2DD-08002B30309D}\\::{9C73F5E5-7AE7-4E32-A8E8-8D23B85255BF}\\::{E413D040-6788-4C22-957E-175D1C513A34},"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{4C5C32FF-BB9D-43B0-B5B4-2D72E54EAAA4}] 1660099897
+#time=1d8ac641bf3ae8e
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="SavedGames"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"ParsingName"="::{59031a47-3f72-44a7-89c5-5595fe6b30ee}\\{4C5C32FF-BB9D-43b0-B5B4-2D72E54EAAA4}"
+"RelativePath"="Saved Games"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{4D9F7874-4E0C-4904-967B-40B0D20C3E4B}] 1660099897
+#time=1d8ac641bf25f66
+"Category"=dword:00000001
+"Name"="InternetFolder"
+"ParsingName"="::{871C5380-42A0-1069-A2EA-08002B30309D}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{52528A6B-B9E3-4ADD-B60D-588C2DBA842D}] 1660099897
+#time=1d8ac641bf30dee
+"Category"=dword:00000001
+"Name"="HomeGroupFolder"
+"ParsingName"="::{B4FB3F98-C1EA-428d-A78A-D1F5659CBA93}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{52A4F021-7B75-48A9-9F6B-4B87A210BC8F}] 1660099897
+#time=1d8ac641bf37fea
+"Category"=dword:00000004
+"Name"="Quick Launch"
+"ParentFolder"="{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}"
+"RelativePath"="Microsoft\\Internet Explorer\\Quick Launch"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{56784854-C6CB-462B-8169-88E350ACB882}] 1660099897
+#time=1d8ac641bf2f91c
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Contacts"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"ParsingName"="::{59031a47-3f72-44a7-89c5-5595fe6b30ee}\\{56784854-C6CB-462B-8169-88E350ACB882}"
+"RelativePath"="Contacts"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{5CD7AEE2-2219-4A67-B85D-6C9CE15660CB}] 1660099897
+#time=1d8ac641bf3f24a
+"Category"=dword:00000004
+"Name"="UserProgramFiles"
+"ParentFolder"="{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}"
+"RelativePath"="Programs"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{5CE4A5E9-E4EB-479D-B89F-130C02886155}] 1660099897
+#time=1d8ac641bf2fb60
+"Category"=dword:00000003
+"Name"="Device Metadata Store"
+"ParentFolder"="{62AB5D82-FDC1-4DC3-A9DD-070D1D495D97}"
+"RelativePath"="Microsoft\\Windows\\DeviceMetadataStore"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}] 1660099897
+#time=1d8ac641bf2c064
+"Category"=dword:00000002
+"Name"="Profile"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{625B53C3-AB48-4EC1-BA1F-A1EF4146FC19}] 1660099897
+#time=1d8ac641bf27d34
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Start Menu"
+"ParentFolder"="{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}"
+"RelativePath"="Microsoft\\Windows\\Start Menu"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{62AB5D82-FDC1-4DC3-A9DD-070D1D495D97}] 1660099897
+#time=1d8ac641bf2b614
+"Category"=dword:00000002
+"Name"="Common AppData"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{6365D5A7-0F0D-45E5-87F6-0DA56B6A4F7D}] 1660099897
+#time=1d8ac641bf36a46
+"Category"=dword:00000002
+"Name"="ProgramFilesCommonX64"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{69D2CF90-FC33-4FB7-9A0C-EBB0F0FCB43C}] 1660099897
+#time=1d8ac641bf35696
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="PhotoAlbums"
+"ParentFolder"="{33E28130-4E1E-4676-835A-98395C3BC3BB}"
+"RelativePath"="Slide Shows"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{6D809377-6AF0-444B-8957-A3773F02200E}] 1660099897
+#time=1d8ac641bf36726
+"Category"=dword:00000002
+"Name"="ProgramFilesX64"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{6F0CD92B-2E97-45D1-88FF-B0D186B8DEDD}] 1660099897
+#time=1d8ac641bf2d482
+"Category"=dword:00000001
+"Name"="ConnectionsFolder"
+"ParsingName"="::{21EC2020-3AEA-1069-A2DD-08002B30309D}\\::{7007ACC7-3202-11D1-AAD2-00805FC1270E}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{724EF170-A42D-4FEF-9F26-B60E846FBA4F}] 1660099897
+#time=1d8ac641bf2d266
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Administrative Tools"
+"ParentFolder"="{A77F5D77-2E2B-44C3-A6A2-ABA601054A51}"
+"RelativePath"="Administrative Tools"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{76FC4E2D-D6AD-4519-A663-37BD56068185}] 1660099897
+#time=1d8ac641bf265ce
+"Category"=dword:00000001
+"Name"="PrintersFolder"
+"ParsingName"="::{21EC2020-3AEA-1069-A2DD-08002B30309D}\\::{2227A280-3AEA-1069-A2DE-08002B30309D}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{7B0DB17D-9CD2-4A93-9733-46CC89022E7C}] 1660099897
+#time=1d8ac641bf2fe12
+"Category"=dword:00000004
+"Name"="DocumentsLibrary"
+"ParentFolder"="{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}"
+"ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{7b0db17d-9cd2-4a93-9733-46cc89022e7c}"
+"RelativePath"="Documents.library-ms"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{7B396E54-9EC5-4300-BE0A-2482EBAE1A26}] 1660099897
+#time=1d8ac641bf3dad0
+"Category"=dword:00000003
+"Name"="Default Gadgets"
+"ParentFolder"="{905E63B6-C1BF-494E-B29C-65B732D3D21A}"
+"RelativePath"="Windows Sidebar\\Gadgets"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{7C5A40EF-A0FB-4BFC-874A-C0F2E0B9FA8E}] 1660099897
+#time=1d8ac641bf2c3f2
+"Attributes"=dword:00000001
+"Category"=dword:00000002
+"Name"="ProgramFilesX86"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{7D1D3A04-DEBB-4115-95CF-2F29DA2920DA}] 1660099897
+#time=1d8ac641bf3b276
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Searches"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"ParsingName"="::{59031a47-3f72-44a7-89c5-5595fe6b30ee}\\{7d1d3a04-debb-4115-95cf-2f29da2920da}"
+"RelativePath"="Searches"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{82A5EA35-D9CD-47C5-9629-E15D2F714E6E}] 1660099897
+#time=1d8ac641bf29d3c
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="Common Startup"
+"ParentFolder"="{0139D44E-6AFE-49F2-8690-3DAFCAE6FFB8}"
+"RelativePath"="StartUp"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{82A74AEB-AEB4-465C-A014-D097EE346D63}] 1660099897
+#time=1d8ac641bf263da
+"Category"=dword:00000001
+"Name"="ControlPanelFolder"
+"ParsingName"="::{26EE0668-A00A-44D7-9371-BEB064C98683}\\0"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{859EAD94-2E85-48AD-A71A-0969CB56A6CD}] 1660099897
+#time=1d8ac641bf3a90c
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="SampleVideos"
+"ParentFolder"="{2400183A-6185-49FB-A2D8-4A392A602BA3}"
+"RelativePath"="Sample Videos"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{8983036C-27C0-404B-8F08-102D10DCFD74}] 1660099897
+#time=1d8ac641bf275d2
+"Category"=dword:00000004
+"Name"="SendTo"
+"ParentFolder"="{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}"
+"RelativePath"="Microsoft\\Windows\\SendTo"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{8AD10C31-2ADB-4296-A8F7-E4701232C972}] 1660099897
+#time=1d8ac641bf2e4c2
+"Category"=dword:00000002
+"Name"="ResourceDir"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{905E63B6-C1BF-494E-B29C-65B732D3D21A}] 1660099897
+#time=1d8ac641bf2bb5a
+"Attributes"=dword:00000001
+"Category"=dword:00000002
+"Name"="ProgramFiles"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{9274BD8D-CFD1-41C3-B35E-B13F55A758F4}] 1660099897
+#time=1d8ac641bf2a64c
+"Category"=dword:00000004
+"Name"="PrintHood"
+"ParentFolder"="{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}"
+"RelativePath"="Microsoft\\Windows\\Printer Shortcuts"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{98EC0E18-2098-4D44-8644-66979315A281}] 1660099897
+#time=1d8ac641bf3d56c
+"Category"=dword:00000001
+"Name"="MAPIFolder"
+"ParsingName"="shell:::{89D83576-6BD1-4C86-9454-BEB04E94C819}\\*"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{9E3995AB-1F9C-4F13-B827-48B24B6C7174}] 1660099897
+#time=1d8ac641bf3e7d2
+"Attributes"=dword:00000002
+"Category"=dword:00000004
+"Name"="User Pinned"
+"ParentFolder"="{52A4F021-7B75-48A9-9F6B-4B87A210BC8F}"
+"RelativePath"="User Pinned"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{9E52AB10-F80D-49DF-ACB8-4330F5687855}] 1660099897
+#time=1d8ac641bf2ee68
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="CD Burning"
+"ParentFolder"="{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}"
+"RelativePath"="Microsoft\\Windows\\Burn\\Burn"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A302545D-DEFF-464B-ABE8-61C8648D939B}] 1660099897
+#time=1d8ac641bf40fd2
+"Category"=dword:00000001
+"Name"="UsersLibrariesFolder"
+"ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A305CE99-F527-492B-8B1A-7E76FA98D6E4}] 1660099897
+#time=1d8ac641bf2f23c
+"Category"=dword:00000001
+"Name"="AppUpdatesFolder"
+"ParsingName"="::{21EC2020-3AEA-1069-A2DD-08002B30309D}\\::{7b81be6a-ce2b-4676-a29e-eb907a5126c5}\\::{d450a8a1-9568-45c7-9c0e-b4f9fb4537bd}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A4115719-D62E-491D-AA7C-E74B8BE3B067}] 1660099897
+#time=1d8ac641bf296b6
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="Common Start Menu"
+"ParentFolder"="{62AB5D82-FDC1-4DC3-A9DD-070D1D495D97}"
+"RelativePath"="Microsoft\\Windows\\Start Menu"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A520A1A4-1780-4FF6-BD18-167343C5AF16}] 1660099897
+#time=1d8ac641bf32d2e
+"Attributes"=dword:00002000
+"Category"=dword:00000004
+"Name"="LocalAppDataLow"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"RelativePath"="AppData\\LocalLow"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A63293E8-664E-48DB-A079-DF759E0509F7}] 1660099897
+#time=1d8ac641bf29350
+"Category"=dword:00000004
+"Name"="Templates"
+"ParentFolder"="{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}"
+"RelativePath"="Microsoft\\Windows\\Templates"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A75D362E-50FC-4FB7-AC2C-A8BEAA314493}] 1660099897
+#time=1d8ac641bf3dda0
+"Category"=dword:00000004
+"Name"="Gadgets"
+"ParentFolder"="{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}"
+"RelativePath"="Microsoft\\Windows Sidebar\\Gadgets"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A77F5D77-2E2B-44C3-A6A2-ABA601054A51}] 1660099897
+#time=1d8ac641bf261b4
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Programs"
+"RelativePath"="Programs"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A990AE9F-A03B-4E80-94BC-9912D7504104}] 1660099897
+#time=1d8ac641bf35d44
+"Category"=dword:00000004
+"Name"="PicturesLibrary"
+"ParentFolder"="{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}"
+"ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{A990AE9F-A03B-4e80-94BC-9912D7504104}"
+"RelativePath"="Pictures.library-ms"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{AE50C081-EBD2-438A-8655-8A092E34987A}] 1660099897
+#time=1d8ac641bf2715e
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Recent"
+"ParentFolder"="{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}"
+"RelativePath"="Microsoft\\Windows\\Recent"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{B250C668-F57D-4EE1-A63C-290EE7D1AA1F}] 1660099897
+#time=1d8ac641bf38936
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="SampleMusic"
+"ParentFolder"="{3214FAB5-9757-4298-BB61-92A9DEAA44FF}"
+"RelativePath"="Sample Music"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}] 1660099897
+#time=1d8ac641bf28716
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Desktop"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"RelativePath"="Desktop"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{B6EBFB86-6907-413C-9AF7-4FC2ABF07CC5}] 1660099897
+#time=1d8ac641bf2dbe4
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="CommonPictures"
+"ParentFolder"="{DFDF76A2-C82A-4D63-906A-5644AC457385}"
+"RelativePath"="Pictures"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{B7534046-3ECB-4C18-BE4E-64CD4CB7D6AC}] 1660099897
+#time=1d8ac641bf278f2
+"Category"=dword:00000001
+"Name"="RecycleBinFolder"
+"ParsingName"="::{645FF040-5081-101B-9F08-00AA002F954E}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{B94237E7-57AC-4347-9151-B08C6C32D1F7}] 1660099897
+#time=1d8ac641bf2c9d8
+"Category"=dword:00000003
+"Name"="Common Templates"
+"ParentFolder"="{62AB5D82-FDC1-4DC3-A9DD-070D1D495D97}"
+"RelativePath"="Microsoft\\Windows\\Templates"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{B97D20BB-F46A-4C97-BA10-5E3608430854}] 1660099897
+#time=1d8ac641bf26d76
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Startup"
+"RelativePath"="StartUp"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{BCB5256F-79F6-4CEE-B725-DC34E402FD46}] 1660099897
+#time=1d8ac641bf31258
+"Category"=dword:00000004
+"Name"="ImplicitAppShortcuts"
+"ParentFolder"="{9E3995AB-1F9C-4F13-B827-48B24B6C7174}"
+"RelativePath"="ImplicitAppShortcuts"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{BCBD3057-CA5C-4622-B42D-BC56DB0AE516}] 1660099897
+#time=1d8ac641bf3f768
+"Category"=dword:00000004
+"Name"="UserProgramFilesCommon"
+"ParentFolder"="{5CD7AEE2-2219-4A67-B85D-6C9CE15660CB}"
+"RelativePath"="Common"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{BFB9D5E0-C6A9-404C-B2B2-AE6DB6AF4968}] 1660099897
+#time=1d8ac641bf327b6
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Links"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"ParsingName"="::{59031a47-3f72-44a7-89c5-5595fe6b30ee}\\{bfb9d5e0-c6a9-404c-b2b2-ae6db6af4968}"
+"RelativePath"="Links"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{C1BAE2D0-10DF-4334-BEDD-7AA20B227A9D}] 1660099897
+#time=1d8ac641bf2eb0c
+"Category"=dword:00000003
+"Name"="OEM Links"
+"ParentFolder"="{62AB5D82-FDC1-4DC3-A9DD-070D1D495D97}"
+"RelativePath"="OEM Links"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{C4900540-2379-4C75-844B-64E6FAF8716B}] 1660099897
+#time=1d8ac641bf38ca6
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="SamplePictures"
+"ParentFolder"="{B6EBFB86-6907-413C-9AF7-4FC2ABF07CC5}"
+"RelativePath"="Sample Pictures"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{C4AA340D-F20F-4863-AFEF-F87EF2E6BA25}] 1660099897
+#time=1d8ac641bf2a08e
+"Attributes"=dword:00000003
+"Category"=dword:00000003
+"Name"="Common Desktop"
+"ParentFolder"="{DFDF76A2-C82A-4D63-906A-5644AC457385}"
+"RelativePath"="Desktop"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{C5ABBF53-E17F-4121-8900-86626FC2C973}] 1660099897
+#time=1d8ac641bf28eaa
+"Category"=dword:00000004
+"Name"="NetHood"
+"ParentFolder"="{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}"
+"RelativePath"="Microsoft\\Windows\\Network Shortcuts"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{C870044B-F49E-4126-A9C3-B52A1FF411E8}] 1660099897
+#time=1d8ac641bf38508
+"Category"=dword:00000004
+"Name"="Ringtones"
+"ParentFolder"="{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}"
+"RelativePath"="Microsoft\\Windows\\Ringtones"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{CAC52C1A-B53D-4EDC-92D7-6B2E8AC19434}] 1660099897
+#time=1d8ac641bf30290
+"Category"=dword:00000001
+"Name"="Games"
+"ParsingName"="::{ED228FDF-9EA8-4870-83b1-96b02CFE0D52}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{D0384E7D-BAC3-4797-8F14-CBA229B392B5}] 1660099897
+#time=1d8ac641bf2cfa0
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="Common Administrative Tools"
+"ParentFolder"="{0139D44E-6AFE-49F2-8690-3DAFCAE6FFB8}"
+"RelativePath"="Administrative Tools"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{D20BEEC4-5CA8-4905-AE3B-BF251EA09B53}] 1660099897
+#time=1d8ac641bf28bee
+"Category"=dword:00000001
+"Name"="NetworkPlacesFolder"
+"ParsingName"="::{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{D65231B0-B2F1-4857-A4CE-A8E7C6EA7D27}] 1660099897
+#time=1d8ac641bf2c1fe
+"Category"=dword:00000002
+"Name"="SystemX86"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{D9DC8A3B-B784-432E-A781-5A1130A75963}] 1660099897
+#time=1d8ac641bf2b452
+"Category"=dword:00000004
+"Name"="History"
+"ParentFolder"="{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}"
+"RelativePath"="Microsoft\\Windows\\History"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{DE61D971-5EBC-4F02-A3A9-6C82895E5C04}] 1660099897
+#time=1d8ac641bf2f052
+"Category"=dword:00000001
+"Name"="AddNewProgramsFolder"
+"ParsingName"="::{21EC2020-3AEA-1069-A2DD-08002B30309D}\\::{15eae92e-f17a-4431-9f28-805e482dafd4}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{DE92C1C7-837F-4F69-A3BB-86E631204A23}] 1660099897
+#time=1d8ac641bf3619a
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Playlists"
+"ParentFolder"="{4BD8D571-6D19-48D3-BE97-422220080E43}"
+"RelativePath"="Playlists"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{DE974D24-D9C6-4D3E-BF91-F4455120B917}] 1660099897
+#time=1d8ac641bf2c744
+"Category"=dword:00000002
+"Name"="ProgramFilesCommonX86"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{DEBF2536-E1A8-4C59-B6A2-414586476AEA}] 1660099897
+#time=1d8ac641bf3761c
+"Category"=dword:00000003
+"Name"="PublicGameTasks"
+"ParentFolder"="{62AB5D82-FDC1-4DC3-A9DD-070D1D495D97}"
+"RelativePath"="Microsoft\\Windows\\GameExplorer"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{DF7266AC-9274-4867-8D55-3BD661DE872D}] 1660099897
+#time=1d8ac641bf2f43a
+"Category"=dword:00000001
+"Name"="ChangeRemoveProgramsFolder"
+"ParsingName"="::{21EC2020-3AEA-1069-A2DD-08002B30309D}\\::{7b81be6a-ce2b-4676-a29e-eb907a5126c5}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{DFDF76A2-C82A-4D63-906A-5644AC457385}] 1660099897
+#time=1d8ac641bf36d70
+"Attributes"=dword:00000001
+"Category"=dword:00000002
+"Name"="Public"
+"ParsingName"="::{4336a54d-038b-4685-ab02-99bb52d3fb8b}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{E555AB60-153B-4D17-9F04-A5FE99FC15EC}] 1660099897
+#time=1d8ac641bf37cde
+"Category"=dword:00000003
+"Name"="CommonRingtones"
+"ParentFolder"="{62AB5D82-FDC1-4DC3-A9DD-070D1D495D97}"
+"RelativePath"="Microsoft\\Windows\\Ringtones"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{ED4824AF-DCE4-45A8-81E2-FC7965083634}] 1660099897
+#time=1d8ac641bf2ccc6
+"Attributes"=dword:00000001
+"Category"=dword:00000003
+"Name"="Common Documents"
+"ParentFolder"="{DFDF76A2-C82A-4D63-906A-5644AC457385}"
+"RelativePath"="Documents"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{EE32E446-31CA-4ABA-814F-A5EBD2FD6D5E}] 1660099897
+#time=1d8ac641bf3d0bc
+"Category"=dword:00000001
+"Name"="CSCFolder"
+"ParsingName"="shell:::{BD7A2E7B-21CB-41b2-A086-B309680C6B7E}\\*"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}] 1660099897
+#time=1d8ac641bf2a962
+"Category"=dword:00000004
+"Name"="Local AppData"
+"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
+"RelativePath"="AppData\\Local"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{F38BF404-1D43-42F2-9305-67DE0B28FC23}] 1660099897
+#time=1d8ac641bf2b7b8
+"Category"=dword:00000002
+"Name"="Windows"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{F3CE0F7C-4901-4ACC-8648-D5D44B04EF8F}] 1660099897
+#time=1d8ac641bf3fa10
+"Category"=dword:00000001
+"Name"="UsersFilesFolder"
+"ParsingName"="::{59031a47-3f72-44a7-89c5-5595fe6b30ee}"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{F7F1ED05-9F6D-47A2-AAAE-29D317C6F066}] 1660099897
+#time=1d8ac641bf2c58c
+"Category"=dword:00000002
+"Name"="ProgramFilesCommon"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{FD228CB7-AE11-4AE3-864C-16F3910AB8FE}] 1660099897
+#time=1d8ac641bf29076
+"Category"=dword:00000002
+"Name"="Fonts"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{FDD39AD0-238F-46AF-ADB4-6C85480369C7}] 1660099897
+#time=1d8ac641bf26894
+"Attributes"=dword:00000001
+"Category"=dword:00000004
+"Name"="Personal"
+"ParsingName"="::{59031a47-3f72-44a7-89c5-5595fe6b30ee}\\{FDD39AD0-238F-46AF-ADB4-6C85480369C7}"
+"RelativePath"="Documents"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\KindMap] 1660099897
+#time=1d8ac641c4dc52c
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MyComputer\\Namespace\\{21EC2020-3AEA-1069-A2DD-08002B30309D}] 1660099896
+#time=1d8ac641bbcf196
+@="Control Panel"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders] 1660099897
+#time=1d8ac641bf22794
+"Common Administrative Tools"="C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\Administrative Tools"
+"Common AppData"="C:\\ProgramData"
+"Common Desktop"="C:\\users\\Public\\Desktop"
+"Common Documents"="C:\\users\\Public\\Documents"
+"Common Favorites"="C:\\users\\Public\\Favorites"
+"Common Programs"="C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs"
+"Common Start Menu"="C:\\ProgramData\\Microsoft\\Windows\\Start Menu"
+"Common StartUp"="C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\StartUp"
+"Common Templates"="C:\\ProgramData\\Microsoft\\Windows\\Templates"
+"CommonMusic"="C:\\users\\Public\\Music"
+"CommonPictures"="C:\\users\\Public\\Pictures"
+"CommonVideo"="C:\\users\\Public\\Videos"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders] 1660099897
+#time=1d8ac641bf21e52
+"Common Administrative Tools"=str(2):"%ProgramData%\\Microsoft\\Windows\\Start Menu\\Programs\\Administrative Tools"
+"Common AppData"=str(2):"%ProgramData%"
+"Common Desktop"=str(2):"%PUBLIC%\\Desktop"
+"Common Documents"=str(2):"%PUBLIC%\\Documents"
+"Common Favorites"=str(2):"%PUBLIC%\\Favorites"
+"Common Programs"=str(2):"%ProgramData%\\Microsoft\\Windows\\Start Menu\\Programs"
+"Common Start Menu"=str(2):"%ProgramData%\\Microsoft\\Windows\\Start Menu"
+"Common StartUp"=str(2):"%ProgramData%\\Microsoft\\Windows\\Start Menu\\Programs\\StartUp"
+"Common Templates"=str(2):"%ProgramData%\\Microsoft\\Windows\\Templates"
+"CommonMusic"=str(2):"%PUBLIC%\\Music"
+"CommonPictures"=str(2):"%PUBLIC%\\Pictures"
+"CommonVideo"=str(2):"%PUBLIC%\\Videos"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Fonts] 1660099895
+#time=1d8ac641acdbdd8
+"@Droid Sans Fallback (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\droid\\DroidSansFallbackFull.ttf"
+"@Noto Sans CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Syriac Eastern (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEastern-Regular.ttf"
+"@Noto Sans Syriac Estrangela (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEstrangela-Regular.ttf"
+"@Noto Sans Syriac Western (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacWestern-Regular.ttf"
+"@Noto Serif CJK JP (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Noto Serif CJK KR (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Noto Serif CJK SC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Noto Serif CJK TC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Unifont (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont.ttf"
+"@\x5fae\x8f6f\x96c5\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyh.ttf"
+"@\x5fae\x8f6f\x96c5\x9ed1 Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyhbd.ttf"
+"@\x6587\x6cc9\x9a7f\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"@\x6587\x6cc9\x9a7f\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"@\x6587\x6cc9\x9a7f\x70b9\x9635\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"@\x6587\x6cc9\x9a7f\x7b49\x5bbd\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"@\x6587\x6cc9\x9a7f\x7b49\x5bbd\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"Andale Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\AndaleMo.TTF"
+"Arial (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Arial.TTF"
+"Arial Black (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\AriBlk.TTF"
+"Arial Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Arialbd.TTF"
+"Arial Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Arialbi.TTF"
+"Arial Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Ariali.TTF"
+"Bitstream Vera Sans (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\Vera.ttf"
+"Bitstream Vera Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraBd.ttf"
+"Bitstream Vera Sans Bold Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraBI.ttf"
+"Bitstream Vera Sans Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMono.ttf"
+"Bitstream Vera Sans Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMoBd.ttf"
+"Bitstream Vera Sans Mono Bold Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMoBI.ttf"
+"Bitstream Vera Sans Mono Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMoIt.ttf"
+"Bitstream Vera Sans Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraIt.ttf"
+"Bitstream Vera Serif (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraSe.ttf"
+"Bitstream Vera Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraSeBd.ttf"
+"cmex10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmex10.ttf"
+"cmmi10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmmi10.ttf"
+"cmr10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmr10.ttf"
+"cmsy10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmsy10.ttf"
+"Comic Sans MS (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Comic.TTF"
+"Comic Sans MS Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Comicbd.TTF"
+"Courier"="coure.fon"
+"Courier New (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\cour.ttf"
+"Courier New Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\courbd.ttf"
+"Courier New Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\courbi.ttf"
+"Courier New Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\couri.ttf"
+"Deepin OpenSymbol 2 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol2.ttf"
+"Deepin OpenSymbol 3 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol3.ttf"
+"Deepin OpenSymbol 4 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol4.ttf"
+"Deepin OpenSymbol 5 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol5.ttf"
+"Deepin OpenSymbol 6 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol6.ttf"
+"Deepin OpenSymbol Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol.ttf"
+"DejaVu Sans (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSans.ttf"
+"DejaVu Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSans-Bold.ttf"
+"DejaVu Sans Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSansMono.ttf"
+"DejaVu Sans Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSansMono-Bold.ttf"
+"DejaVu Serif (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSerif.ttf"
+"DejaVu Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSerif-Bold.ttf"
+"Droid Sans Fallback (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\droid\\DroidSansFallbackFull.ttf"
+"esint10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\esint10.ttf"
+"eufm10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\eufm10.ttf"
+"Georgia (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgia.TTF"
+"Georgia Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgiab.TTF"
+"Georgia Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgiaz.TTF"
+"Georgia Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgiai.TTF"
+"Impact (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Impact.TTF"
+"Liberation Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-Regular.ttf"
+"Liberation Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-Bold.ttf"
+"Liberation Mono Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-BoldItalic.ttf"
+"Liberation Mono Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-Italic.ttf"
+"Liberation Sans (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-Regular.ttf"
+"Liberation Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-Bold.ttf"
+"Liberation Sans Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-BoldItalic.ttf"
+"Liberation Sans Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-Italic.ttf"
+"Liberation Sans Narrow (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-Regular.ttf"
+"Liberation Sans Narrow Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-Bold.ttf"
+"Liberation Sans Narrow Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-BoldItalic.ttf"
+"Liberation Sans Narrow Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-Italic.ttf"
+"Liberation Serif (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-Regular.ttf"
+"Liberation Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-Bold.ttf"
+"Liberation Serif Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-BoldItalic.ttf"
+"Liberation Serif Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-Italic.ttf"
+"Lohit Devanagari (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lohit-devanagari\\Lohit-Devanagari.ttf"
+"Marlett (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\marlett.ttf"
+"MS Sans Serif"="sserife.fon"
+"MS Serif"="serife.fon"
+"msam10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\msam10.ttf"
+"msbm10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\msbm10.ttf"
+"Noto Kufi Arabic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoKufiArabic-Regular.ttf"
+"Noto Kufi Arabic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoKufiArabic-Bold.ttf"
+"Noto Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoMono-Regular.ttf"
+"Noto Music Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoMusic-Regular.ttf"
+"Noto Naskh Arabic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNaskhArabic-Regular.ttf"
+"Noto Naskh Arabic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNaskhArabic-Bold.ttf"
+"Noto Nastaliq Urdu Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNastaliqUrdu-Bold.ttf"
+"Noto Nastaliq Urdu Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNastaliqUrdu-Regular.ttf"
+"Noto Sans Adlam Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAdlam-Regular.ttf"
+"Noto Sans Adlam Unjoined Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAdlamUnjoined-Regular.ttf"
+"Noto Sans Anatolian Hieroglyphs Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAnatolianHieroglyphs-Regular.ttf"
+"Noto Sans Arabic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArabic-Bold.ttf"
+"Noto Sans Arabic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArabic-Regular.ttf"
+"Noto Sans Armenian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArmenian-Bold.ttf"
+"Noto Sans Armenian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArmenian-Regular.ttf"
+"Noto Sans Avestan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAvestan-Regular.ttf"
+"Noto Sans Bamum Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBamum-Regular.ttf"
+"Noto Sans Bassa Vah Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBassaVah-Regular.ttf"
+"Noto Sans Batak Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBatak-Regular.ttf"
+"Noto Sans Bengali Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBengali-Bold.ttf"
+"Noto Sans Bengali Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBengali-Regular.ttf"
+"Noto Sans Bhaiksuki Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBhaiksuki-Regular.ttf"
+"Noto Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-Bold.ttf"
+"Noto Sans Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-BoldItalic.ttf"
+"Noto Sans Brahmi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBrahmi-Regular.ttf"
+"Noto Sans Buginese Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBuginese-Regular.ttf"
+"Noto Sans Buhid Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBuhid-Regular.ttf"
+"Noto Sans Canadian Aboriginal Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCanadianAboriginal-Bold.ttf"
+"Noto Sans Canadian Aboriginal Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCanadianAboriginal-Regular.ttf"
+"Noto Sans Carian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCarian-Regular.ttf"
+"Noto Sans Caucasian Albanian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCaucasianAlbanian-Regular.ttf"
+"Noto Sans Chakma Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansChakma-Regular.ttf"
+"Noto Sans Cham Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCham-Bold.ttf"
+"Noto Sans Cham Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCham-Regular.ttf"
+"Noto Sans Cherokee Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCherokee-Bold.ttf"
+"Noto Sans Cherokee Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCherokee-Regular.ttf"
+"Noto Sans CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Coptic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCoptic-Regular.ttf"
+"Noto Sans Cuneiform Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCuneiform-Regular.ttf"
+"Noto Sans Cypriot Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCypriot-Regular.ttf"
+"Noto Sans Deseret Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDeseret-Regular.ttf"
+"Noto Sans Devanagari Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDevanagari-Bold.ttf"
+"Noto Sans Devanagari Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDevanagari-Regular.ttf"
+"Noto Sans Display Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-Bold.ttf"
+"Noto Sans Display Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-BoldItalic.ttf"
+"Noto Sans Display Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-Italic.ttf"
+"Noto Sans Display Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-Regular.ttf"
+"Noto Sans Duployan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDuployan-Regular.ttf"
+"Noto Sans Egyptian Hieroglyphs Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansEgyptianHieroglyphs-Regular.ttf"
+"Noto Sans Elbasan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansElbasan-Regular.ttf"
+"Noto Sans Ethiopic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansEthiopic-Bold.ttf"
+"Noto Sans Ethiopic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansEthiopic-Regular.ttf"
+"Noto Sans Georgian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGeorgian-Bold.ttf"
+"Noto Sans Georgian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGeorgian-Regular.ttf"
+"Noto Sans Glagolitic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGlagolitic-Regular.ttf"
+"Noto Sans Gothic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGothic-Regular.ttf"
+"Noto Sans Grantha Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGrantha-Regular.ttf"
+"Noto Sans Gujarati (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGujarati-Regular.ttf"
+"Noto Sans Gujarati Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGujarati-Bold.ttf"
+"Noto Sans Gurmukhi (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGurmukhi-Regular.ttf"
+"Noto Sans Gurmukhi Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGurmukhi-Bold.ttf"
+"Noto Sans Hanunoo Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHanunoo-Regular.ttf"
+"Noto Sans Hatran Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHatran-Regular.ttf"
+"Noto Sans Hebrew Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHebrew-Bold.ttf"
+"Noto Sans Hebrew Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHebrew-Regular.ttf"
+"Noto Sans Imperial Aramaic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansImperialAramaic-Regular.ttf"
+"Noto Sans Inscriptional Pahlavi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansInscriptionalPahlavi-Regular.ttf"
+"Noto Sans Inscriptional Parthian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansInscriptionalParthian-Regular.ttf"
+"Noto Sans Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-Italic.ttf"
+"Noto Sans Javanese (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansJavanese-Regular.ttf"
+"Noto Sans Javanese Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansJavanese-Bold.ttf"
+"Noto Sans Kaithi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKaithi-Regular.ttf"
+"Noto Sans Kannada Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKannada-Bold.ttf"
+"Noto Sans Kannada Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKannada-Regular.ttf"
+"Noto Sans Kayah Li Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKayahLi-Regular.ttf"
+"Noto Sans Kharoshthi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKharoshthi-Regular.ttf"
+"Noto Sans Khmer Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhmer-Bold.ttf"
+"Noto Sans Khmer Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhmer-Regular.ttf"
+"Noto Sans Khojki Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhojki-Regular.ttf"
+"Noto Sans Khudawadi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhudawadi-Regular.ttf"
+"Noto Sans Lao Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLao-Bold.ttf"
+"Noto Sans Lao Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLao-Regular.ttf"
+"Noto Sans Lepcha Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLepcha-Regular.ttf"
+"Noto Sans Limbu Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLimbu-Regular.ttf"
+"Noto Sans Linear A Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLinearA-Regular.ttf"
+"Noto Sans Linear B Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLinearB-Regular.ttf"
+"Noto Sans Lisu Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLisu-Regular.ttf"
+"Noto Sans Lycian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLycian-Regular.ttf"
+"Noto Sans Lydian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLydian-Regular.ttf"
+"Noto Sans Mahajani Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMahajani-Regular.ttf"
+"Noto Sans Malayalam Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMalayalam-Bold.ttf"
+"Noto Sans Malayalam Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMalayalam-Regular.ttf"
+"Noto Sans Mandaic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMandaic-Regular.ttf"
+"Noto Sans Manichaean Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansManichaean-Regular.ttf"
+"Noto Sans Marchen Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMarchen-Regular.ttf"
+"Noto Sans Math Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMath-Regular.ttf"
+"Noto Sans Meetei Mayek Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMeeteiMayek-Regular.ttf"
+"Noto Sans Mende Kikakui Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMendeKikakui-Regular.ttf"
+"Noto Sans Meroitic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMeroitic-Regular.ttf"
+"Noto Sans Miao Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMiao-Regular.ttf"
+"Noto Sans Modi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansModi-Regular.ttf"
+"Noto Sans Mongolian (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMongolian-Regular.ttf"
+"Noto Sans Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMono-Bold.ttf"
+"Noto Sans Mono CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMono-Regular.ttf"
+"Noto Sans Mro Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMro-Regular.ttf"
+"Noto Sans Multani Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMultani-Regular.ttf"
+"Noto Sans Myanmar Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMyanmar-Bold.ttf"
+"Noto Sans Myanmar Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMyanmar-Regular.ttf"
+"Noto Sans Nabataean Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNabataean-Regular.ttf"
+"Noto Sans New Tai Lue Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNewTaiLue-Regular.ttf"
+"Noto Sans Newa Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNewa-Regular.ttf"
+"Noto Sans NKo Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNKo-Regular.ttf"
+"Noto Sans Ogham Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOgham-Regular.ttf"
+"Noto Sans Ol Chiki Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOlChiki-Regular.ttf"
+"Noto Sans Old Hungarian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldHungarian-Regular.ttf"
+"Noto Sans Old Italic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldItalic-Regular.ttf"
+"Noto Sans Old North Arabian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldNorthArabian-Regular.ttf"
+"Noto Sans Old Permic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldPermic-Regular.ttf"
+"Noto Sans Old Persian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldPersian-Regular.ttf"
+"Noto Sans Old South Arabian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldSouthArabian-Regular.ttf"
+"Noto Sans Old Turkic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldTurkic-Regular.ttf"
+"Noto Sans Oriya (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOriya-Regular.ttf"
+"Noto Sans Oriya Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOriya-Bold.ttf"
+"Noto Sans Osage Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOsage-Regular.ttf"
+"Noto Sans Osmanya Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOsmanya-Regular.ttf"
+"Noto Sans Pahawh Hmong Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPahawhHmong-Regular.ttf"
+"Noto Sans Palmyrene Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPalmyrene-Regular.ttf"
+"Noto Sans Pau Cin Hau Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPauCinHau-Regular.ttf"
+"Noto Sans PhagsPa Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPhagsPa-Regular.ttf"
+"Noto Sans Phoenician Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPhoenician-Regular.ttf"
+"Noto Sans Psalter Pahlavi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPsalterPahlavi-Regular.ttf"
+"Noto Sans Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-Regular.ttf"
+"Noto Sans Rejang Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansRejang-Regular.ttf"
+"Noto Sans Runic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansRunic-Regular.ttf"
+"Noto Sans Samaritan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSamaritan-Regular.ttf"
+"Noto Sans Saurashtra Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSaurashtra-Regular.ttf"
+"Noto Sans Sharada Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSharada-Regular.ttf"
+"Noto Sans Shavian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansShavian-Regular.ttf"
+"Noto Sans Sinhala Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSinhala-Bold.ttf"
+"Noto Sans Sinhala Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSinhala-Regular.ttf"
+"Noto Sans Sora Sompeng Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSoraSompeng-Regular.ttf"
+"Noto Sans Sundanese Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSundanese-Regular.ttf"
+"Noto Sans Syloti Nagri Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSylotiNagri-Regular.ttf"
+"Noto Sans Symbols Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSymbols-Bold.ttf"
+"Noto Sans Symbols Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSymbols-Regular.ttf"
+"Noto Sans Symbols2 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSymbols2-Regular.ttf"
+"Noto Sans Syriac Eastern (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEastern-Regular.ttf"
+"Noto Sans Syriac Estrangela (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEstrangela-Regular.ttf"
+"Noto Sans Syriac Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriac-Regular.ttf"
+"Noto Sans Syriac Western (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacWestern-Regular.ttf"
+"Noto Sans Tagalog Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTagalog-Regular.ttf"
+"Noto Sans Tagbanwa Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTagbanwa-Regular.ttf"
+"Noto Sans Tai Le Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTaiLe-Regular.ttf"
+"Noto Sans Tai Tham (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTaiTham-Regular.ttf"
+"Noto Sans Tai Viet Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTaiViet-Regular.ttf"
+"Noto Sans Takri Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTakri-Regular.ttf"
+"Noto Sans Tamil Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTamil-Bold.ttf"
+"Noto Sans Tamil Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTamil-Regular.ttf"
+"Noto Sans Telugu (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTelugu-Regular.ttf"
+"Noto Sans Telugu Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTelugu-Bold.ttf"
+"Noto Sans Thaana (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThaana-Regular.ttf"
+"Noto Sans Thaana Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThaana-Bold.ttf"
+"Noto Sans Thai Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThai-Bold.ttf"
+"Noto Sans Thai Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThai-Regular.ttf"
+"Noto Sans Tibetan (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTibetan-Regular.ttf"
+"Noto Sans Tibetan Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTibetan-Bold.ttf"
+"Noto Sans Tifinagh Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTifinagh-Regular.ttf"
+"Noto Sans Tirhuta Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTirhuta-Regular.ttf"
+"Noto Sans Ugaritic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansUgaritic-Regular.ttf"
+"Noto Sans Vai Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansVai-Regular.ttf"
+"Noto Sans Warang Citi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansWarangCiti-Regular.ttf"
+"Noto Sans Yi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansYi-Regular.ttf"
+"Noto Serif Ahom Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifAhom-Regular.ttf"
+"Noto Serif Armenian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifArmenian-Bold.ttf"
+"Noto Serif Armenian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifArmenian-Regular.ttf"
+"Noto Serif Balinese Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifBalinese-Regular.ttf"
+"Noto Serif Bengali (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifBengali-Regular.ttf"
+"Noto Serif Bengali Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifBengali-Bold.ttf"
+"Noto Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-Bold.ttf"
+"Noto Serif Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-BoldItalic.ttf"
+"Noto Serif CJK JP (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif CJK KR (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif CJK SC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif CJK TC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif Devanagari (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDevanagari-Regular.ttf"
+"Noto Serif Devanagari Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDevanagari-Bold.ttf"
+"Noto Serif Display Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-Bold.ttf"
+"Noto Serif Display Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-BoldItalic.ttf"
+"Noto Serif Display Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-Italic.ttf"
+"Noto Serif Display Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-Regular.ttf"
+"Noto Serif Ethiopic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifEthiopic-Bold.ttf"
+"Noto Serif Ethiopic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifEthiopic-Regular.ttf"
+"Noto Serif Georgian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGeorgian-Bold.ttf"
+"Noto Serif Georgian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGeorgian-Regular.ttf"
+"Noto Serif Gujarati Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGujarati-Bold.ttf"
+"Noto Serif Gujarati Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGujarati-Regular.ttf"
+"Noto Serif Gurmukhi Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGurmukhi-Bold.ttf"
+"Noto Serif Gurmukhi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGurmukhi-Regular.ttf"
+"Noto Serif Hebrew Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifHebrew-Bold.ttf"
+"Noto Serif Hebrew Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifHebrew-Regular.ttf"
+"Noto Serif Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-Italic.ttf"
+"Noto Serif Kannada Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKannada-Bold.ttf"
+"Noto Serif Kannada Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKannada-Regular.ttf"
+"Noto Serif Khmer Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKhmer-Bold.ttf"
+"Noto Serif Khmer Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKhmer-Regular.ttf"
+"Noto Serif Lao Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifLao-Bold.ttf"
+"Noto Serif Lao Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifLao-Regular.ttf"
+"Noto Serif Malayalam (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMalayalam-Regular.ttf"
+"Noto Serif Malayalam Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMalayalam-Bold.ttf"
+"Noto Serif Myanmar Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMyanmar-Bold.ttf"
+"Noto Serif Myanmar Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMyanmar-Regular.ttf"
+"Noto Serif Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-Regular.ttf"
+"Noto Serif Sinhala Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifSinhala-Bold.ttf"
+"Noto Serif Sinhala Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifSinhala-Regular.ttf"
+"Noto Serif Tamil Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamil-Bold.ttf"
+"Noto Serif Tamil Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamil-Regular.ttf"
+"Noto Serif Tamil Slanted Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamilSlanted-Bold.ttf"
+"Noto Serif Tamil Slanted Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamilSlanted-Regular.ttf"
+"Noto Serif Telugu (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTelugu-Regular.ttf"
+"Noto Serif Telugu Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTelugu-Bold.ttf"
+"Noto Serif Thai Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifThai-Bold.ttf"
+"Noto Serif Thai Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifThai-Regular.ttf"
+"Noto Serif Tibetan Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTibetan-Bold.ttf"
+"Noto Serif Tibetan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTibetan-Regular.ttf"
+"OpenSymbol (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\libreoffice\\opens___.ttf"
+"rsfs10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\rsfs10.ttf"
+"Small Fonts"="smalle.fon"
+"stmary10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\stmary10.ttf"
+"Symbol (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\symbol.ttf"
+"Symbola (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ancient-scripts\\Symbola_hint.ttf"
+"Tahoma (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\tahoma.ttf"
+"Tahoma Bold (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\tahomabd.ttf"
+"Times New Roman (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Times.TTF"
+"Times New Roman Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Timesbd.TTF"
+"Times New Roman Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Timesbi.TTF"
+"Times New Roman Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Timesi.TTF"
+"Trebuchet MS (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\trebuc.ttf"
+"Trebuchet MS Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Trebucbd.ttf"
+"Trebuchet MS Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\trebucbi.ttf"
+"Trebuchet MS Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\trebucit.ttf"
+"Unifont (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont.ttf"
+"Unifont CSUR (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont_csur.ttf"
+"Unifont Upper (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont_upper.ttf"
+"Verdana (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdana.TTF"
+"Verdana Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdanab.TTF"
+"Verdana Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdanaz.TTF"
+"Verdana Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdanai.TTF"
+"wasy10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\wasy10.ttf"
+"Webdings (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\webdings.ttf"
+"Wingdings (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\wingding.ttf"
+"\x5fae\x8f6f\x96c5\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyh.ttf"
+"\x5fae\x8f6f\x96c5\x9ed1 Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyhbd.ttf"
+"\x6587\x6cc9\x9a7f\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"\x6587\x6cc9\x9a7f\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"\x6587\x6cc9\x9a7f\x70b9\x9635\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"\x6587\x6cc9\x9a7f\x7b49\x5bbd\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"\x6587\x6cc9\x9a7f\x7b49\x5bbd\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Group Policy] 1660099897
+#time=1d8ac641c4dc5f4
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Installer] 1660099897
+#time=1d8ac641c4dc748
+"InstallerLocation"="C:\\windows\\system32"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap] 1660099897
+#time=1d8ac641c2cc78c
+@=""
+"IntranetName"=dword:00000001
+"ProxyByPass"=dword:00000001
+"UNCAsIntranet"=dword:00000001
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains] 1660099897
+#time=1d8ac641c2cc4f8
+@=""
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\ProtocolDefaults] 1660099897
+#time=1d8ac641c2cc1f6
+@=""
+"@ivt"=dword:00000001
+"file"=dword:00000003
+"ftp"=dword:00000003
+"http"=dword:00000003
+"https"=dword:00000003
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Ranges] 1660099897
+#time=1d8ac641c2cc822
+@=""
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\0] 1660099897
+#time=1d8ac641c2d87da
+@=""
+"1001"=dword:00000000
+"1004"=dword:00000000
+"1200"=dword:00000000
+"1201"=dword:00000001
+"1400"=dword:00000000
+"1402"=dword:00000000
+"1405"=dword:00000000
+"1406"=dword:00000000
+"1407"=dword:00000000
+"1601"=dword:00000000
+"1604"=dword:00000000
+"1605"=dword:00000000
+"1606"=dword:00000000
+"1607"=dword:00000000
+"1608"=dword:00000000
+"1609"=dword:00000001
+"1800"=dword:00000000
+"1802"=dword:00000000
+"1803"=dword:00000000
+"1804"=dword:00000000
+"1805"=dword:00000000
+"1A00"=dword:00000000
+"1A02"=dword:00000000
+"1A03"=dword:00000000
+"1A04"=dword:00000000
+"1A05"=dword:00000000
+"1A06"=dword:00000000
+"1A10"=dword:00000000
+"1C00"=dword:00020000
+"1E05"=dword:00030000
+"CurrentLevel"=dword:00000000
+"Description"="Your computer"
+"DisplayName"="My Computer"
+"Flags"=dword:00000021
+"Icon"="explorer.exe#0100"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1] 1660099897
+#time=1d8ac641c2e10a6
+@=""
+"1001"=dword:00000001
+"1004"=dword:00000003
+"1200"=dword:00000000
+"1201"=dword:00000003
+"1400"=dword:00000000
+"1402"=dword:00000000
+"1405"=dword:00000000
+"1406"=dword:00000001
+"1407"=dword:00000000
+"1601"=dword:00000000
+"1604"=dword:00000000
+"1605"=dword:00000000
+"1606"=dword:00000000
+"1607"=dword:00000000
+"1608"=dword:00000000
+"1609"=dword:00000001
+"1800"=dword:00000001
+"1802"=dword:00000000
+"1803"=dword:00000000
+"1804"=dword:00000001
+"1805"=dword:00000000
+"1A00"=dword:00020000
+"1A02"=dword:00000000
+"1A03"=dword:00000000
+"1A04"=dword:00000000
+"1A05"=dword:00000000
+"1A06"=dword:00000000
+"1A10"=dword:00000000
+"1C00"=dword:00020000
+"1E05"=dword:00020000
+"CurrentLevel"=dword:00010500
+"Description"="This zone contains all Web sites that are on your organization's intranet."
+"DisplayName"="Local intranet"
+"Flags"=dword:000000db
+"Icon"="shell32.dll#0018"
+"MinLevel"=dword:00010000
+"RecommendedLevel"=dword:00010500
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2] 1660099897
+#time=1d8ac641c2eb09c
+@=""
+"1001"=dword:00000000
+"1004"=dword:00000001
+"1200"=dword:00000000
+"1201"=dword:00000001
+"1400"=dword:00000000
+"1402"=dword:00000000
+"1405"=dword:00000000
+"1406"=dword:00000000
+"1407"=dword:00000000
+"1601"=dword:00000000
+"1604"=dword:00000000
+"1605"=dword:00000000
+"1606"=dword:00000000
+"1607"=dword:00000000
+"1608"=dword:00000000
+"1609"=dword:00000001
+"1800"=dword:00000000
+"1802"=dword:00000000
+"1803"=dword:00000000
+"1804"=dword:00000000
+"1805"=dword:00000000
+"1A00"=dword:00000000
+"1A02"=dword:00000000
+"1A03"=dword:00000000
+"1A04"=dword:00000000
+"1A05"=dword:00000000
+"1A06"=dword:00000000
+"1A10"=dword:00000000
+"1C00"=dword:00030000
+"1E05"=dword:00030000
+"CurrentLevel"=dword:00010000
+"Description"="This zone contains Web sites that you trust not to damage your computer or data."
+"DisplayName"="Trusted sites"
+"Flags"=dword:00000047
+"Icon"="inetcpl.cpl#00004480"
+"MinLevel"=dword:00010000
+"RecommendedLevel"=dword:00010000
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3] 1660099897
+#time=1d8ac641c2f568c
+@=""
+"1001"=dword:00000001
+"1004"=dword:00000003
+"1200"=dword:00000000
+"1201"=dword:00000003
+"1400"=dword:00000000
+"1402"=dword:00000000
+"1405"=dword:00000000
+"1406"=dword:00000003
+"1407"=dword:00000000
+"1601"=dword:00000001
+"1604"=dword:00000000
+"1605"=dword:00000000
+"1606"=dword:00000000
+"1607"=dword:00000000
+"1608"=dword:00000000
+"1609"=dword:00000001
+"1800"=dword:00000001
+"1802"=dword:00000000
+"1803"=dword:00000000
+"1804"=dword:00000001
+"1805"=dword:00000001
+"1A00"=dword:00020000
+"1A02"=dword:00000000
+"1A03"=dword:00000000
+"1A04"=dword:00000003
+"1A05"=dword:00000001
+"1A06"=dword:00000000
+"1A10"=dword:00000001
+"1C00"=dword:00010000
+"1E05"=dword:00020000
+"CurrentLevel"=dword:00011000
+"Description"="This zone contains all Web sites you haven't placed in other zones"
+"DisplayName"="Internet"
+"Flags"=dword:00000001
+"Icon"="inetcpl.cpl#001313"
+"MinLevel"=dword:00011000
+"RecommendedLevel"=dword:00011000
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\4] 1660099897
+#time=1d8ac641c2ff894
+@=""
+"1001"=dword:00000003
+"1004"=dword:00000003
+"1200"=dword:00000003
+"1201"=dword:00000003
+"1400"=dword:00000003
+"1402"=dword:00000003
+"1405"=dword:00000003
+"1406"=dword:00000003
+"1407"=dword:00000003
+"1601"=dword:00000001
+"1604"=dword:00000001
+"1605"=dword:00000000
+"1606"=dword:00000003
+"1607"=dword:00000003
+"1608"=dword:00000003
+"1609"=dword:00000001
+"1800"=dword:00000003
+"1802"=dword:00000001
+"1803"=dword:00000003
+"1804"=dword:00000003
+"1805"=dword:00000001
+"1A00"=dword:00010000
+"1A02"=dword:00000003
+"1A03"=dword:00000003
+"1A04"=dword:00000003
+"1A05"=dword:00000003
+"1A06"=dword:00000003
+"1A10"=dword:00000003
+"1C00"=dword:00000000
+"1E05"=dword:00010000
+"CurrentLevel"=dword:00012000
+"Description"="This zone contains Web sites that could potentially damage your computer or data."
+"DisplayName"="Restricted sites"
+"Flags"=dword:00000003
+"Icon"="inetcpl.cpl#00004481"
+"MinLevel"=dword:00012000
+"RecommendedLevel"=dword:00012000
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System] 1660099897
+#time=1d8ac641c4dccf2
+"EnableLUA"=dword:00000000
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\PreviewHandlers] 1660099897
+#time=1d8ac641c4dcdb0
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Run] 1660099897
+#time=1d8ac641c4dce82
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce] 1660099898
+#time=1d8ac641c9ce1b6
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\RunServices] 1660099897
+#time=1d8ac641c50ed24
+"winemenubuilder"="C:\\windows\\system32\\winemenubuilder.exe -a -r"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\RunServicesOnce] 1660099895
+#time=1d8ac641ac153a4
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Setup] 1660099897
+#time=1d8ac641c4dd51c
+"BootDir"="C:\\"
+"SharedDir"="C:\\windows"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Setup\\WindowsFeatures\\WindowsMediaVersion] 1660099897
+#time=1d8ac641c4dd76a
+@="12.0.7601.18840"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Shell Extensions\\Approved] 1660099897
+#time=1d8ac641c4ddb84
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony] 1660099897
+#time=1d8ac641c512eba
+"Perf1"=dword:5045524a
+"Perf2"=dword:50455246
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List] 1660099897
+#time=1d8ac641c5863a6
+"CountryListVersion"=dword:00000019
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\1] 1660099897
+#time=1d8ac641c51357c
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="United States of America"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\101] 1660099897
+#time=1d8ac641c513bda
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Anguilla"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\102] 1660099897
+#time=1d8ac641c514260
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Antigua"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\103] 1660099897
+#time=1d8ac641c514896
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Bahamas"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\104] 1660099897
+#time=1d8ac641c514ecc
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Barbados"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\105] 1660099897
+#time=1d8ac641c515502
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Bermuda"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\106] 1660099897
+#time=1d8ac641c515b2e
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="British Virgin Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\107] 1660099897
+#time=1d8ac641c516182
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Canada"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\108] 1660099897
+#time=1d8ac641c5167d6
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Cayman Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\109] 1660099897
+#time=1d8ac641c516e16
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Dominica"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\110] 1660099897
+#time=1d8ac641c517514
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Dominican Republic"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\111] 1660099897
+#time=1d8ac641c517b5e
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Grenada"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\112] 1660099897
+#time=1d8ac641c5181b2
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Jamaica"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\113] 1660099897
+#time=1d8ac641c5187ca
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Montserrat"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\115] 1660099897
+#time=1d8ac641c518e0a
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="St. Kitts and Nevis"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\116] 1660099897
+#time=1d8ac641c51944a
+"CountryCode"=dword:00000001
+"InternationalRule"="0EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="St. Vincent and the Grenadines"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\117] 1660099897
+#time=1d8ac641c519ab2
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Trinidad and Tobago"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\118] 1660099897
+#time=1d8ac641c51a0f2
+"CountryCode"=dword:00000001
+"InternationalRule"="0EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Turks and Caicos Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\120] 1660099897
+#time=1d8ac641c51a71e
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Barbuda"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\121] 1660099897
+#time=1d8ac641c51ad54
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Puerto Rico"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\122] 1660099897
+#time=1d8ac641c51b380
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Saint Lucia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\123] 1660099897
+#time=1d8ac641c51b9b6
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="United States Virgin Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\124] 1660099897
+#time=1d8ac641c51bfec
+"CountryCode"=dword:00000001
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Guam"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\20] 1660099897
+#time=1d8ac641c51c668
+"CountryCode"=dword:00000014
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Egypt"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\212] 1660099897
+#time=1d8ac641c51cc58
+"CountryCode"=dword:000000d4
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Morocco"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\213] 1660099897
+#time=1d8ac641c51d1ee
+"CountryCode"=dword:000000d5
+"InternationalRule"="00,EFG"
+"LongDistanceRule"="0FG"
+"Name"="Algeria"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\216] 1660099897
+#time=1d8ac641c51d7e8
+"CountryCode"=dword:000000d8
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Tunisia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\218] 1660099897
+#time=1d8ac641c51dd74
+"CountryCode"=dword:000000da
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Libya"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\220] 1660099897
+#time=1d8ac641c51e300
+"CountryCode"=dword:000000dc
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Gambia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\221] 1660099897
+#time=1d8ac641c51e8a0
+"CountryCode"=dword:000000dd
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Senegal Republic"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\222] 1660099897
+#time=1d8ac641c520308
+"CountryCode"=dword:000000de
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Mauritania"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\223] 1660099897
+#time=1d8ac641c521334
+"CountryCode"=dword:000000df
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Mali"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\224] 1660099897
+#time=1d8ac641c52199c
+"CountryCode"=dword:000000e0
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Guinea"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\225] 1660099897
+#time=1d8ac641c521fb4
+"CountryCode"=dword:000000e1
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Cote d'Ivoire"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\226] 1660099897
+#time=1d8ac641c5275b8
+"CountryCode"=dword:000000e2
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Burkina Faso"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\227] 1660099897
+#time=1d8ac641c527bee
+"CountryCode"=dword:000000e3
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Niger"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\228] 1660099897
+#time=1d8ac641c5281ca
+"CountryCode"=dword:000000e4
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Togo"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\229] 1660099897
+#time=1d8ac641c52876a
+"CountryCode"=dword:000000e5
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Benin"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\230] 1660099897
+#time=1d8ac641c528d0a
+"CountryCode"=dword:000000e6
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Mauritius"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\231] 1660099897
+#time=1d8ac641c529296
+"CountryCode"=dword:000000e7
+"InternationalRule"="0EFG"
+"LongDistanceRule"=""
+"Name"="Liberia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\232] 1660099897
+#time=1d8ac641c52985e
+"CountryCode"=dword:000000e8
+"InternationalRule"="00EFG"
+"LongDistanceRule"="IG"
+"Name"="Sierra Leone"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\233] 1660099897
+#time=1d8ac641c529ebc
+"CountryCode"=dword:000000e9
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Ghana"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\234] 1660099897
+#time=1d8ac641c52a466
+"CountryCode"=dword:000000ea
+"InternationalRule"="009EFG"
+"LongDistanceRule"="0FG"
+"Name"="Nigeria"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\235] 1660099897
+#time=1d8ac641c52aa06
+"CountryCode"=dword:000000eb
+"InternationalRule"="15EFG"
+"LongDistanceRule"=""
+"Name"="Chad"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\236] 1660099897
+#time=1d8ac641c52b064
+"CountryCode"=dword:000000ec
+"InternationalRule"="19EFG"
+"LongDistanceRule"=""
+"Name"="Central African Republic"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\237] 1660099897
+#time=1d8ac641c52b636
+"CountryCode"=dword:000000ed
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Cameroon"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\238] 1660099897
+#time=1d8ac641c52bbf4
+"CountryCode"=dword:000000ee
+"InternationalRule"="0EFG"
+"LongDistanceRule"=""
+"Name"="Cape Verde Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\239] 1660099897
+#time=1d8ac641c52c1a8
+"CountryCode"=dword:000000ef
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Sao Tome and Principe"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\240] 1660099897
+#time=1d8ac641c52c784
+"CountryCode"=dword:000000f0
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Equatorial Guinea"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\241] 1660099897
+#time=1d8ac641c52cd4c
+"CountryCode"=dword:000000f1
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Gabon"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\242] 1660099897
+#time=1d8ac641c52e03e
+"CountryCode"=dword:000000f2
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Congo"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\243] 1660099897
+#time=1d8ac641c52e638
+"CountryCode"=dword:000000f3
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Congo, Democratic Republic of the"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\244] 1660099897
+#time=1d8ac641c52ebce
+"CountryCode"=dword:000000f4
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Angola"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\245] 1660099897
+#time=1d8ac641c52f1f0
+"CountryCode"=dword:000000f5
+"InternationalRule"="099EFG"
+"LongDistanceRule"=""
+"Name"="Guinea-Bissau"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\246] 1660099897
+#time=1d8ac641c52f84e
+"CountryCode"=dword:000000f6
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Diego Garcia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\247] 1660099897
+#time=1d8ac641c52fe52
+"CountryCode"=dword:000000f7
+"InternationalRule"="01EFG"
+"LongDistanceRule"=""
+"Name"="Ascension Island"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\248] 1660099897
+#time=1d8ac641c530456
+"CountryCode"=dword:000000f8
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Seychelles"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\249] 1660099897
+#time=1d8ac641c530a6e
+"CountryCode"=dword:000000f9
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Sudan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\250] 1660099897
+#time=1d8ac641c531068
+"CountryCode"=dword:000000fa
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Rwanda"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\251] 1660099897
+#time=1d8ac641c531676
+"CountryCode"=dword:000000fb
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Ethiopia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\252] 1660099897
+#time=1d8ac641c531c84
+"CountryCode"=dword:000000fc
+"InternationalRule"="19,EFG"
+"LongDistanceRule"=""
+"Name"="Somalia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\253] 1660099897
+#time=1d8ac641c53229c
+"CountryCode"=dword:000000fd
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Djibouti"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\254] 1660099897
+#time=1d8ac641c532cb0
+"CountryCode"=dword:000000fe
+"InternationalRule"="000EFG"
+"LongDistanceRule"="0FG"
+"Name"="Kenya"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\255] 1660099897
+#time=1d8ac641c53385e
+"CountryCode"=dword:000000ff
+"InternationalRule"="0900EFG"
+"LongDistanceRule"="0FG"
+"Name"="Tanzania"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\256] 1660099897
+#time=1d8ac641c5341dc
+"CountryCode"=dword:00000100
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Uganda"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\257] 1660099897
+#time=1d8ac641c535230
+"CountryCode"=dword:00000101
+"InternationalRule"="90EFG"
+"LongDistanceRule"=""
+"Name"="Burundi"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\258] 1660099897
+#time=1d8ac641c5357ee
+"CountryCode"=dword:00000102
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Mozambique"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\260] 1660099897
+#time=1d8ac641c535d66
+"CountryCode"=dword:00000104
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Zambia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\261] 1660099897
+#time=1d8ac641c53636a
+"CountryCode"=dword:00000105
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Madagascar"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\262] 1660099897
+#time=1d8ac641c536946
+"CountryCode"=dword:00000106
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Reunion Island"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\263] 1660099897
+#time=1d8ac641c536ed2
+"CountryCode"=dword:00000107
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Zimbabwe"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\264] 1660099897
+#time=1d8ac641c537490
+"CountryCode"=dword:00000108
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Namibia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\265] 1660099897
+#time=1d8ac641c537b52
+"CountryCode"=dword:00000109
+"InternationalRule"="101EFG"
+"LongDistanceRule"=""
+"Name"="Malawi"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\266] 1660099897
+#time=1d8ac641c5381ba
+"CountryCode"=dword:0000010a
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Lesotho"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\267] 1660099897
+#time=1d8ac641c5387fa
+"CountryCode"=dword:0000010b
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Botswana"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\268] 1660099897
+#time=1d8ac641c538e3a
+"CountryCode"=dword:0000010c
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Swaziland"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\269] 1660099897
+#time=1d8ac641c539452
+"CountryCode"=dword:0000010d
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Mayotte Island"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\2691] 1660099897
+#time=1d8ac641c539a88
+"CountryCode"=dword:0000010d
+"InternationalRule"="10EFG"
+"LongDistanceRule"=""
+"Name"="Comoros"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\27] 1660099897
+#time=1d8ac641c53a186
+"CountryCode"=dword:0000001b
+"InternationalRule"="09EFG"
+"LongDistanceRule"="0FG"
+"Name"="South Africa"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\290] 1660099897
+#time=1d8ac641c53b1b2
+"CountryCode"=dword:00000122
+"InternationalRule"="01EFG"
+"LongDistanceRule"=""
+"Name"="St. Helena"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\291] 1660099897
+#time=1d8ac641c53b9f0
+"CountryCode"=dword:00000123
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Eritrea"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\297] 1660099897
+#time=1d8ac641c53c17a
+"CountryCode"=dword:00000129
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Aruba"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\298] 1660099897
+#time=1d8ac641c53c77e
+"CountryCode"=dword:0000012a
+"InternationalRule"="009EFG"
+"LongDistanceRule"=""
+"Name"="Faroe Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\299] 1660099897
+#time=1d8ac641c53ce2c
+"CountryCode"=dword:0000012b
+"InternationalRule"="009EFG"
+"LongDistanceRule"=""
+"Name"="Greenland"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\30] 1660099897
+#time=1d8ac641c53d43a
+"CountryCode"=dword:0000001e
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Greece"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\31] 1660099897
+#time=1d8ac641c53da84
+"CountryCode"=dword:0000001f
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Netherlands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\32] 1660099897
+#time=1d8ac641c53e0a6
+"CountryCode"=dword:00000020
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Belgium"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\33] 1660099897
+#time=1d8ac641c53e736
+"CountryCode"=dword:00000021
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="France"
+"SameAreaRule"="0FG"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\34] 1660099897
+#time=1d8ac641c53ed76
+"CountryCode"=dword:00000022
+"InternationalRule"="00,EFG"
+"LongDistanceRule"="IG"
+"Name"="Spain"
+"SameAreaRule"="IG"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\350] 1660099897
+#time=1d8ac641c53f37a
+"CountryCode"=dword:0000015e
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Gibraltar"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\351] 1660099897
+#time=1d8ac641c53fa14
+"CountryCode"=dword:0000015f
+"InternationalRule"="00EFG"
+"LongDistanceRule"="IG"
+"Name"="Portugal"
+"SameAreaRule"="IG"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\352] 1660099897
+#time=1d8ac641c540022
+"CountryCode"=dword:00000160
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Luxembourg"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\353] 1660099897
+#time=1d8ac641c54064e
+"CountryCode"=dword:00000161
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Ireland"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\354] 1660099897
+#time=1d8ac641c540c52
+"CountryCode"=dword:00000162
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Iceland"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\355] 1660099897
+#time=1d8ac641c54124c
+"CountryCode"=dword:00000163
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Albania"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\356] 1660099897
+#time=1d8ac641c541846
+"CountryCode"=dword:00000164
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Malta"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\357] 1660099897
+#time=1d8ac641c541ecc
+"CountryCode"=dword:00000165
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Cyprus"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\358] 1660099897
+#time=1d8ac641c5425a2
+"CountryCode"=dword:00000166
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Finland"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\359] 1660099897
+#time=1d8ac641c542bc4
+"CountryCode"=dword:00000167
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Bulgaria"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\36] 1660099897
+#time=1d8ac641c5431dc
+"CountryCode"=dword:00000024
+"InternationalRule"="00EFG"
+"LongDistanceRule"=" 06,FG"
+"Name"="Hungary"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\370] 1660099897
+#time=1d8ac641c5437d6
+"CountryCode"=dword:00000172
+"InternationalRule"="8W10EFG"
+"LongDistanceRule"=" 8WFG"
+"Name"="Lithuania"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\371] 1660099897
+#time=1d8ac641c543dee
+"CountryCode"=dword:00000173
+"InternationalRule"="00EFG"
+"LongDistanceRule"=" 8,FG"
+"Name"="Latvia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\372] 1660099897
+#time=1d8ac641c5443fc
+"CountryCode"=dword:00000174
+"InternationalRule"="8,00EFG"
+"LongDistanceRule"=" 8,2IG"
+"Name"="Estonia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\373] 1660099897
+#time=1d8ac641c544a00
+"CountryCode"=dword:00000175
+"InternationalRule"="8W10EFG"
+"LongDistanceRule"=" 8WFG"
+"Name"="Moldova"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\374] 1660099897
+#time=1d8ac641c545022
+"CountryCode"=dword:00000176
+"InternationalRule"="8,10EFG"
+"LongDistanceRule"=" 8,IG"
+"Name"="Armenia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\375] 1660099897
+#time=1d8ac641c545630
+"CountryCode"=dword:00000177
+"InternationalRule"="8W10EFG"
+"LongDistanceRule"=" 8WFG"
+"Name"="Belarus"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\376] 1660099897
+#time=1d8ac641c545c3e
+"CountryCode"=dword:00000178
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Andorra"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\377] 1660099897
+#time=1d8ac641c54674c
+"CountryCode"=dword:00000179
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Monaco"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\378] 1660099897
+#time=1d8ac641c54758e
+"CountryCode"=dword:0000017a
+"InternationalRule"="00EFG"
+"LongDistanceRule"="IG"
+"Name"="San Marino"
+"SameAreaRule"="IG"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\379] 1660099897
+#time=1d8ac641c5485ec
+"CountryCode"=dword:00000027
+"InternationalRule"="00EFG"
+"LongDistanceRule"="IG"
+"Name"="Vatican City"
+"SameAreaRule"="IG"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\380] 1660099897
+#time=1d8ac641c5491ae
+"CountryCode"=dword:0000017c
+"InternationalRule"="8W10EFG"
+"LongDistanceRule"=" 8WFG"
+"Name"="Ukraine"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\381] 1660099897
+#time=1d8ac641c54982a
+"CountryCode"=dword:0000017d
+"InternationalRule"="99EFG"
+"LongDistanceRule"="0FG"
+"Name"="Yugoslavia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\385] 1660099897
+#time=1d8ac641c54a324
+"CountryCode"=dword:00000181
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Croatia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\386] 1660099897
+#time=1d8ac641c54aa68
+"CountryCode"=dword:00000182
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Slovenia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\387] 1660099897
+#time=1d8ac641c54b24c
+"CountryCode"=dword:00000183
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Bosnia and Herzegovina"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\389] 1660099897
+#time=1d8ac641c54b9ae
+"CountryCode"=dword:00000185
+"InternationalRule"="99EFG"
+"LongDistanceRule"="0FG"
+"Name"="F.Y.R.O.M. (Former Yugoslav Republic of Macedonia)"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\39] 1660099897
+#time=1d8ac641c54c14c
+"CountryCode"=dword:00000027
+"InternationalRule"="00EFG"
+"LongDistanceRule"="IG"
+"Name"="Italy"
+"SameAreaRule"="IG"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\40] 1660099897
+#time=1d8ac641c54c778
+"CountryCode"=dword:00000028
+"InternationalRule"="00EFG"
+"LongDistanceRule"=" 0FG"
+"Name"="Romania"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\41] 1660099897
+#time=1d8ac641c54cd9a
+"CountryCode"=dword:00000029
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Switzerland"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\420] 1660099897
+#time=1d8ac641c54d3bc
+"CountryCode"=dword:000001a4
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Czech Republic"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\421] 1660099897
+#time=1d8ac641c54d9f2
+"CountryCode"=dword:000001a5
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Slovakia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\423] 1660099897
+#time=1d8ac641c54e03c
+"CountryCode"=dword:000001a7
+"InternationalRule"="00EFG"
+"LongDistanceRule"="G"
+"Name"="Liechtenstein"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\43] 1660099897
+#time=1d8ac641c54e654
+"CountryCode"=dword:0000002b
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Austria"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\44] 1660099897
+#time=1d8ac641c54ec9e
+"CountryCode"=dword:0000002c
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="United Kingdom"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\45] 1660099897
+#time=1d8ac641c54f2c0
+"CountryCode"=dword:0000002d
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Denmark"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\46] 1660099897
+#time=1d8ac641c54f982
+"CountryCode"=dword:0000002e
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Sweden"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\47] 1660099897
+#time=1d8ac641c54ff5e
+"CountryCode"=dword:0000002f
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Norway"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\48] 1660099897
+#time=1d8ac641c5504fe
+"CountryCode"=dword:00000030
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Poland"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\49] 1660099897
+#time=1d8ac641c550a8a
+"CountryCode"=dword:00000031
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Germany"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\500] 1660099897
+#time=1d8ac641c55103e
+"CountryCode"=dword:000001f4
+"InternationalRule"="0EFG"
+"LongDistanceRule"=""
+"Name"="Falkland Islands (Islas Malvinas)"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\501] 1660099897
+#time=1d8ac641c5515ca
+"CountryCode"=dword:000001f5
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Belize"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\502] 1660099897
+#time=1d8ac641c551b6a
+"CountryCode"=dword:000001f6
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Guatemala"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\503] 1660099897
+#time=1d8ac641c5521d2
+"CountryCode"=dword:000001f7
+"InternationalRule"="0EFG"
+"LongDistanceRule"=""
+"Name"="El Salvador"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\504] 1660099897
+#time=1d8ac641c55275e
+"CountryCode"=dword:000001f8
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Honduras"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\505] 1660099897
+#time=1d8ac641c552cea
+"CountryCode"=dword:000001f9
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Nicaragua"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\506] 1660099897
+#time=1d8ac641c5532b2
+"CountryCode"=dword:000001fa
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Costa Rica"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\507] 1660099897
+#time=1d8ac641c55388e
+"CountryCode"=dword:000001fb
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Panama"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\508] 1660099897
+#time=1d8ac641c553e10
+"CountryCode"=dword:000001fc
+"InternationalRule"="00,EFG"
+"LongDistanceRule"=""
+"Name"="St. Pierre and Miquelon"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\509] 1660099897
+#time=1d8ac641c554392
+"CountryCode"=dword:000001fd
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Haiti"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\51] 1660099897
+#time=1d8ac641c554950
+"CountryCode"=dword:00000033
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Peru"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\52] 1660099897
+#time=1d8ac641c554f04
+"CountryCode"=dword:00000034
+"InternationalRule"="00EFG"
+"LongDistanceRule"=" 01FG"
+"Name"="Mexico"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\53] 1660099897
+#time=1d8ac641c5555b2
+"CountryCode"=dword:00000035
+"InternationalRule"="119EFG"
+"LongDistanceRule"="0FG"
+"Name"="Cuba"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\5399] 1660099897
+#time=1d8ac641c555b48
+"CountryCode"=dword:00000035
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Guantanamo Bay"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\54] 1660099897
+#time=1d8ac641c5560fc
+"CountryCode"=dword:00000036
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Argentina"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\55] 1660099897
+#time=1d8ac641c556688
+"CountryCode"=dword:00000037
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Brazil"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\56] 1660099897
+#time=1d8ac641c556c3c
+"CountryCode"=dword:00000038
+"InternationalRule"="00EFG"
+"LongDistanceRule"="FG"
+"Name"="Chile"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\57] 1660099897
+#time=1d8ac641c55720e
+"CountryCode"=dword:00000039
+"InternationalRule"="009EFG"
+"LongDistanceRule"="09FG"
+"Name"="Colombia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\58] 1660099897
+#time=1d8ac641c55779a
+"CountryCode"=dword:0000003a
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Venezuela"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\590] 1660099897
+#time=1d8ac641c557d3a
+"CountryCode"=dword:0000024e
+"InternationalRule"="00,EFG"
+"LongDistanceRule"=""
+"Name"="Guadeloupe"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\5901] 1660099897
+#time=1d8ac641c55835c
+"CountryCode"=dword:0000024e
+"InternationalRule"="00,EFG"
+"LongDistanceRule"=""
+"Name"="French Antilles"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\591] 1660099897
+#time=1d8ac641c5589a6
+"CountryCode"=dword:0000024f
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Bolivia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\592] 1660099897
+#time=1d8ac641c558fc8
+"CountryCode"=dword:00000250
+"InternationalRule"="001EFG"
+"LongDistanceRule"="0FG"
+"Name"="Guyana"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\593] 1660099897
+#time=1d8ac641c559856
+"CountryCode"=dword:00000251
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Ecuador"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\594] 1660099897
+#time=1d8ac641c55a5da
+"CountryCode"=dword:00000252
+"InternationalRule"="00,EFG"
+"LongDistanceRule"=""
+"Name"="French Guiana"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\595] 1660099897
+#time=1d8ac641c55b066
+"CountryCode"=dword:00000253
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Paraguay"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\596] 1660099897
+#time=1d8ac641c55bc46
+"CountryCode"=dword:00000254
+"InternationalRule"="00,EFG"
+"LongDistanceRule"=""
+"Name"="Martinique"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\597] 1660099897
+#time=1d8ac641c55cb96
+"CountryCode"=dword:00000255
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Suriname"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\598] 1660099897
+#time=1d8ac641c55d244
+"CountryCode"=dword:00000256
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Uruguay"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\599] 1660099897
+#time=1d8ac641c55d87a
+"CountryCode"=dword:00000257
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Netherlands Antilles"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\60] 1660099897
+#time=1d8ac641c55dea6
+"CountryCode"=dword:0000003c
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Malaysia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\61] 1660099897
+#time=1d8ac641c55e52c
+"CountryCode"=dword:0000003d
+"InternationalRule"="0011EFG"
+"LongDistanceRule"=" 0FG"
+"Name"="Australia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\6101] 1660099897
+#time=1d8ac641c55eb62
+"CountryCode"=dword:0000003d
+"InternationalRule"="00EFG"
+"LongDistanceRule"=" 0FG"
+"Name"="Cocos-Keeling Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\62] 1660099897
+#time=1d8ac641c55f18e
+"CountryCode"=dword:0000003e
+"InternationalRule"="001EFG"
+"LongDistanceRule"="0FG"
+"Name"="Indonesia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\63] 1660099897
+#time=1d8ac641c55f7ba
+"CountryCode"=dword:0000003f
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Philippines"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\64] 1660099897
+#time=1d8ac641c55fe4a
+"CountryCode"=dword:00000040
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="New Zealand"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\65] 1660099897
+#time=1d8ac641c560476
+"CountryCode"=dword:00000041
+"InternationalRule"="001EFG"
+"LongDistanceRule"=""
+"Name"="Singapore"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\66] 1660099897
+#time=1d8ac641c560ad4
+"CountryCode"=dword:00000042
+"InternationalRule"="001EFG"
+"LongDistanceRule"="0FG"
+"Name"="Thailand"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\670] 1660099897
+#time=1d8ac641c561100
+"CountryCode"=dword:0000029e
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Saipan Island"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\6701] 1660099897
+#time=1d8ac641c561736
+"CountryCode"=dword:0000029e
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Rota Island"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\6702] 1660099897
+#time=1d8ac641c561da8
+"CountryCode"=dword:0000029e
+"InternationalRule"="011EFG"
+"LongDistanceRule"=" 1FG"
+"Name"="Tinian Island"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\672] 1660099897
+#time=1d8ac641c5623ca
+"CountryCode"=dword:000002a0
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Christmas Island"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\6722] 1660099897
+#time=1d8ac641c5629f6
+"CountryCode"=dword:000002a0
+"InternationalRule"="0101EFG"
+"LongDistanceRule"=""
+"Name"="Norfolk Island"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\673] 1660099897
+#time=1d8ac641c563022
+"CountryCode"=dword:000002a1
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Brunei"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\674] 1660099897
+#time=1d8ac641c56409e
+"CountryCode"=dword:000002a2
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Nauru"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\675] 1660099897
+#time=1d8ac641c5647ec
+"CountryCode"=dword:000002a3
+"InternationalRule"="05EFG"
+"LongDistanceRule"=""
+"Name"="Papua New Guinea"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\676] 1660099897
+#time=1d8ac641c5651a6
+"CountryCode"=dword:000002a4
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Tonga"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\677] 1660099897
+#time=1d8ac641c5657f0
+"CountryCode"=dword:000002a5
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Solomon Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\678] 1660099897
+#time=1d8ac641c565d72
+"CountryCode"=dword:000002a6
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Vanuatu"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\679] 1660099897
+#time=1d8ac641c5663e4
+"CountryCode"=dword:000002a7
+"InternationalRule"="05EFG"
+"LongDistanceRule"=""
+"Name"="Fiji Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\680] 1660099897
+#time=1d8ac641c5669c0
+"CountryCode"=dword:000002a8
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Palau"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\681] 1660099897
+#time=1d8ac641c566f4c
+"CountryCode"=dword:000002a9
+"InternationalRule"="00,EFG"
+"LongDistanceRule"=""
+"Name"="Wallis and Futuna Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\682] 1660099897
+#time=1d8ac641c5674d8
+"CountryCode"=dword:000002aa
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Cook Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\683] 1660099897
+#time=1d8ac641c567adc
+"CountryCode"=dword:000002ab
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Niue"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\684] 1660099897
+#time=1d8ac641c568068
+"CountryCode"=dword:000002ac
+"InternationalRule"="1EFG"
+"LongDistanceRule"=""
+"Name"="American Samoa"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\685] 1660099897
+#time=1d8ac641c56864e
+"CountryCode"=dword:000002ad
+"InternationalRule"="0EFG"
+"LongDistanceRule"=""
+"Name"="Samoa"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\686] 1660099897
+#time=1d8ac641c568bf8
+"CountryCode"=dword:000002ae
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Kiribati"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\687] 1660099897
+#time=1d8ac641c5691a2
+"CountryCode"=dword:000002af
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="New Caledonia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\688] 1660099897
+#time=1d8ac641c569756
+"CountryCode"=dword:000002b0
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Tuvalu"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\689] 1660099897
+#time=1d8ac641c569d0a
+"CountryCode"=dword:000002b1
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="French Polynesia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\690] 1660099897
+#time=1d8ac641c56a304
+"CountryCode"=dword:000002b2
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Tokelau"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\691] 1660099897
+#time=1d8ac641c56a8c2
+"CountryCode"=dword:000002b3
+"InternationalRule"="011EFG"
+"LongDistanceRule"=""
+"Name"="Micronesia, Federated States of"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\692] 1660099897
+#time=1d8ac641c56ae6c
+"CountryCode"=dword:000002b4
+"InternationalRule"="011EFG"
+"LongDistanceRule"="1FG"
+"Name"="Marshall Islands"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\7] 1660099897
+#time=1d8ac641c56b402
+"CountryCode"=dword:00000007
+"InternationalRule"="8W10EFG"
+"LongDistanceRule"=" 8WFG"
+"Name"="Russia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\705] 1660099897
+#time=1d8ac641c56b9ac
+"CountryCode"=dword:00000007
+"InternationalRule"="8W10EFG"
+"LongDistanceRule"=" 8WFG"
+"Name"="Kazakhstan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\708] 1660099897
+#time=1d8ac641c56bf6a
+"CountryCode"=dword:00000007
+"InternationalRule"="8W10EFG"
+"LongDistanceRule"=" 8WFG"
+"Name"="Tajikistan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\800] 1660099897
+#time=1d8ac641c56c4f6
+"CountryCode"=dword:00000320
+"InternationalRule"=""
+"LongDistanceRule"=""
+"Name"="International Freephone Service"
+"SameAreaRule"=""
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\81] 1660099897
+#time=1d8ac641c56cab4
+"CountryCode"=dword:00000051
+"InternationalRule"="001EFG"
+"LongDistanceRule"="0FG"
+"Name"="Japan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\82] 1660099897
+#time=1d8ac641c56e026
+"CountryCode"=dword:00000052
+"InternationalRule"="001EFG"
+"LongDistanceRule"="0FG"
+"Name"="Korea (Republic of)"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\84] 1660099897
+#time=1d8ac641c56f052
+"CountryCode"=dword:00000054
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Vietnam"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\850] 1660099897
+#time=1d8ac641c56fbb0
+"CountryCode"=dword:00000352
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Korea (North)"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\852] 1660099897
+#time=1d8ac641c5701b4
+"CountryCode"=dword:00000354
+"InternationalRule"="001EFG"
+"LongDistanceRule"=""
+"Name"="Hong Kong S.A.R."
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\853] 1660099897
+#time=1d8ac641c5707e0
+"CountryCode"=dword:00000355
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Macau S.A.R."
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\855] 1660099897
+#time=1d8ac641c570eb6
+"CountryCode"=dword:00000357
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Cambodia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\856] 1660099897
+#time=1d8ac641c5714ba
+"CountryCode"=dword:00000358
+"InternationalRule"="14EFG"
+"LongDistanceRule"=""
+"Name"="Laos"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\86] 1660099897
+#time=1d8ac641c571ab4
+"CountryCode"=dword:00000056
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="China"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\870] 1660099897
+#time=1d8ac641c5720c2
+"CountryCode"=dword:00000366
+"InternationalRule"="00EFG#"
+"LongDistanceRule"="00EFG#"
+"Name"="INMARSAT"
+"SameAreaRule"="00EFG#"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\871] 1660099897
+#time=1d8ac641c572a40
+"CountryCode"=dword:00000367
+"InternationalRule"="00EFG#"
+"LongDistanceRule"="00EFG#"
+"Name"="INMARSAT (Atlantic-East)"
+"SameAreaRule"="00EFG#"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\872] 1660099897
+#time=1d8ac641c573134
+"CountryCode"=dword:00000368
+"InternationalRule"="00EFG#"
+"LongDistanceRule"="00EFG#"
+"Name"="INMARSAT (Pacific)"
+"SameAreaRule"="00EFG#"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\873] 1660099897
+#time=1d8ac641c57847c
+"CountryCode"=dword:00000369
+"InternationalRule"="00EFG#"
+"LongDistanceRule"="00EFG#"
+"Name"="INMARSAT (Indian)"
+"SameAreaRule"="00EFG#"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\874] 1660099897
+#time=1d8ac641c578a6c
+"CountryCode"=dword:0000036a
+"InternationalRule"="00EFG#"
+"LongDistanceRule"="00EFG#"
+"Name"="INMARSAT (Atlantic-West)"
+"SameAreaRule"="00EFG#"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\880] 1660099897
+#time=1d8ac641c5793b8
+"CountryCode"=dword:00000370
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Bangladesh"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\886] 1660099897
+#time=1d8ac641c579958
+"CountryCode"=dword:00000376
+"InternationalRule"="002EFG"
+"LongDistanceRule"="0FG"
+"Name"="Taiwan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\90] 1660099897
+#time=1d8ac641c579f7a
+"CountryCode"=dword:0000005a
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Turkey"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\91] 1660099897
+#time=1d8ac641c57a51a
+"CountryCode"=dword:0000005b
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="India"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\92] 1660099897
+#time=1d8ac641c57aab0
+"CountryCode"=dword:0000005c
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Pakistan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\93] 1660099897
+#time=1d8ac641c57b172
+"CountryCode"=dword:0000005d
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Afghanistan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\94] 1660099897
+#time=1d8ac641c57b71c
+"CountryCode"=dword:0000005e
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Sri Lanka"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\95] 1660099897
+#time=1d8ac641c57bce4
+"CountryCode"=dword:0000005f
+"InternationalRule"="0EFG"
+"LongDistanceRule"=""
+"Name"="Myanmar"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\960] 1660099897
+#time=1d8ac641c57c27a
+"CountryCode"=dword:000003c0
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Maldives"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\961] 1660099897
+#time=1d8ac641c57c824
+"CountryCode"=dword:000003c1
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Lebanon"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\962] 1660099897
+#time=1d8ac641c57cdce
+"CountryCode"=dword:000003c2
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Jordan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\963] 1660099897
+#time=1d8ac641c57d364
+"CountryCode"=dword:000003c3
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Syria"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\964] 1660099897
+#time=1d8ac641c57d94a
+"CountryCode"=dword:000003c4
+"InternationalRule"="00EFG"
+"LongDistanceRule"="FG"
+"Name"="Iraq"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\965] 1660099897
+#time=1d8ac641c57deea
+"CountryCode"=dword:000003c5
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Kuwait"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\966] 1660099897
+#time=1d8ac641c57e494
+"CountryCode"=dword:000003c6
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Saudi Arabia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\967] 1660099897
+#time=1d8ac641c57ea3e
+"CountryCode"=dword:000003c7
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Yemen"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\968] 1660099897
+#time=1d8ac641c57f038
+"CountryCode"=dword:000003c8
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Oman"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\971] 1660099897
+#time=1d8ac641c57f5f6
+"CountryCode"=dword:000003cb
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="United Arab Emirates"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\972] 1660099897
+#time=1d8ac641c57fcae
+"CountryCode"=dword:000003cc
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Israel"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\973] 1660099897
+#time=1d8ac641c5802e4
+"CountryCode"=dword:000003cd
+"InternationalRule"="0EFG"
+"LongDistanceRule"=""
+"Name"="Bahrain"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\974] 1660099897
+#time=1d8ac641c5818d8
+"CountryCode"=dword:000003ce
+"InternationalRule"="0EFG"
+"LongDistanceRule"=""
+"Name"="Qatar"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\975] 1660099897
+#time=1d8ac641c583a84
+"CountryCode"=dword:000003cf
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Bhutan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\976] 1660099897
+#time=1d8ac641c5840b0
+"CountryCode"=dword:000003d0
+"InternationalRule"="00EFG"
+"LongDistanceRule"="0FG"
+"Name"="Mongolia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\977] 1660099897
+#time=1d8ac641c58465a
+"CountryCode"=dword:000003d1
+"InternationalRule"="00EFG"
+"LongDistanceRule"=""
+"Name"="Nepal"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\98] 1660099897
+#time=1d8ac641c584bfa
+"CountryCode"=dword:00000062
+"InternationalRule"="00EFG"
+"LongDistanceRule"="FG"
+"Name"="Iran"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\993] 1660099897
+#time=1d8ac641c58519a
+"CountryCode"=dword:000003e1
+"InternationalRule"="8W10EFG"
+"LongDistanceRule"=" 8WFG"
+"Name"="Turkmenistan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\994] 1660099897
+#time=1d8ac641c585726
+"CountryCode"=dword:000003e2
+"InternationalRule"="8W10EFG"
+"LongDistanceRule"=" 8WFG"
+"Name"="Azerbaijan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\995] 1660099897
+#time=1d8ac641c585d16
+"CountryCode"=dword:000003e3
+"InternationalRule"="8W10EFG"
+"LongDistanceRule"=" 8WFG"
+"Name"="Georgia"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\996] 1660099897
+#time=1d8ac641c5862ac
+"CountryCode"=dword:000003e4
+"InternationalRule"="00EFG"
+"LongDistanceRule"="8FG"
+"Name"="Kyrgyzstan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\998] 1660099897
+#time=1d8ac641c58695a
+"CountryCode"=dword:000003e6
+"InternationalRule"="8W10EFG"
+"LongDistanceRule"=" 8WFG"
+"Name"="Uzbekistan"
+"SameAreaRule"="G"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Locations] 1660099897
+#time=1d8ac641c512dca
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Time Zones] 1660099898
+#time=1d8ac641c5e7606
+#link
+"SymbolicLinkValue"=hex(6):5c,00,52,00,65,00,67,00,69,00,73,00,74,00,72,00,79,\
+  00,5c,00,4d,00,61,00,63,00,68,00,69,00,6e,00,65,00,5c,00,53,00,6f,00,66,00,\
+  74,00,77,00,61,00,72,00,65,00,5c,00,4d,00,69,00,63,00,72,00,6f,00,73,00,6f,\
+  00,66,00,74,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,77,00,73,00,20,00,4e,00,\
+  54,00,5c,00,43,00,75,00,72,00,72,00,65,00,6e,00,74,00,56,00,65,00,72,00,73,\
+  00,69,00,6f,00,6e,00,5c,00,54,00,69,00,6d,00,65,00,20,00,5a,00,6f,00,6e,00,\
+  65,00,73,00
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall] 1660099897
+#time=1d8ac641c4ddc92
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\URL\\DefaultPrefix] 1660099896
+#time=1d8ac641b787548
+@="http://"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\URL\\Prefixes] 1660099896
+#time=1d8ac641b78785e
+"ftp"="ftp://"
+"gopher"="gopher://"
+"home"="http://"
+"mosaic"="http://"
+"www"="http://"
+
+[Software\\Microsoft\\Windows Media Foundation\\SchemeHandlers\\file:] 1660099896
+#time=1d8ac641b82bf94
+"{477ec299-1421-4bdd-971f-7ccb933f21ad}"="File Scheme Handler"
+
+[Software\\Microsoft\\Windows Messaging Subsystem] 1660099897
+#time=1d8ac641c4ed502
+"MAPI"="1"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion] 1660099898
+#time=1d8ac641c5ef888
+"CSDVersion"="Service Pack 1"
+"CurrentBuild"="7601"
+"CurrentBuildNumber"="7601"
+"CurrentMajorVersionNumber"=dword:00000006
+"CurrentMinorVersionNumber"=dword:00000001
+"CurrentType"="Uniprocessor Free"
+"CurrentVersion"="6.1"
+"DigitalProductId"=hex:00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"InstallDate"=dword:4be5019a
+"ProductId"="12345-oem-0000001-54321"
+"ProductName"="Microsoft Windows 7"
+"RegisteredOrganization"=""
+"RegisteredOwner"=""
+"SystemRoot"="C:\\windows"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\AeDebug] 1660099897
+#time=1d8ac641c4e073a
+"Auto"="1"
+"Debugger"="winedbg --auto %ld %ld"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Console] 1660099897
+#time=1d8ac641c4de48a
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Drivers32] 1660099897
+#time=1d8ac641c4de55c
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\FontDpi] 1660099897
+#time=1d8ac641c4de624
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\FontLink\\SystemLink] 1660099895
+#time=1d8ac641ac5bc50
+"Lucida Sans Unicode"=str(7):"SIMSUN.TTC,SimSun\0MINGLIU.TTC,PMingLiu\0MSGOTHIC.TTC,MS UI Gothic\0BATANG.TTC,Batang\0"
+"Microsoft Sans Serif"=str(7):"SIMSUN.TTC,SimSun\0MINGLIU.TTC,PMingLiu\0MSGOTHIC.TTC,MS UI Gothic\0BATANG.TTC,Batang\0"
+"Tahoma"=str(7):"SIMSUN.TTC,SimSun\0MINGLIU.TTC,PMingLiu\0MSGOTHIC.TTC,MS UI Gothic\0BATANG.TTC,Batang\0"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\FontMapper] 1660099897
+#time=1d8ac641c4de7d2
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Fonts] 1660099895
+#time=1d8ac641acdbd60
+"@Droid Sans Fallback (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\droid\\DroidSansFallbackFull.ttf"
+"@Noto Sans CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Syriac Eastern (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEastern-Regular.ttf"
+"@Noto Sans Syriac Estrangela (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEstrangela-Regular.ttf"
+"@Noto Sans Syriac Western (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacWestern-Regular.ttf"
+"@Noto Serif CJK JP (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Noto Serif CJK KR (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Noto Serif CJK SC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Noto Serif CJK TC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Unifont (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont.ttf"
+"@\x5fae\x8f6f\x96c5\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyh.ttf"
+"@\x5fae\x8f6f\x96c5\x9ed1 Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyhbd.ttf"
+"@\x6587\x6cc9\x9a7f\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"@\x6587\x6cc9\x9a7f\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"@\x6587\x6cc9\x9a7f\x70b9\x9635\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"@\x6587\x6cc9\x9a7f\x7b49\x5bbd\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"@\x6587\x6cc9\x9a7f\x7b49\x5bbd\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"Andale Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\AndaleMo.TTF"
+"Arial (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Arial.TTF"
+"Arial Black (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\AriBlk.TTF"
+"Arial Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Arialbd.TTF"
+"Arial Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Arialbi.TTF"
+"Arial Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Ariali.TTF"
+"Bitstream Vera Sans (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\Vera.ttf"
+"Bitstream Vera Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraBd.ttf"
+"Bitstream Vera Sans Bold Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraBI.ttf"
+"Bitstream Vera Sans Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMono.ttf"
+"Bitstream Vera Sans Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMoBd.ttf"
+"Bitstream Vera Sans Mono Bold Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMoBI.ttf"
+"Bitstream Vera Sans Mono Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMoIt.ttf"
+"Bitstream Vera Sans Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraIt.ttf"
+"Bitstream Vera Serif (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraSe.ttf"
+"Bitstream Vera Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraSeBd.ttf"
+"cmex10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmex10.ttf"
+"cmmi10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmmi10.ttf"
+"cmr10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmr10.ttf"
+"cmsy10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmsy10.ttf"
+"Comic Sans MS (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Comic.TTF"
+"Comic Sans MS Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Comicbd.TTF"
+"Courier"="coure.fon"
+"Courier New (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\cour.ttf"
+"Courier New Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\courbd.ttf"
+"Courier New Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\courbi.ttf"
+"Courier New Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\couri.ttf"
+"Deepin OpenSymbol 2 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol2.ttf"
+"Deepin OpenSymbol 3 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol3.ttf"
+"Deepin OpenSymbol 4 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol4.ttf"
+"Deepin OpenSymbol 5 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol5.ttf"
+"Deepin OpenSymbol 6 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol6.ttf"
+"Deepin OpenSymbol Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol.ttf"
+"DejaVu Sans (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSans.ttf"
+"DejaVu Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSans-Bold.ttf"
+"DejaVu Sans Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSansMono.ttf"
+"DejaVu Sans Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSansMono-Bold.ttf"
+"DejaVu Serif (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSerif.ttf"
+"DejaVu Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSerif-Bold.ttf"
+"Droid Sans Fallback (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\droid\\DroidSansFallbackFull.ttf"
+"esint10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\esint10.ttf"
+"eufm10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\eufm10.ttf"
+"Georgia (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgia.TTF"
+"Georgia Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgiab.TTF"
+"Georgia Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgiaz.TTF"
+"Georgia Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgiai.TTF"
+"Impact (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Impact.TTF"
+"Liberation Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-Regular.ttf"
+"Liberation Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-Bold.ttf"
+"Liberation Mono Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-BoldItalic.ttf"
+"Liberation Mono Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-Italic.ttf"
+"Liberation Sans (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-Regular.ttf"
+"Liberation Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-Bold.ttf"
+"Liberation Sans Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-BoldItalic.ttf"
+"Liberation Sans Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-Italic.ttf"
+"Liberation Sans Narrow (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-Regular.ttf"
+"Liberation Sans Narrow Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-Bold.ttf"
+"Liberation Sans Narrow Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-BoldItalic.ttf"
+"Liberation Sans Narrow Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-Italic.ttf"
+"Liberation Serif (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-Regular.ttf"
+"Liberation Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-Bold.ttf"
+"Liberation Serif Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-BoldItalic.ttf"
+"Liberation Serif Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-Italic.ttf"
+"Lohit Devanagari (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lohit-devanagari\\Lohit-Devanagari.ttf"
+"Marlett (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\marlett.ttf"
+"MS Sans Serif"="sserife.fon"
+"MS Serif"="serife.fon"
+"msam10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\msam10.ttf"
+"msbm10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\msbm10.ttf"
+"Noto Kufi Arabic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoKufiArabic-Regular.ttf"
+"Noto Kufi Arabic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoKufiArabic-Bold.ttf"
+"Noto Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoMono-Regular.ttf"
+"Noto Music Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoMusic-Regular.ttf"
+"Noto Naskh Arabic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNaskhArabic-Regular.ttf"
+"Noto Naskh Arabic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNaskhArabic-Bold.ttf"
+"Noto Nastaliq Urdu Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNastaliqUrdu-Bold.ttf"
+"Noto Nastaliq Urdu Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNastaliqUrdu-Regular.ttf"
+"Noto Sans Adlam Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAdlam-Regular.ttf"
+"Noto Sans Adlam Unjoined Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAdlamUnjoined-Regular.ttf"
+"Noto Sans Anatolian Hieroglyphs Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAnatolianHieroglyphs-Regular.ttf"
+"Noto Sans Arabic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArabic-Bold.ttf"
+"Noto Sans Arabic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArabic-Regular.ttf"
+"Noto Sans Armenian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArmenian-Bold.ttf"
+"Noto Sans Armenian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArmenian-Regular.ttf"
+"Noto Sans Avestan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAvestan-Regular.ttf"
+"Noto Sans Bamum Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBamum-Regular.ttf"
+"Noto Sans Bassa Vah Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBassaVah-Regular.ttf"
+"Noto Sans Batak Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBatak-Regular.ttf"
+"Noto Sans Bengali Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBengali-Bold.ttf"
+"Noto Sans Bengali Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBengali-Regular.ttf"
+"Noto Sans Bhaiksuki Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBhaiksuki-Regular.ttf"
+"Noto Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-Bold.ttf"
+"Noto Sans Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-BoldItalic.ttf"
+"Noto Sans Brahmi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBrahmi-Regular.ttf"
+"Noto Sans Buginese Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBuginese-Regular.ttf"
+"Noto Sans Buhid Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBuhid-Regular.ttf"
+"Noto Sans Canadian Aboriginal Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCanadianAboriginal-Bold.ttf"
+"Noto Sans Canadian Aboriginal Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCanadianAboriginal-Regular.ttf"
+"Noto Sans Carian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCarian-Regular.ttf"
+"Noto Sans Caucasian Albanian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCaucasianAlbanian-Regular.ttf"
+"Noto Sans Chakma Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansChakma-Regular.ttf"
+"Noto Sans Cham Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCham-Bold.ttf"
+"Noto Sans Cham Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCham-Regular.ttf"
+"Noto Sans Cherokee Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCherokee-Bold.ttf"
+"Noto Sans Cherokee Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCherokee-Regular.ttf"
+"Noto Sans CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Coptic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCoptic-Regular.ttf"
+"Noto Sans Cuneiform Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCuneiform-Regular.ttf"
+"Noto Sans Cypriot Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCypriot-Regular.ttf"
+"Noto Sans Deseret Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDeseret-Regular.ttf"
+"Noto Sans Devanagari Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDevanagari-Bold.ttf"
+"Noto Sans Devanagari Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDevanagari-Regular.ttf"
+"Noto Sans Display Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-Bold.ttf"
+"Noto Sans Display Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-BoldItalic.ttf"
+"Noto Sans Display Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-Italic.ttf"
+"Noto Sans Display Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-Regular.ttf"
+"Noto Sans Duployan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDuployan-Regular.ttf"
+"Noto Sans Egyptian Hieroglyphs Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansEgyptianHieroglyphs-Regular.ttf"
+"Noto Sans Elbasan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansElbasan-Regular.ttf"
+"Noto Sans Ethiopic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansEthiopic-Bold.ttf"
+"Noto Sans Ethiopic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansEthiopic-Regular.ttf"
+"Noto Sans Georgian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGeorgian-Bold.ttf"
+"Noto Sans Georgian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGeorgian-Regular.ttf"
+"Noto Sans Glagolitic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGlagolitic-Regular.ttf"
+"Noto Sans Gothic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGothic-Regular.ttf"
+"Noto Sans Grantha Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGrantha-Regular.ttf"
+"Noto Sans Gujarati (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGujarati-Regular.ttf"
+"Noto Sans Gujarati Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGujarati-Bold.ttf"
+"Noto Sans Gurmukhi (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGurmukhi-Regular.ttf"
+"Noto Sans Gurmukhi Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGurmukhi-Bold.ttf"
+"Noto Sans Hanunoo Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHanunoo-Regular.ttf"
+"Noto Sans Hatran Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHatran-Regular.ttf"
+"Noto Sans Hebrew Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHebrew-Bold.ttf"
+"Noto Sans Hebrew Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHebrew-Regular.ttf"
+"Noto Sans Imperial Aramaic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansImperialAramaic-Regular.ttf"
+"Noto Sans Inscriptional Pahlavi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansInscriptionalPahlavi-Regular.ttf"
+"Noto Sans Inscriptional Parthian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansInscriptionalParthian-Regular.ttf"
+"Noto Sans Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-Italic.ttf"
+"Noto Sans Javanese (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansJavanese-Regular.ttf"
+"Noto Sans Javanese Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansJavanese-Bold.ttf"
+"Noto Sans Kaithi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKaithi-Regular.ttf"
+"Noto Sans Kannada Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKannada-Bold.ttf"
+"Noto Sans Kannada Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKannada-Regular.ttf"
+"Noto Sans Kayah Li Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKayahLi-Regular.ttf"
+"Noto Sans Kharoshthi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKharoshthi-Regular.ttf"
+"Noto Sans Khmer Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhmer-Bold.ttf"
+"Noto Sans Khmer Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhmer-Regular.ttf"
+"Noto Sans Khojki Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhojki-Regular.ttf"
+"Noto Sans Khudawadi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhudawadi-Regular.ttf"
+"Noto Sans Lao Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLao-Bold.ttf"
+"Noto Sans Lao Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLao-Regular.ttf"
+"Noto Sans Lepcha Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLepcha-Regular.ttf"
+"Noto Sans Limbu Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLimbu-Regular.ttf"
+"Noto Sans Linear A Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLinearA-Regular.ttf"
+"Noto Sans Linear B Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLinearB-Regular.ttf"
+"Noto Sans Lisu Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLisu-Regular.ttf"
+"Noto Sans Lycian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLycian-Regular.ttf"
+"Noto Sans Lydian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLydian-Regular.ttf"
+"Noto Sans Mahajani Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMahajani-Regular.ttf"
+"Noto Sans Malayalam Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMalayalam-Bold.ttf"
+"Noto Sans Malayalam Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMalayalam-Regular.ttf"
+"Noto Sans Mandaic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMandaic-Regular.ttf"
+"Noto Sans Manichaean Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansManichaean-Regular.ttf"
+"Noto Sans Marchen Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMarchen-Regular.ttf"
+"Noto Sans Math Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMath-Regular.ttf"
+"Noto Sans Meetei Mayek Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMeeteiMayek-Regular.ttf"
+"Noto Sans Mende Kikakui Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMendeKikakui-Regular.ttf"
+"Noto Sans Meroitic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMeroitic-Regular.ttf"
+"Noto Sans Miao Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMiao-Regular.ttf"
+"Noto Sans Modi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansModi-Regular.ttf"
+"Noto Sans Mongolian (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMongolian-Regular.ttf"
+"Noto Sans Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMono-Bold.ttf"
+"Noto Sans Mono CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMono-Regular.ttf"
+"Noto Sans Mro Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMro-Regular.ttf"
+"Noto Sans Multani Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMultani-Regular.ttf"
+"Noto Sans Myanmar Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMyanmar-Bold.ttf"
+"Noto Sans Myanmar Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMyanmar-Regular.ttf"
+"Noto Sans Nabataean Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNabataean-Regular.ttf"
+"Noto Sans New Tai Lue Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNewTaiLue-Regular.ttf"
+"Noto Sans Newa Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNewa-Regular.ttf"
+"Noto Sans NKo Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNKo-Regular.ttf"
+"Noto Sans Ogham Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOgham-Regular.ttf"
+"Noto Sans Ol Chiki Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOlChiki-Regular.ttf"
+"Noto Sans Old Hungarian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldHungarian-Regular.ttf"
+"Noto Sans Old Italic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldItalic-Regular.ttf"
+"Noto Sans Old North Arabian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldNorthArabian-Regular.ttf"
+"Noto Sans Old Permic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldPermic-Regular.ttf"
+"Noto Sans Old Persian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldPersian-Regular.ttf"
+"Noto Sans Old South Arabian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldSouthArabian-Regular.ttf"
+"Noto Sans Old Turkic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldTurkic-Regular.ttf"
+"Noto Sans Oriya (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOriya-Regular.ttf"
+"Noto Sans Oriya Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOriya-Bold.ttf"
+"Noto Sans Osage Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOsage-Regular.ttf"
+"Noto Sans Osmanya Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOsmanya-Regular.ttf"
+"Noto Sans Pahawh Hmong Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPahawhHmong-Regular.ttf"
+"Noto Sans Palmyrene Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPalmyrene-Regular.ttf"
+"Noto Sans Pau Cin Hau Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPauCinHau-Regular.ttf"
+"Noto Sans PhagsPa Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPhagsPa-Regular.ttf"
+"Noto Sans Phoenician Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPhoenician-Regular.ttf"
+"Noto Sans Psalter Pahlavi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPsalterPahlavi-Regular.ttf"
+"Noto Sans Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-Regular.ttf"
+"Noto Sans Rejang Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansRejang-Regular.ttf"
+"Noto Sans Runic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansRunic-Regular.ttf"
+"Noto Sans Samaritan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSamaritan-Regular.ttf"
+"Noto Sans Saurashtra Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSaurashtra-Regular.ttf"
+"Noto Sans Sharada Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSharada-Regular.ttf"
+"Noto Sans Shavian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansShavian-Regular.ttf"
+"Noto Sans Sinhala Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSinhala-Bold.ttf"
+"Noto Sans Sinhala Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSinhala-Regular.ttf"
+"Noto Sans Sora Sompeng Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSoraSompeng-Regular.ttf"
+"Noto Sans Sundanese Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSundanese-Regular.ttf"
+"Noto Sans Syloti Nagri Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSylotiNagri-Regular.ttf"
+"Noto Sans Symbols Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSymbols-Bold.ttf"
+"Noto Sans Symbols Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSymbols-Regular.ttf"
+"Noto Sans Symbols2 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSymbols2-Regular.ttf"
+"Noto Sans Syriac Eastern (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEastern-Regular.ttf"
+"Noto Sans Syriac Estrangela (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEstrangela-Regular.ttf"
+"Noto Sans Syriac Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriac-Regular.ttf"
+"Noto Sans Syriac Western (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacWestern-Regular.ttf"
+"Noto Sans Tagalog Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTagalog-Regular.ttf"
+"Noto Sans Tagbanwa Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTagbanwa-Regular.ttf"
+"Noto Sans Tai Le Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTaiLe-Regular.ttf"
+"Noto Sans Tai Tham (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTaiTham-Regular.ttf"
+"Noto Sans Tai Viet Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTaiViet-Regular.ttf"
+"Noto Sans Takri Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTakri-Regular.ttf"
+"Noto Sans Tamil Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTamil-Bold.ttf"
+"Noto Sans Tamil Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTamil-Regular.ttf"
+"Noto Sans Telugu (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTelugu-Regular.ttf"
+"Noto Sans Telugu Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTelugu-Bold.ttf"
+"Noto Sans Thaana (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThaana-Regular.ttf"
+"Noto Sans Thaana Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThaana-Bold.ttf"
+"Noto Sans Thai Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThai-Bold.ttf"
+"Noto Sans Thai Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThai-Regular.ttf"
+"Noto Sans Tibetan (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTibetan-Regular.ttf"
+"Noto Sans Tibetan Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTibetan-Bold.ttf"
+"Noto Sans Tifinagh Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTifinagh-Regular.ttf"
+"Noto Sans Tirhuta Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTirhuta-Regular.ttf"
+"Noto Sans Ugaritic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansUgaritic-Regular.ttf"
+"Noto Sans Vai Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansVai-Regular.ttf"
+"Noto Sans Warang Citi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansWarangCiti-Regular.ttf"
+"Noto Sans Yi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansYi-Regular.ttf"
+"Noto Serif Ahom Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifAhom-Regular.ttf"
+"Noto Serif Armenian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifArmenian-Bold.ttf"
+"Noto Serif Armenian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifArmenian-Regular.ttf"
+"Noto Serif Balinese Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifBalinese-Regular.ttf"
+"Noto Serif Bengali (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifBengali-Regular.ttf"
+"Noto Serif Bengali Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifBengali-Bold.ttf"
+"Noto Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-Bold.ttf"
+"Noto Serif Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-BoldItalic.ttf"
+"Noto Serif CJK JP (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif CJK KR (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif CJK SC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif CJK TC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif Devanagari (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDevanagari-Regular.ttf"
+"Noto Serif Devanagari Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDevanagari-Bold.ttf"
+"Noto Serif Display Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-Bold.ttf"
+"Noto Serif Display Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-BoldItalic.ttf"
+"Noto Serif Display Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-Italic.ttf"
+"Noto Serif Display Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-Regular.ttf"
+"Noto Serif Ethiopic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifEthiopic-Bold.ttf"
+"Noto Serif Ethiopic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifEthiopic-Regular.ttf"
+"Noto Serif Georgian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGeorgian-Bold.ttf"
+"Noto Serif Georgian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGeorgian-Regular.ttf"
+"Noto Serif Gujarati Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGujarati-Bold.ttf"
+"Noto Serif Gujarati Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGujarati-Regular.ttf"
+"Noto Serif Gurmukhi Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGurmukhi-Bold.ttf"
+"Noto Serif Gurmukhi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGurmukhi-Regular.ttf"
+"Noto Serif Hebrew Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifHebrew-Bold.ttf"
+"Noto Serif Hebrew Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifHebrew-Regular.ttf"
+"Noto Serif Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-Italic.ttf"
+"Noto Serif Kannada Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKannada-Bold.ttf"
+"Noto Serif Kannada Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKannada-Regular.ttf"
+"Noto Serif Khmer Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKhmer-Bold.ttf"
+"Noto Serif Khmer Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKhmer-Regular.ttf"
+"Noto Serif Lao Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifLao-Bold.ttf"
+"Noto Serif Lao Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifLao-Regular.ttf"
+"Noto Serif Malayalam (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMalayalam-Regular.ttf"
+"Noto Serif Malayalam Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMalayalam-Bold.ttf"
+"Noto Serif Myanmar Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMyanmar-Bold.ttf"
+"Noto Serif Myanmar Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMyanmar-Regular.ttf"
+"Noto Serif Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-Regular.ttf"
+"Noto Serif Sinhala Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifSinhala-Bold.ttf"
+"Noto Serif Sinhala Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifSinhala-Regular.ttf"
+"Noto Serif Tamil Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamil-Bold.ttf"
+"Noto Serif Tamil Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamil-Regular.ttf"
+"Noto Serif Tamil Slanted Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamilSlanted-Bold.ttf"
+"Noto Serif Tamil Slanted Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamilSlanted-Regular.ttf"
+"Noto Serif Telugu (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTelugu-Regular.ttf"
+"Noto Serif Telugu Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTelugu-Bold.ttf"
+"Noto Serif Thai Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifThai-Bold.ttf"
+"Noto Serif Thai Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifThai-Regular.ttf"
+"Noto Serif Tibetan Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTibetan-Bold.ttf"
+"Noto Serif Tibetan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTibetan-Regular.ttf"
+"OpenSymbol (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\libreoffice\\opens___.ttf"
+"rsfs10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\rsfs10.ttf"
+"Small Fonts"="smalle.fon"
+"stmary10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\stmary10.ttf"
+"Symbol (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\symbol.ttf"
+"Symbola (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ancient-scripts\\Symbola_hint.ttf"
+"Tahoma (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\tahoma.ttf"
+"Tahoma Bold (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\tahomabd.ttf"
+"Times New Roman (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Times.TTF"
+"Times New Roman Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Timesbd.TTF"
+"Times New Roman Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Timesbi.TTF"
+"Times New Roman Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Timesi.TTF"
+"Trebuchet MS (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\trebuc.ttf"
+"Trebuchet MS Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Trebucbd.ttf"
+"Trebuchet MS Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\trebucbi.ttf"
+"Trebuchet MS Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\trebucit.ttf"
+"Unifont (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont.ttf"
+"Unifont CSUR (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont_csur.ttf"
+"Unifont Upper (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont_upper.ttf"
+"Verdana (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdana.TTF"
+"Verdana Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdanab.TTF"
+"Verdana Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdanaz.TTF"
+"Verdana Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdanai.TTF"
+"wasy10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\wasy10.ttf"
+"Webdings (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\webdings.ttf"
+"Wingdings (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\wingding.ttf"
+"\x5fae\x8f6f\x96c5\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyh.ttf"
+"\x5fae\x8f6f\x96c5\x9ed1 Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyhbd.ttf"
+"\x6587\x6cc9\x9a7f\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"\x6587\x6cc9\x9a7f\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"\x6587\x6cc9\x9a7f\x70b9\x9635\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"\x6587\x6cc9\x9a7f\x7b49\x5bbd\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"\x6587\x6cc9\x9a7f\x7b49\x5bbd\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\FontSubstitutes] 1660099897
+#time=1d8ac641c4e4a10
+"Arial Baltic,186"="Arial,186"
+"Arial CE,238"="Arial,238"
+"Arial CYR,204"="Arial,204"
+"Arial Greek,161"="Arial,161"
+"Arial TUR,162"="Arial,162"
+"Courier New Baltic,186"="Courier New,186"
+"Courier New CE,238"="Courier New,238"
+"Courier New CYR,204"="Courier New,204"
+"Courier New Greek,161"="Courier New,161"
+"Courier New TUR,162"="Courier New,162"
+"Helv"="MS Sans Serif"
+"Helvetica"="Arial"
+"MS Shell Dlg"="SimSun"
+"MS Shell Dlg 2"="Tahoma"
+"Times"="Times New Roman"
+"Times New Roman Baltic,186"="Times New Roman,186"
+"Times New Roman CE,238"="Times New Roman,238"
+"Times New Roman CYR,204"="Times New Roman,204"
+"Times New Roman Greek,161"="Times New Roman,161"
+"Times New Roman TUR,162"="Times New Roman,162"
+"Tms Rmn"="NSimSun"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Gre_Initialize] 1660099897
+#time=1d8ac641c4dea66
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Hotfix\\Q246009] 1660099897
+#time=1d8ac641c4def0c
+"Installed"="1"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options] 1660099897
+#time=1d8ac641c4defd4
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\IniFileMapping\\win.ini] 1660099897
+#time=1d8ac641c4dfb64
+"desktop"="USR:Control Panel\\Desktop"
+"devices"="USR:Software\\Microsoft\\Windows NT\\CurrentVersion\\Devices"
+"extensions"="USR:Software\\Microsoft\\Windows NT\\CurrentVersion\\Extensions"
+"intl"="USR:Control Panel\\International"
+"printerports"="USR:Software\\Microsoft\\Windows NT\\CurrentVersion\\PrinterPorts"
+"sounds"="USR:Control Panel\\Sounds"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\IniFileMapping\\win.ini\\windows] 1660099897
+#time=1d8ac641c4dfcf4
+@="USR:Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows"
+"CursorBlinkRate"="USR:Control Panel\\Desktop"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\LanguagePack] 1660099897
+#time=1d8ac641c4dfdc6
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\MCI Extensions] 1660099897
+#time=1d8ac641c4e9d58
+"aifc"="MPEGVideo"
+"asf"="MPEGVideo"
+"asx"="MPEGVideo"
+"au"="MPEGVideo"
+"avi"="AVIVideo"
+"cda"="CDAudio"
+"lsf"="MPEGVideo"
+"lsx"="MPEGVideo"
+"m1v"="MPEGVideo"
+"m3u"="MPEGVideo"
+"mid"="Sequencer"
+"midi"="Sequencer"
+"mp2"="MPEGVideo"
+"mp2v"="MPEGVideo"
+"mp3"="MPEGVideo"
+"mpa"="MPEGVideo"
+"mpe"="MPEGVideo"
+"mpeg"="MPEGVideo"
+"mpg"="MPEGVideo"
+"mpv"="MPEGVideo"
+"mpv2"="MPEGVideo"
+"rmi"="Sequencer"
+"snd"="MPEGVideo"
+"wav"="WaveAudio"
+"wax"="MPEGVideo"
+"wm"="MPEGVideo"
+"wma"="MPEGVideo"
+"wmp"="MPEGVideo"
+"wmv"="MPEGVideo"
+"wmx"="MPEGVideo"
+"wvx"="MPEGVideo"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\MCI32] 1660099897
+#time=1d8ac641c4e55dc
+"AVIVideo"="mciavi32.dll"
+"CDAudio"="mcicda.dll"
+"MPEGVideo"="mciqtz32.dll"
+"Sequencer"="mciseq.dll"
+"WaveAudio"="mciwave.dll"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\OpenGLDrivers] 1660099897
+#time=1d8ac641c4dff74
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Perflib] 1660099897
+#time=1d8ac641c4e003c
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Ports] 1660099897
+#time=1d8ac641c50eac2
+"COM1:"="9600,n,8,1"
+"COM2:"="9600,n,8,1"
+"COM3:"="9600,n,8,1"
+"COM4:"="9600,n,8,1"
+"FILE:"=""
+"LPT1:"=""
+"LPT2:"=""
+"LPT3:"=""
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Print] 1660099897
+#time=1d8ac641c4e01e0
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList] 1660099898
+#time=1d8ac641c9a3718
+"ProfilesDirectory"=str(2):"C:\\users"
+"ProgramData"=str(2):"C:\\ProgramData"
+"Public"=str(2):"C:\\users\\Public"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\S-1-5-21-0-0-0-1000] 1660099898
+#time=1d8ac641c9cc938
+"Flags"=dword:00000000
+"ProfileImagePath"="C:\\users\\@current_user@"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\SvcHost] 1660099898
+#time=1d8ac641c723a60
+"imgsvc"=str(7):"StiSvc\0"
+"LocalServiceNetworkRestricted"=str(7):"EventLog\0"
+"netsvcs"=str(7):"BITS\0fontcache\0Schedule\0"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Afghanistan Standard Time] 1660099897
+#time=1d8ac641c5870ee
+"Display"="Asia/Kabul"
+"Dlt"="Afghanistan Daylight Time"
+"MUI_Dlt"="@tzres.dll,-39617"
+"MUI_Std"="@tzres.dll,-39616"
+"Std"="Afghanistan Standard Time"
+"TZI"=hex:f2,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Alaskan Standard Time] 1660099897
+#time=1d8ac641c5878f0
+"Display"="America/Anchorage"
+"Dlt"="Alaskan Daylight Time"
+"MUI_Dlt"="@tzres.dll,-50193"
+"MUI_Std"="@tzres.dll,-50192"
+"Std"="Alaskan Standard Time"
+"TZI"=hex:1c,02,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Alaskan Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c587d1e
+"2006"=hex:1c,02,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,\
+  00,00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00
+"2007"=hex:1c,02,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d6
+"LastEntry"=dword:000007d7
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Aleutian Standard Time] 1660099897
+#time=1d8ac641c58850c
+"Display"="America/Adak"
+"Dlt"="Aleutian Daylight Time"
+"MUI_Dlt"="@tzres.dll,-55201"
+"MUI_Std"="@tzres.dll,-55200"
+"Std"="Aleutian Standard Time"
+"TZI"=hex:58,02,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Aleutian Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5888e0
+"2006"=hex:58,02,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,\
+  00,00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00
+"2007"=hex:58,02,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d6
+"LastEntry"=dword:000007d7
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Arab Standard Time] 1660099897
+#time=1d8ac641c588ffc
+"Display"="Asia/Riyadh"
+"Dlt"="Arab Daylight Time"
+"MUI_Dlt"="@tzres.dll,-41969"
+"MUI_Std"="@tzres.dll,-41968"
+"Std"="Arab Standard Time"
+"TZI"=hex:4c,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Arabian Standard Time] 1660099897
+#time=1d8ac641c5897cc
+"Display"="Asia/Dubai"
+"Dlt"="Arabian Daylight Time"
+"MUI_Dlt"="@tzres.dll,-42705"
+"MUI_Std"="@tzres.dll,-42704"
+"Std"="Arabian Standard Time"
+"TZI"=hex:10,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Arabic Standard Time] 1660099897
+#time=1d8ac641c589ef2
+"Display"="Asia/Baghdad"
+"Dlt"="Arabic Daylight Time"
+"MUI_Dlt"="@tzres.dll,-8769"
+"MUI_Std"="@tzres.dll,-8768"
+"Std"="Arabic Standard Time"
+"TZI"=hex:4c,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Argentina Standard Time] 1660099897
+#time=1d8ac641c58a5f0
+"Display"="America/Buenos_Aires"
+"Dlt"="Argentina Daylight Time"
+"MUI_Dlt"="@tzres.dll,-19585"
+"MUI_Std"="@tzres.dll,-19584"
+"Std"="Argentina Standard Time"
+"TZI"=hex:b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Atlantic Standard Time] 1660099897
+#time=1d8ac641c58ad3e
+"Display"="America/Halifax"
+"Dlt"="Atlantic Daylight Time"
+"MUI_Dlt"="@tzres.dll,-34225"
+"MUI_Std"="@tzres.dll,-34224"
+"Std"="Atlantic Standard Time"
+"TZI"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\AUS Central Standard Time] 1660099897
+#time=1d8ac641c58b450
+"Display"="Australia/Darwin"
+"Dlt"="AUS Central Daylight Time"
+"MUI_Dlt"="@tzres.dll,-47025"
+"MUI_Std"="@tzres.dll,-47024"
+"Std"="AUS Central Standard Time"
+"TZI"=hex:c6,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Aus Central W. Standard Time] 1660099897
+#time=1d8ac641c58bc34
+"Display"="Australia/Eucla"
+"Dlt"="Aus Central W. Daylight Time"
+"MUI_Dlt"="@tzres.dll,-44673"
+"MUI_Std"="@tzres.dll,-44672"
+"Std"="Aus Central W. Standard Time"
+"TZI"=hex:f3,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Aus Central W. Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c58c512
+"2005"=hex:f3,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2006"=hex:f3,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,01,00,00,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,0c,00,00,00,01,00,02,00,00,00,00,00,00,00
+"2007"=hex:f3,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2008"=hex:f3,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2009"=hex:f3,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,03,00,\
+  00,00,00,00,00,00,00,00,01,00,04,00,01,00,00,00,00,00,00,00,00,00
+"2010"=hex:f3,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d5
+"LastEntry"=dword:000007da
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\AUS Eastern Standard Time] 1660099897
+#time=1d8ac641c58d48a
+"Display"="Australia/Sydney"
+"Dlt"="AUS Eastern Daylight Time"
+"MUI_Dlt"="@tzres.dll,-30369"
+"MUI_Std"="@tzres.dll,-30368"
+"Std"="AUS Eastern Standard Time"
+"TZI"=hex:a8,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,00,\
+  00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\AUS Eastern Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c58e8b2
+"2005"=hex:a8,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2006"=hex:a8,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2007"=hex:a8,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2008"=hex:a8,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d5
+"LastEntry"=dword:000007d8
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Azerbaijan Standard Time] 1660099897
+#time=1d8ac641c58f168
+"Display"="Asia/Baku"
+"Dlt"="Azerbaijan Daylight Time"
+"MUI_Dlt"="@tzres.dll,-11313"
+"MUI_Std"="@tzres.dll,-11312"
+"Std"="Azerbaijan Standard Time"
+"TZI"=hex:10,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Azerbaijan Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c58f5b4
+"2015"=hex:10,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,05,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,05,00,04,00,00,00,00,00,00,00
+"2016"=hex:10,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007df
+"LastEntry"=dword:000007e0
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Azores Standard Time] 1660099897
+#time=1d8ac641c58fdb6
+"Display"="Atlantic/Azores"
+"Dlt"="Azores Daylight Time"
+"MUI_Dlt"="@tzres.dll,-18833"
+"MUI_Std"="@tzres.dll,-18832"
+"Std"="Azores Standard Time"
+"TZI"=hex:3c,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,01,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,05,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Bahia Standard Time] 1660099897
+#time=1d8ac641c590572
+"Display"="America/Bahia"
+"Dlt"="Bahia Daylight Time"
+"MUI_Dlt"="@tzres.dll,-50897"
+"MUI_Std"="@tzres.dll,-50896"
+"Std"="Bahia Standard Time"
+"TZI"=hex:b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Bangladesh Standard Time] 1660099897
+#time=1d8ac641c590d2e
+"Display"="Asia/Dhaka"
+"Dlt"="Bangladesh Daylight Time"
+"MUI_Dlt"="@tzres.dll,-48721"
+"MUI_Std"="@tzres.dll,-48720"
+"Std"="Bangladesh Standard Time"
+"TZI"=hex:98,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Belarus Standard Time] 1660099897
+#time=1d8ac641c5914d6
+"Display"="Europe/Minsk"
+"Dlt"="Belarus Daylight Time"
+"MUI_Dlt"="@tzres.dll,-56577"
+"MUI_Std"="@tzres.dll,-56576"
+"Std"="Belarus Standard Time"
+"TZI"=hex:4c,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Bougainville Standard Time] 1660099897
+#time=1d8ac641c591d82
+"Display"="Pacific/Bougainville"
+"Dlt"="Bougainville Daylight Time"
+"MUI_Dlt"="@tzres.dll,-51969"
+"MUI_Std"="@tzres.dll,-51968"
+"Std"="Bougainville Standard Time"
+"TZI"=hex:6c,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Bougainville Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c592318
+"2013"=hex:a8,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2014"=hex:a8,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,01,00,03,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,0c,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2015"=hex:6c,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007dd
+"LastEntry"=dword:000007df
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Canada Central Standard Time] 1660099897
+#time=1d8ac641c592ac0
+"Display"="America/Regina"
+"Dlt"="Canada Central Daylight Time"
+"MUI_Dlt"="@tzres.dll,-25713"
+"MUI_Std"="@tzres.dll,-25712"
+"Std"="Canada Central Standard Time"
+"TZI"=hex:68,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Cape Verde Standard Time] 1660099897
+#time=1d8ac641c593286
+"Display"="Atlantic/Cape_Verde"
+"Dlt"="Cape Verde Daylight Time"
+"MUI_Dlt"="@tzres.dll,-2001"
+"MUI_Std"="@tzres.dll,-2000"
+"Std"="Cape Verde Standard Time"
+"TZI"=hex:3c,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Caucasus Standard Time] 1660099897
+#time=1d8ac641c593b14
+"Display"="Asia/Yerevan"
+"Dlt"="Caucasus Daylight Time"
+"MUI_Dlt"="@tzres.dll,-29873"
+"MUI_Std"="@tzres.dll,-29872"
+"Std"="Caucasus Standard Time"
+"TZI"=hex:10,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Caucasus Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c593f74
+"2011"=hex:10,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2012"=hex:10,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007db
+"LastEntry"=dword:000007dc
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Cen. Australia Standard Time] 1660099897
+#time=1d8ac641c595b76
+"Display"="Australia/Adelaide"
+"Dlt"="Cen. Australia Daylight Time"
+"MUI_Dlt"="@tzres.dll,-38929"
+"MUI_Std"="@tzres.dll,-38928"
+"Std"="Cen. Australia Standard Time"
+"TZI"=hex:c6,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,00,\
+  00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Cen. Australia Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5969e0
+"2005"=hex:c6,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2006"=hex:c6,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2007"=hex:c6,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2008"=hex:c6,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d5
+"LastEntry"=dword:000007d8
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Central America Standard Time] 1660099897
+#time=1d8ac641c597192
+"Display"="America/Guatemala"
+"Dlt"="Central America Daylight Time"
+"MUI_Dlt"="@tzres.dll,-36657"
+"MUI_Std"="@tzres.dll,-36656"
+"Std"="Central America Standard Time"
+"TZI"=hex:68,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Central Asia Standard Time] 1660099897
+#time=1d8ac641c597980
+"Display"="Asia/Almaty"
+"Dlt"="Central Asia Daylight Time"
+"MUI_Dlt"="@tzres.dll,-8177"
+"MUI_Std"="@tzres.dll,-8176"
+"Std"="Central Asia Standard Time"
+"TZI"=hex:98,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Central Brazilian Standard Time] 1660099897
+#time=1d8ac641c5981a0
+"Display"="America/Cuiaba"
+"Dlt"="Central Brazilian Daylight Time"
+"MUI_Dlt"="@tzres.dll,-56337"
+"MUI_Std"="@tzres.dll,-56336"
+"Std"="Central Brazilian Standard Time"
+"TZI"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,02,00,00,00,03,00,00,00,00,\
+  00,00,00,00,00,00,00,0a,00,00,00,03,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Central Brazilian Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c598948
+"2015"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,df,07,02,00,00,00,16,00,00,00,\
+  00,00,00,00,00,00,df,07,0a,00,00,00,12,00,00,00,00,00,00,00,00,00
+"2023"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,e7,07,02,00,00,00,1a,00,00,00,\
+  00,00,00,00,00,00,e7,07,0a,00,00,00,0f,00,00,00,00,00,00,00,00,00
+"2026"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,ea,07,02,00,00,00,16,00,00,00,\
+  00,00,00,00,00,00,ea,07,0a,00,00,00,12,00,00,00,00,00,00,00,00,00
+"2034"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,f2,07,02,00,00,00,1a,00,00,00,\
+  00,00,00,00,00,00,f2,07,0a,00,00,00,0f,00,00,00,00,00,00,00,00,00
+"2037"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,f5,07,02,00,00,00,16,00,00,00,\
+  00,00,00,00,00,00,f5,07,0a,00,00,00,12,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007df
+"LastEntry"=dword:000007f5
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Central Europe Standard Time] 1660099897
+#time=1d8ac641c599050
+"Display"="Europe/Budapest"
+"Dlt"="Central Europe Daylight Time"
+"MUI_Dlt"="@tzres.dll,-4897"
+"MUI_Std"="@tzres.dll,-4896"
+"Std"="Central Europe Standard Time"
+"TZI"=hex:c4,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Central European Standard Time] 1660099897
+#time=1d8ac641c5998b6
+"Display"="Europe/Warsaw"
+"Dlt"="Central European Daylight Time"
+"MUI_Dlt"="@tzres.dll,-2977"
+"MUI_Std"="@tzres.dll,-2976"
+"Std"="Central European Standard Time"
+"TZI"=hex:c4,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Central Pacific Standard Time] 1660099897
+#time=1d8ac641c599fb4
+"Display"="Pacific/Guadalcanal"
+"Dlt"="Central Pacific Daylight Time"
+"MUI_Dlt"="@tzres.dll,-64417"
+"MUI_Std"="@tzres.dll,-64416"
+"Std"="Central Pacific Standard Time"
+"TZI"=hex:6c,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Central Standard Time] 1660099897
+#time=1d8ac641c59a77a
+"Display"="America/Chicago"
+"Dlt"="Central Daylight Time"
+"MUI_Dlt"="@tzres.dll,-17457"
+"MUI_Std"="@tzres.dll,-17456"
+"Std"="Central Standard Time"
+"TZI"=hex:68,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Central Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c59ab94
+"2006"=hex:68,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,\
+  00,00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00
+"2007"=hex:68,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d6
+"LastEntry"=dword:000007d7
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Central Standard Time (Mexico)] 1660099897
+#time=1d8ac641c59b56c
+"Display"="America/Mexico_City"
+"Dlt"="Central Daylight Time (Mexico)"
+"MUI_Dlt"="@tzres.dll,-32801"
+"MUI_Std"="@tzres.dll,-32800"
+"Std"="Central Standard Time (Mexico)"
+"TZI"=hex:68,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,00,\
+  00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Chatham Islands Standard Time] 1660099897
+#time=1d8ac641c59beae
+"Display"="Pacific/Chatham"
+"Dlt"="Chatham Islands Daylight Time"
+"MUI_Dlt"="@tzres.dll,-62305"
+"MUI_Std"="@tzres.dll,-62304"
+"Std"="Chatham Islands Standard Time"
+"TZI"=hex:03,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,2d,\
+  00,00,00,00,00,00,00,09,00,00,00,05,00,02,00,2d,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Chatham Islands Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c59c476
+"2006"=hex:03,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,03,00,03,00,\
+  2d,00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,2d,00,00,00,00,00
+"2007"=hex:03,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,03,00,03,00,\
+  2d,00,00,00,00,00,00,00,09,00,00,00,05,00,02,00,2d,00,00,00,00,00
+"2008"=hex:03,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,\
+  2d,00,00,00,00,00,00,00,09,00,00,00,05,00,02,00,2d,00,00,00,00,00
+"FirstEntry"=dword:000007d6
+"LastEntry"=dword:000007d8
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\China Standard Time] 1660099897
+#time=1d8ac641c59cc3c
+"Display"="Asia/Shanghai"
+"Dlt"="China Daylight Time"
+"MUI_Dlt"="@tzres.dll,-161"
+"MUI_Std"="@tzres.dll,-160"
+"Std"="China Standard Time"
+"TZI"=hex:20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Cuba Standard Time] 1660099897
+#time=1d8ac641c59d4fc
+"Display"="America/Havana"
+"Dlt"="Cuba Daylight Time"
+"MUI_Dlt"="@tzres.dll,-17137"
+"MUI_Std"="@tzres.dll,-17136"
+"Std"="Cuba Standard Time"
+"TZI"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,01,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Cuba Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c59e44c
+"2004"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,01,00,04,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,05,00,00,00,00,00,00,00,00,00
+"2005"=hex:f0,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2006"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,01,00,\
+  00,00,00,00,00,00,00,00,01,00,00,00,01,00,00,00,00,00,00,00,00,00
+"2007"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,01,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2008"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,01,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,03,00,00,00,00,00,00,00,00,00
+"2009"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,01,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2010"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,01,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2011"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,02,00,01,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,03,00,00,00,00,00,00,00,00,00
+"2012"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,01,00,\
+  00,00,00,00,00,00,00,00,04,00,00,00,01,00,00,00,00,00,00,00,00,00
+"2013"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,01,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d4
+"LastEntry"=dword:000007dd
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Dateline Standard Time] 1660099897
+#time=1d8ac641c59ebb8
+"Display"="Etc/GMT+12"
+"Dlt"="Dateline Daylight Time"
+"MUI_Dlt"="@tzres.dll,-50385"
+"MUI_Std"="@tzres.dll,-50384"
+"Std"="Dateline Standard Time"
+"TZI"=hex:30,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\E. Africa Standard Time] 1660099897
+#time=1d8ac641c59f324
+"Display"="Africa/Nairobi"
+"Dlt"="E. Africa Daylight Time"
+"MUI_Dlt"="@tzres.dll,-62721"
+"MUI_Std"="@tzres.dll,-62720"
+"Std"="E. Africa Standard Time"
+"TZI"=hex:4c,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\E. Australia Standard Time] 1660099897
+#time=1d8ac641c5a0198
+"Display"="Australia/Brisbane"
+"Dlt"="E. Australia Daylight Time"
+"MUI_Dlt"="@tzres.dll,-65265"
+"MUI_Std"="@tzres.dll,-65264"
+"Std"="E. Australia Standard Time"
+"TZI"=hex:a8,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\E. South America Standard Time] 1660099897
+#time=1d8ac641c5a0922
+"Display"="America/Sao_Paulo"
+"Dlt"="E. South America Daylight Time"
+"MUI_Dlt"="@tzres.dll,-64097"
+"MUI_Std"="@tzres.dll,-64096"
+"Std"="E. South America Standard Time"
+"TZI"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,02,00,00,00,03,00,00,00,00,\
+  00,00,00,00,00,00,00,0c,00,02,00,05,00,17,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Easter Island Standard Time] 1660099897
+#time=1d8ac641c5a1174
+"Display"="Pacific/Easter\""
+"Dlt"="Easter Island Daylight Time"
+"MUI_Dlt"="@tzres.dll,-58593"
+"MUI_Std"="@tzres.dll,-58592"
+"Std"="Easter Island Standard Time"
+"TZI"=hex:2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Easter Island Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5a146c
+"2015"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,df,07,04,00,06,00,19,00,17,00,\
+  00,00,00,00,00,00,e0,07,01,00,05,00,01,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007df
+"LastEntry"=dword:000007df
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Eastern Standard Time] 1660099897
+#time=1d8ac641c5a1caa
+"Display"="America/New_York"
+"Dlt"="Eastern Daylight Time"
+"MUI_Dlt"="@tzres.dll,-30801"
+"MUI_Std"="@tzres.dll,-30800"
+"Std"="Eastern Standard Time"
+"TZI"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Eastern Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5a216e
+"2006"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,\
+  00,00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00
+"2007"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d6
+"LastEntry"=dword:000007d7
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Eastern Standard Time (Mexico)] 1660099897
+#time=1d8ac641c5a29d4
+"Display"="America/Cancun"
+"Dlt"="Eastern Daylight Time (Mexico)"
+"MUI_Dlt"="@tzres.dll,-59537"
+"MUI_Std"="@tzres.dll,-59536"
+"Std"="Eastern Standard Time (Mexico)"
+"TZI"=hex:2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Eastern Standard Time (Mexico)\\Dynamic DST] 1660099897
+#time=1d8ac641c5a2f60
+"2014"=hex:68,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,\
+  00,00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00
+"2015"=hex:68,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,01,00,04,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,02,00,00,00,01,00,02,00,00,00,00,00,00,00
+"2016"=hex:2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007de
+"LastEntry"=dword:000007e0
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Egypt Standard Time] 1660099897
+#time=1d8ac641c5a36e0
+"Display"="Africa/Cairo"
+"Dlt"="Egypt Daylight Time"
+"MUI_Dlt"="@tzres.dll,-59425"
+"MUI_Std"="@tzres.dll,-59424"
+"Std"="Egypt Standard Time"
+"TZI"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,08,00,05,00,05,00,00,00,00,\
+  00,00,00,00,00,00,00,04,00,05,00,04,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Ekaterinburg Standard Time] 1660099897
+#time=1d8ac641c5a3e4c
+"Display"="Asia/Yekaterinburg"
+"Dlt"="Ekaterinburg Daylight Time"
+"MUI_Dlt"="@tzres.dll,-45953"
+"MUI_Std"="@tzres.dll,-45952"
+"Std"="Ekaterinburg Standard Time"
+"TZI"=hex:d4,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Fiji Standard Time] 1660099897
+#time=1d8ac641c5a470c
+"Display"="Pacific/Fiji"
+"Dlt"="Fiji Daylight Time"
+"MUI_Dlt"="@tzres.dll,-25681"
+"MUI_Std"="@tzres.dll,-25680"
+"Std"="Fiji Standard Time"
+"TZI"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,01,00,00,00,03,00,03,00,00,\
+  00,00,00,00,00,00,00,0b,00,00,00,01,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Fiji Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5a7560
+"2016"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,e0,07,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,e0,07,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2017"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,e1,07,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,e1,07,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2021"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,e5,07,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,e5,07,0b,00,00,00,07,00,02,00,00,00,00,00,00,00
+"2022"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,e6,07,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,e6,07,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2023"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,e7,07,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,e7,07,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2027"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,eb,07,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,eb,07,0b,00,00,00,07,00,02,00,00,00,00,00,00,00
+"2028"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,ec,07,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,ec,07,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2033"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,f1,07,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,f1,07,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2034"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,f2,07,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,f2,07,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2038"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,f6,07,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,f6,07,0b,00,00,00,07,00,02,00,00,00,00,00,00,00
+"2039"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,f7,07,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,f7,07,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2040"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,f8,07,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,f8,07,0b,00,00,00,04,00,02,00,00,00,00,00,00,00
+"2044"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,fc,07,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,fc,07,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2045"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,fd,07,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,fd,07,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2049"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,01,08,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,01,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00
+"2050"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,02,08,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,02,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2051"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,03,08,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,03,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2055"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,07,08,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,07,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00
+"2056"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,08,08,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,08,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2061"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,0d,08,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,0d,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2062"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,0e,08,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,0e,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2066"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,12,08,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,12,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00
+"2067"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,13,08,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,13,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2068"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,14,08,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,14,08,0b,00,00,00,04,00,02,00,00,00,00,00,00,00
+"2072"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,18,08,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,18,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2073"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,19,08,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,19,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2077"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,1d,08,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,1d,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00
+"2078"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,1e,08,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,1e,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2079"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,1f,08,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,1f,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2083"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,23,08,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,23,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00
+"2084"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,24,08,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,24,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2089"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,29,08,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,29,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2090"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,2a,08,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,2a,08,0b,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2094"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,2e,08,01,00,00,00,18,00,03,00,\
+  00,00,00,00,00,00,2e,08,0b,00,00,00,07,00,02,00,00,00,00,00,00,00
+"2095"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,2f,08,01,00,00,00,17,00,03,00,\
+  00,00,00,00,00,00,2f,08,0b,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2096"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,30,08,01,00,00,00,16,00,03,00,\
+  00,00,00,00,00,00,30,08,0b,00,00,00,04,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007e0
+"LastEntry"=dword:00000830
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\FLE Standard Time] 1660099897
+#time=1d8ac641c5a7ee8
+"Display"="Europe/Kiev"
+"Dlt"="FLE Daylight Time"
+"MUI_Dlt"="@tzres.dll,-63265"
+"MUI_Std"="@tzres.dll,-63264"
+"Std"="FLE Standard Time"
+"TZI"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,04,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,05,00,03,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Georgian Standard Time] 1660099897
+#time=1d8ac641c5aa030
+"Display"="Asia/Tbilisi"
+"Dlt"="Georgian Daylight Time"
+"MUI_Dlt"="@tzres.dll,-417"
+"MUI_Std"="@tzres.dll,-416"
+"Std"="Georgian Standard Time"
+"TZI"=hex:10,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\GMT Standard Time] 1660099897
+#time=1d8ac641c5aa800
+"Display"="Europe/London"
+"Dlt"="GMT Daylight Time"
+"MUI_Dlt"="@tzres.dll,-7409"
+"MUI_Std"="@tzres.dll,-7408"
+"Std"="GMT Standard Time"
+"TZI"=hex:00,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,05,00,01,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Greenland Standard Time] 1660099897
+#time=1d8ac641c5aafa8
+"Display"="America/Godthab"
+"Dlt"="Greenland Daylight Time"
+"MUI_Dlt"="@tzres.dll,-58097"
+"MUI_Std"="@tzres.dll,-58096"
+"Std"="Greenland Standard Time"
+"TZI"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,06,00,05,00,17,00,00,\
+  00,00,00,00,00,00,00,03,00,06,00,05,00,16,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Greenland Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5ad546
+"2015"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,df,07,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,df,07,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2018"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,e2,07,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,e2,07,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2020"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,e4,07,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,e4,07,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2026"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,ea,07,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,ea,07,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2029"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,ed,07,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,ed,07,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2035"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,f3,07,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,f3,07,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2037"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,f5,07,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,f5,07,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2040"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,f8,07,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,f8,07,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2043"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,fb,07,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,fb,07,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2046"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,fe,07,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,fe,07,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2048"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,08,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,00,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2054"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,06,08,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,06,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2057"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,09,08,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,09,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2063"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,0f,08,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,0f,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2065"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,11,08,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,11,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2068"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,14,08,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,14,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2071"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,17,08,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,17,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2074"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,1a,08,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,1a,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2076"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,1c,08,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,1c,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2082"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,22,08,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,22,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2085"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,25,08,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,25,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2091"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,2b,08,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,2b,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2093"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,2d,08,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,2d,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"2096"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,30,08,0a,00,06,00,1b,00,17,00,\
+  00,00,00,00,00,00,30,08,03,00,06,00,18,00,16,00,00,00,00,00,00,00
+"2099"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,33,08,0a,00,06,00,18,00,17,00,\
+  00,00,00,00,00,00,33,08,03,00,06,00,1c,00,16,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007df
+"LastEntry"=dword:00000833
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Greenwich Standard Time] 1660099897
+#time=1d8ac641c5adeec
+"Display"="Atlantic/Reykjavik"
+"Dlt"="Greenwich Daylight Time"
+"MUI_Dlt"="@tzres.dll,-47169"
+"MUI_Std"="@tzres.dll,-47168"
+"Std"="Greenwich Standard Time"
+"TZI"=hex:00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\GTB Standard Time] 1660099897
+#time=1d8ac641c5ae694
+"Display"="Europe/Bucharest"
+"Dlt"="GTB Daylight Time"
+"MUI_Dlt"="@tzres.dll,-24193"
+"MUI_Std"="@tzres.dll,-24192"
+"Std"="GTB Standard Time"
+"TZI"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,04,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,05,00,03,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Haiti Standard Time] 1660099897
+#time=1d8ac641c5aef4a
+"Display"="America/Port-au-Prince"
+"Dlt"="Haiti Daylight Time"
+"MUI_Dlt"="@tzres.dll,-2897"
+"MUI_Std"="@tzres.dll,-2896"
+"Std"="Haiti Standard Time"
+"TZI"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Haiti Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5b03ae
+"2004"=hex:2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2005"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,00,00,\
+  00,00,00,00,00,00,00,00,04,00,00,00,01,00,00,00,00,00,00,00,00,00
+"2006"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,00,00,\
+  00,00,00,00,00,00,00,00,04,00,00,00,01,00,00,00,00,00,00,00,00,00
+"2007"=hex:2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2008"=hex:2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2009"=hex:2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2010"=hex:2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2011"=hex:2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2012"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"2013"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"2014"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"2015"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"2016"=hex:2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2017"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d4
+"LastEntry"=dword:000007e1
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Hawaiian Standard Time] 1660099897
+#time=1d8ac641c5b0b56
+"Display"="Pacific/Honolulu"
+"Dlt"="Hawaiian Daylight Time"
+"MUI_Dlt"="@tzres.dll,-53377"
+"MUI_Std"="@tzres.dll,-53376"
+"Std"="Hawaiian Standard Time"
+"TZI"=hex:58,02,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\India Standard Time] 1660099897
+#time=1d8ac641c5b1308
+"Display"="Asia/Calcutta"
+"Dlt"="India Daylight Time"
+"MUI_Dlt"="@tzres.dll,-22401"
+"MUI_Std"="@tzres.dll,-22400"
+"Std"="India Standard Time"
+"TZI"=hex:b6,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Iran Standard Time] 1660099897
+#time=1d8ac641c5b1d6c
+"Display"="Asia/Tehran"
+"Dlt"="Iran Daylight Time"
+"MUI_Dlt"="@tzres.dll,-5569"
+"MUI_Std"="@tzres.dll,-5568"
+"Std"="Iran Standard Time"
+"TZI"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,00,00,04,00,00,00,00,\
+  00,00,00,00,00,00,00,03,00,05,00,04,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Iran Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5b68bc
+"1991"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,00,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,05,00,05,00,01,00,00,00,00,00,00,00,00,00
+"1992"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,02,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,04,00,00,00,00,00,00,00,00,00
+"1993"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,03,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,01,00,04,00,00,00,00,00,00,00,00,00
+"1994"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,04,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,02,00,04,00,00,00,00,00,00,00,00,00
+"1995"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,05,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,03,00,04,00,00,00,00,00,00,00,00,00
+"1996"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,06,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,04,00,03,00,00,00,00,00,00,00,00,00
+"1997"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,01,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,06,00,04,00,00,00,00,00,00,00,00,00
+"1998"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,02,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,04,00,00,00,00,00,00,00,00,00
+"1999"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,03,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,01,00,04,00,00,00,00,00,00,00,00,00
+"2000"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,04,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,02,00,03,00,00,00,00,00,00,00,00,00
+"2001"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,06,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,04,00,04,00,00,00,00,00,00,00,00,00
+"2002"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,00,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,05,00,04,00,00,00,00,00,00,00,00,00
+"2003"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,01,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,06,00,04,00,00,00,00,00,00,00,00,00
+"2004"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,02,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,03,00,00,00,00,00,00,00,00,00
+"2005"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,04,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,02,00,04,00,00,00,00,00,00,00,00,00
+"2006"=hex:2e,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2007"=hex:2e,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2008"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,00,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,05,00,03,00,00,00,00,00,00,00,00,00
+"2009"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,02,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,04,00,00,00,00,00,00,00,00,00
+"2010"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,03,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,01,00,04,00,00,00,00,00,00,00,00,00
+"2011"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,04,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,02,00,04,00,00,00,00,00,00,00,00,00
+"2012"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,05,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,03,00,03,00,00,00,00,00,00,00,00,00
+"2013"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,00,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,05,00,04,00,00,00,00,00,00,00,00,00
+"2014"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,01,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,06,00,04,00,00,00,00,00,00,00,00,00
+"2015"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,02,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,04,00,00,00,00,00,00,00,00,00
+"2016"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,03,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,01,00,03,00,00,00,00,00,00,00,00,00
+"2017"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,05,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,03,00,04,00,00,00,00,00,00,00,00,00
+"2018"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,06,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,04,00,04,00,00,00,00,00,00,00,00,00
+"2019"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,00,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,05,00,04,00,00,00,00,00,00,00,00,00
+"2020"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,01,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,06,00,03,00,00,00,00,00,00,00,00,00
+"2021"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,03,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,01,00,04,00,00,00,00,00,00,00,00,00
+"2022"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,04,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,02,00,04,00,00,00,00,00,00,00,00,00
+"2023"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,05,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,03,00,04,00,00,00,00,00,00,00,00,00
+"2024"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,06,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,04,00,03,00,00,00,00,00,00,00,00,00
+"2025"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,01,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,06,00,04,00,00,00,00,00,00,00,00,00
+"2026"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,02,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,04,00,00,00,00,00,00,00,00,00
+"2027"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,03,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,01,00,04,00,00,00,00,00,00,00,00,00
+"2028"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,04,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,02,00,03,00,00,00,00,00,00,00,00,00
+"2029"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,05,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,03,00,03,00,00,00,00,00,00,00,00,00
+"2030"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,00,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,05,00,04,00,00,00,00,00,00,00,00,00
+"2031"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,01,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,06,00,04,00,00,00,00,00,00,00,00,00
+"2032"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,02,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,03,00,00,00,00,00,00,00,00,00
+"2033"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,03,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,01,00,03,00,00,00,00,00,00,00,00,00
+"2034"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,05,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,03,00,04,00,00,00,00,00,00,00,00,00
+"2035"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,06,00,04,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,04,00,04,00,00,00,00,00,00,00,00,00
+"2036"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,00,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,05,00,03,00,00,00,00,00,00,00,00,00
+"2037"=hex:2e,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,01,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,03,00,06,00,03,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007c7
+"LastEntry"=dword:000007f5
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Israel Standard Time] 1660099897
+#time=1d8ac641c5b7082
+"Display"="Asia/Jerusalem"
+"Dlt"="Israel Daylight Time"
+"MUI_Dlt"="@tzres.dll,-47969"
+"MUI_Std"="@tzres.dll,-47968"
+"Std"="Israel Standard Time"
+"TZI"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,05,00,04,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Israel Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5b8702
+"2019"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e3,07,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,e3,07,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"2024"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e8,07,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,e8,07,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"2030"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,ee,07,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,ee,07,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"2041"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f9,07,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,f9,07,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"2047"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,ff,07,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,ff,07,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"2052"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,04,08,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,04,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"2058"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,0a,08,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,0a,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"2069"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,15,08,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,15,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"2075"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,1b,08,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,1b,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"2080"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,20,08,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,20,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"2086"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,26,08,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,26,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"2097"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,31,08,0a,00,00,00,1b,00,02,00,\
+  00,00,00,00,00,00,31,08,03,00,05,00,1d,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007e3
+"LastEntry"=dword:00000831
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Jordan Standard Time] 1660099897
+#time=1d8ac641c5b8ea0
+"Display"="Asia/Amman"
+"Dlt"="Jordan Daylight Time"
+"MUI_Dlt"="@tzres.dll,-17233"
+"MUI_Std"="@tzres.dll,-17232"
+"Std"="Jordan Standard Time"
+"TZI"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,05,00,05,00,01,00,00,\
+  00,00,00,00,00,00,00,03,00,05,00,05,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Jordan Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5b9f76
+"2016"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e0,07,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,e0,07,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"2022"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,e6,07,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,e6,07,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"2033"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f1,07,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,f1,07,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"2039"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,f7,07,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,f7,07,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"2044"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,fc,07,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,fc,07,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"2050"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,02,08,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,02,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"2061"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,0d,08,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,0d,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"2067"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,13,08,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,13,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"2072"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,18,08,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,18,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"2078"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,1e,08,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,1e,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"2089"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,29,08,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,29,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"2095"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,2f,08,0a,00,05,00,1c,00,01,00,\
+  00,00,00,00,00,00,2f,08,04,00,05,00,01,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007e0
+"LastEntry"=dword:0000082f
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Kaliningrad Standard Time] 1660099897
+#time=1d8ac641c5ba674
+"Display"="Europe/Kaliningrad"
+"Dlt"="Kaliningrad Daylight Time"
+"MUI_Dlt"="@tzres.dll,-14721"
+"MUI_Std"="@tzres.dll,-14720"
+"Std"="Kaliningrad Standard Time"
+"TZI"=hex:88,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Korea Standard Time] 1660099897
+#time=1d8ac641c5baf02
+"Display"="Asia/Seoul"
+"Dlt"="Korea Daylight Time"
+"MUI_Dlt"="@tzres.dll,-62049"
+"MUI_Std"="@tzres.dll,-62048"
+"Std"="Korea Standard Time"
+"TZI"=hex:e4,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Libya Standard Time] 1660099897
+#time=1d8ac641c5bbbf0
+"Display"="Africa/Tripoli"
+"Dlt"="Libya Daylight Time"
+"MUI_Dlt"="@tzres.dll,-50769"
+"MUI_Std"="@tzres.dll,-50768"
+"Std"="Libya Standard Time"
+"TZI"=hex:88,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Line Islands Standard Time] 1660099897
+#time=1d8ac641c5bd220
+"Display"="Pacific/Kiritimati"
+"Dlt"="Line Islands Daylight Time"
+"MUI_Dlt"="@tzres.dll,-16769"
+"MUI_Std"="@tzres.dll,-16768"
+"Std"="Line Islands Standard Time"
+"TZI"=hex:b8,fc,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Lord Howe Standard Time] 1660099897
+#time=1d8ac641c5bde6e
+"Display"="Australia/Lord_Howe"
+"Dlt"="Lord Howe Daylight Time"
+"MUI_Dlt"="@tzres.dll,-8657"
+"MUI_Std"="@tzres.dll,-8656"
+"Std"="Lord Howe Standard Time"
+"TZI"=hex:8a,fd,ff,ff,00,00,00,00,e2,ff,ff,ff,00,00,04,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Lord Howe Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5be7c4
+"2005"=hex:8a,fd,ff,ff,00,00,00,00,e2,ff,ff,ff,00,00,03,00,00,00,05,00,02,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2006"=hex:8a,fd,ff,ff,00,00,00,00,e2,ff,ff,ff,00,00,04,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2007"=hex:8a,fd,ff,ff,00,00,00,00,e2,ff,ff,ff,00,00,03,00,00,00,05,00,02,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2008"=hex:8a,fd,ff,ff,00,00,00,00,e2,ff,ff,ff,00,00,04,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d5
+"LastEntry"=dword:000007d8
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Magadan Standard Time] 1660099897
+#time=1d8ac641c5bef8a
+"Display"="Asia/Magadan"
+"Dlt"="Magadan Daylight Time"
+"MUI_Dlt"="@tzres.dll,-8833"
+"MUI_Std"="@tzres.dll,-8832"
+"Std"="Magadan Standard Time"
+"TZI"=hex:a8,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Magallanes Standard Time] 1660099897
+#time=1d8ac641c5c02ae
+"Display"="America/Punta_Arenas"
+"Dlt"="Magallanes Daylight Time"
+"MUI_Dlt"="@tzres.dll,-13121"
+"MUI_Std"="@tzres.dll,-13120"
+"Std"="Magallanes Standard Time"
+"TZI"=hex:b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Magallanes Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5c13e8
+"2005"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,02,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2006"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,02,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,03,00,00,00,00,00,00,00,00,00
+"2007"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,02,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2008"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2009"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2010"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2011"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,05,00,00,00,02,00,00,00,\
+  00,00,00,00,00,00,00,00,08,00,00,00,03,00,00,00,00,00,00,00,00,00
+"2012"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,05,00,00,00,\
+  00,00,00,00,00,00,00,00,09,00,00,00,01,00,00,00,00,00,00,00,00,00
+"2013"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,05,00,00,00,\
+  00,00,00,00,00,00,00,00,09,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2014"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,05,00,00,00,\
+  00,00,00,00,00,00,00,00,09,00,00,00,01,00,00,00,00,00,00,00,00,00
+"2015"=hex:b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2016"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,05,00,00,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2017"=hex:b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d5
+"LastEntry"=dword:000007e1
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Marquesas Standard Time] 1660099897
+#time=1d8ac641c5c1ad2
+"Display"="Pacific/Marquesas"
+"Dlt"="Marquesas Daylight Time"
+"MUI_Dlt"="@tzres.dll,-20737"
+"MUI_Std"="@tzres.dll,-20736"
+"Std"="Marquesas Standard Time"
+"TZI"=hex:3a,02,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Mauritius Standard Time] 1660099897
+#time=1d8ac641c5c22a2
+"Display"="Indian/Mauritius"
+"Dlt"="Mauritius Daylight Time"
+"MUI_Dlt"="@tzres.dll,-60897"
+"MUI_Std"="@tzres.dll,-60896"
+"Std"="Mauritius Standard Time"
+"TZI"=hex:10,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Middle East Standard Time] 1660099897
+#time=1d8ac641c5c2ac2
+"Display"="Asia/Beirut"
+"Dlt"="Middle East Daylight Time"
+"MUI_Dlt"="@tzres.dll,-15969"
+"MUI_Std"="@tzres.dll,-15968"
+"Std"="Middle East Standard Time"
+"TZI"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,00,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,05,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Montevideo Standard Time] 1660099897
+#time=1d8ac641c5c34a4
+"Display"="America/Montevideo"
+"Dlt"="Montevideo Daylight Time"
+"MUI_Dlt"="@tzres.dll,-27969"
+"MUI_Std"="@tzres.dll,-27968"
+"Std"="Montevideo Standard Time"
+"TZI"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,02,00,02,00,00,\
+  00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Morocco Standard Time] 1660099897
+#time=1d8ac641c5c3d6e
+"Display"="Africa/Casablanca"
+"Dlt"="Morocco Daylight Time"
+"MUI_Dlt"="@tzres.dll,-2993"
+"MUI_Std"="@tzres.dll,-2992"
+"Std"="Morocco Standard Time"
+"TZI"=hex:00,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Morocco Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5c4958
+"2015"=hex:00,00,00,00,00,00,00,00,c4,ff,ff,ff,df,07,0a,00,00,00,19,00,03,00,\
+  00,00,00,00,00,00,df,07,07,00,00,00,13,00,02,00,00,00,00,00,00,00
+"2016"=hex:00,00,00,00,00,00,00,00,c4,ff,ff,ff,e0,07,0a,00,00,00,1e,00,03,00,\
+  00,00,00,00,00,00,e0,07,07,00,00,00,0a,00,02,00,00,00,00,00,00,00
+"2022"=hex:00,00,00,00,00,00,00,00,c4,ff,ff,ff,e6,07,0a,00,00,00,1e,00,03,00,\
+  00,00,00,00,00,00,e6,07,05,00,00,00,08,00,02,00,00,00,00,00,00,00
+"2023"=hex:00,00,00,00,00,00,00,00,c4,ff,ff,ff,e7,07,0a,00,00,00,1d,00,03,00,\
+  00,00,00,00,00,00,e7,07,04,00,00,00,17,00,02,00,00,00,00,00,00,00
+"2024"=hex:00,00,00,00,00,00,00,00,c4,ff,ff,ff,e8,07,0a,00,00,00,1b,00,03,00,\
+  00,00,00,00,00,00,e8,07,04,00,00,00,0e,00,02,00,00,00,00,00,00,00
+"2025"=hex:00,00,00,00,00,00,00,00,c4,ff,ff,ff,e9,07,0a,00,00,00,1a,00,03,00,\
+  00,00,00,00,00,00,e9,07,04,00,00,00,06,00,02,00,00,00,00,00,00,00
+"2036"=hex:00,00,00,00,00,00,00,00,c4,ff,ff,ff,f4,07,0a,00,00,00,13,00,03,00,\
+  00,00,00,00,00,00,f4,07,03,00,00,00,1e,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007df
+"LastEntry"=dword:000007f4
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Mountain Standard Time] 1660099897
+#time=1d8ac641c5c529a
+"Display"="America/Denver"
+"Dlt"="Mountain Daylight Time"
+"MUI_Dlt"="@tzres.dll,-34353"
+"MUI_Std"="@tzres.dll,-34352"
+"Std"="Mountain Standard Time"
+"TZI"=hex:a4,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Mountain Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5c574a
+"2006"=hex:a4,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,\
+  00,00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00
+"2007"=hex:a4,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d6
+"LastEntry"=dword:000007d7
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Mountain Standard Time (Mexico)] 1660099897
+#time=1d8ac641c5c608c
+"Display"="America/Chihuahua"
+"Dlt"="Mountain Daylight Time (Mexico)"
+"MUI_Dlt"="@tzres.dll,-7249"
+"MUI_Std"="@tzres.dll,-7248"
+"Std"="Mountain Standard Time (Mexico)"
+"TZI"=hex:a4,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,00,\
+  00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Myanmar Standard Time] 1660099897
+#time=1d8ac641c5c6974
+"Display"="Asia/Rangoon"
+"Dlt"="Myanmar Daylight Time"
+"MUI_Dlt"="@tzres.dll,-21105"
+"MUI_Std"="@tzres.dll,-21104"
+"Std"="Myanmar Standard Time"
+"TZI"=hex:7a,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\N. Central Asia Standard Time] 1660099897
+#time=1d8ac641c5c72ac
+"Display"="Asia/Novosibirsk"
+"Dlt"="N. Central Asia Daylight Time"
+"MUI_Dlt"="@tzres.dll,-30705"
+"MUI_Std"="@tzres.dll,-30704"
+"Std"="N. Central Asia Standard Time"
+"TZI"=hex:98,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Namibia Standard Time] 1660099897
+#time=1d8ac641c5c7a90
+"Display"="Africa/Windhoek"
+"Dlt"="Namibia Daylight Time"
+"MUI_Dlt"="@tzres.dll,-6209"
+"MUI_Std"="@tzres.dll,-6208"
+"Std"="Namibia Standard Time"
+"TZI"=hex:c4,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,09,00,00,00,01,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Nepal Standard Time] 1660099897
+#time=1d8ac641c5c8260
+"Display"="Asia/Katmandu"
+"Dlt"="Nepal Daylight Time"
+"MUI_Dlt"="@tzres.dll,-1217"
+"MUI_Std"="@tzres.dll,-1216"
+"Std"="Nepal Standard Time"
+"TZI"=hex:a7,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\New Zealand Standard Time] 1660099897
+#time=1d8ac641c5c8a6c
+"Display"="Pacific/Auckland"
+"Dlt"="New Zealand Daylight Time"
+"MUI_Dlt"="@tzres.dll,-54897"
+"MUI_Std"="@tzres.dll,-54896"
+"Std"="New Zealand Standard Time"
+"TZI"=hex:30,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,00,\
+  00,00,00,00,00,00,00,09,00,00,00,05,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Newfoundland Standard Time] 1660099897
+#time=1d8ac641c5c9264
+"Display"="America/St_Johns"
+"Dlt"="Newfoundland Daylight Time"
+"MUI_Dlt"="@tzres.dll,-9505"
+"MUI_Std"="@tzres.dll,-9504"
+"Std"="Newfoundland Standard Time"
+"TZI"=hex:d2,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\North Asia East Standard Time] 1660099897
+#time=1d8ac641c5c9aac
+"Display"="Asia/Irkutsk"
+"Dlt"="North Asia East Daylight Time"
+"MUI_Dlt"="@tzres.dll,-19057"
+"MUI_Std"="@tzres.dll,-19056"
+"Std"="North Asia East Standard Time"
+"TZI"=hex:20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\North Asia Standard Time] 1660099897
+#time=1d8ac641c5ca4ac
+"Display"="Asia/Krasnoyarsk"
+"Dlt"="North Asia Daylight Time"
+"MUI_Dlt"="@tzres.dll,-305"
+"MUI_Std"="@tzres.dll,-304"
+"Std"="North Asia Standard Time"
+"TZI"=hex:5c,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\North Korea Standard Time] 1660099897
+#time=1d8ac641c5cad8a
+"Display"="Asia/Pyongyang"
+"Dlt"="North Korea Daylight Time"
+"MUI_Dlt"="@tzres.dll,-35889"
+"MUI_Std"="@tzres.dll,-35888"
+"Std"="North Korea Standard Time"
+"TZI"=hex:e4,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\North Korea Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5cb640
+"2014"=hex:e4,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2015"=hex:e4,fd,ff,ff,00,00,00,00,1e,00,00,00,00,00,01,00,04,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,08,00,06,00,03,00,00,00,00,00,00,00,00,00
+"2016"=hex:02,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2017"=hex:02,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2018"=hex:02,fe,ff,ff,00,00,00,00,e2,ff,ff,ff,00,00,01,00,01,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,05,00,05,00,01,00,17,00,1e,00,00,00,00,00
+"2019"=hex:e4,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007de
+"LastEntry"=dword:000007e3
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Pacific SA Standard Time] 1660099897
+#time=1d8ac641c5cbe06
+"Display"="America/Santiago"
+"Dlt"="Pacific SA Daylight Time"
+"MUI_Dlt"="@tzres.dll,-65009"
+"MUI_Std"="@tzres.dll,-65008"
+"Std"="Pacific SA Standard Time"
+"TZI"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,00,00,00,\
+  00,00,00,00,00,00,00,09,00,00,00,01,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Pacific SA Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5cd3a0
+"2005"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,02,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2006"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,02,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,03,00,00,00,00,00,00,00,00,00
+"2007"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,02,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2008"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2009"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2010"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2011"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,05,00,00,00,02,00,00,00,\
+  00,00,00,00,00,00,00,00,08,00,00,00,03,00,00,00,00,00,00,00,00,00
+"2012"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,05,00,00,00,\
+  00,00,00,00,00,00,00,00,09,00,00,00,01,00,00,00,00,00,00,00,00,00
+"2013"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,05,00,00,00,\
+  00,00,00,00,00,00,00,00,09,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2014"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,05,00,00,00,\
+  00,00,00,00,00,00,00,00,09,00,00,00,01,00,00,00,00,00,00,00,00,00
+"2015"=hex:b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2016"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,05,00,00,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2017"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,05,00,00,00,02,00,00,00,\
+  00,00,00,00,00,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2018"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,05,00,00,00,02,00,00,00,\
+  00,00,00,00,00,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2019"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,09,00,00,00,02,00,00,00,00,00,00,00,00,00
+"2020"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,09,00,00,00,01,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d5
+"LastEntry"=dword:000007e4
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Pacific Standard Time] 1660099897
+#time=1d8ac641c5cdd0a
+"Display"="America/Los_Angeles"
+"Dlt"="Pacific Daylight Time"
+"MUI_Dlt"="@tzres.dll,-11233"
+"MUI_Std"="@tzres.dll,-11232"
+"Std"="Pacific Standard Time"
+"TZI"=hex:e0,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Pacific Standard Time\\Dynamic DST] 1660099897
+#time=1d8ac641c5ce0f2
+"2006"=hex:e0,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,\
+  00,00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00
+"2007"=hex:e0,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d6
+"LastEntry"=dword:000007d7
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Pacific Standard Time (Mexico)] 1660099897
+#time=1d8ac641c5ce804
+"Display"="America/Tijuana"
+"Dlt"="Pacific Daylight Time (Mexico)"
+"MUI_Dlt"="@tzres.dll,-15585"
+"MUI_Std"="@tzres.dll,-15584"
+"Std"="Pacific Standard Time (Mexico)"
+"TZI"=hex:e0,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Pakistan Standard Time] 1660099897
+#time=1d8ac641c5d0ed8
+"Display"="Asia/Karachi"
+"Dlt"="Pakistan Daylight Time"
+"MUI_Dlt"="@tzres.dll,-28753"
+"MUI_Std"="@tzres.dll,-28752"
+"Std"="Pakistan Standard Time"
+"TZI"=hex:d4,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Paraguay Standard Time] 1660099897
+#time=1d8ac641c5d16d0
+"Display"="America/Asuncion"
+"Dlt"="Paraguay Daylight Time"
+"MUI_Dlt"="@tzres.dll,-50225"
+"MUI_Std"="@tzres.dll,-50224"
+"Std"="Paraguay Standard Time"
+"TZI"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,04,00,00,00,00,\
+  00,00,00,00,00,00,00,0a,00,00,00,01,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Romance Standard Time] 1660099898
+#time=1d8ac641c5d1e46
+"Display"="Europe/Paris"
+"Dlt"="Romance Daylight Time"
+"MUI_Dlt"="@tzres.dll,-45105"
+"MUI_Std"="@tzres.dll,-45104"
+"Std"="Romance Standard Time"
+"TZI"=hex:c4,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Russian Standard Time] 1660099898
+#time=1d8ac641c5d25da
+"Display"="Europe/Moscow"
+"Dlt"="Russian Daylight Time"
+"MUI_Dlt"="@tzres.dll,-44561"
+"MUI_Std"="@tzres.dll,-44560"
+"Std"="Russian Standard Time"
+"TZI"=hex:4c,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\SA Eastern Standard Time] 1660099898
+#time=1d8ac641c5d2daa
+"Display"="America/Cayenne"
+"Dlt"="SA Eastern Daylight Time"
+"MUI_Dlt"="@tzres.dll,-40657"
+"MUI_Std"="@tzres.dll,-40656"
+"Std"="SA Eastern Standard Time"
+"TZI"=hex:b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\SA Pacific Standard Time] 1660099898
+#time=1d8ac641c5d35ac
+"Display"="America/Bogota"
+"Dlt"="SA Pacific Daylight Time"
+"MUI_Dlt"="@tzres.dll,-49425"
+"MUI_Std"="@tzres.dll,-49424"
+"Std"="SA Pacific Standard Time"
+"TZI"=hex:2c,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\SA Western Standard Time] 1660099898
+#time=1d8ac641c5d3d0e
+"Display"="America/La_Paz"
+"Dlt"="SA Western Daylight Time"
+"MUI_Dlt"="@tzres.dll,-57121"
+"MUI_Std"="@tzres.dll,-57120"
+"Std"="SA Western Standard Time"
+"TZI"=hex:f0,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Saint Pierre Standard Time] 1660099898
+#time=1d8ac641c5d4556
+"Display"="America/Miquelon"
+"Dlt"="Saint Pierre Daylight Time"
+"MUI_Dlt"="@tzres.dll,-5585"
+"MUI_Std"="@tzres.dll,-5584"
+"Std"="Saint Pierre Standard Time"
+"TZI"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Saint Pierre Standard Time\\Dynamic DST] 1660099898
+#time=1d8ac641c5d49de
+"2006"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,02,00,\
+  00,00,00,00,00,00,00,00,04,00,00,00,01,00,02,00,00,00,00,00,00,00
+"2007"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,\
+  00,00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d6
+"LastEntry"=dword:000007d7
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Samoa Standard Time] 1660099898
+#time=1d8ac641c5d514a
+"Display"="Pacific/Apia"
+"Dlt"="Samoa Daylight Time"
+"MUI_Dlt"="@tzres.dll,-14593"
+"MUI_Std"="@tzres.dll,-14592"
+"Std"="Samoa Standard Time"
+"TZI"=hex:94,02,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\SE Asia Standard Time] 1660099898
+#time=1d8ac641c5d58de
+"Display"="Asia/Bangkok"
+"Dlt"="SE Asia Daylight Time"
+"MUI_Dlt"="@tzres.dll,-53729"
+"MUI_Std"="@tzres.dll,-53728"
+"Std"="SE Asia Standard Time"
+"TZI"=hex:5c,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Singapore Standard Time] 1660099898
+#time=1d8ac641c5d607c
+"Display"="Asia/Singapore"
+"Dlt"="Singapore Daylight Time"
+"MUI_Dlt"="@tzres.dll,-61841"
+"MUI_Std"="@tzres.dll,-61840"
+"Std"="Singapore Standard Time"
+"TZI"=hex:20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\South Africa Standard Time] 1660099898
+#time=1d8ac641c5d67de
+"Display"="Africa/Johannesburg"
+"Dlt"="South Africa Daylight Time"
+"MUI_Dlt"="@tzres.dll,-38897"
+"MUI_Std"="@tzres.dll,-38896"
+"Std"="South Africa Standard Time"
+"TZI"=hex:88,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Sri Lanka Standard Time] 1660099898
+#time=1d8ac641c5d6f90
+"Display"="Asia/Colombo"
+"Dlt"="Sri Lanka Daylight Time"
+"MUI_Dlt"="@tzres.dll,-39409"
+"MUI_Std"="@tzres.dll,-39408"
+"Std"="Sri Lanka Standard Time"
+"TZI"=hex:b6,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Syria Standard Time] 1660099898
+#time=1d8ac641c5d76a2
+"Display"="Asia/Damascus"
+"Dlt"="Syria Daylight Time"
+"MUI_Dlt"="@tzres.dll,-46577"
+"MUI_Std"="@tzres.dll,-46576"
+"Std"="Syria Standard Time"
+"TZI"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,05,00,05,00,00,00,00,\
+  00,00,00,00,00,00,00,03,00,05,00,05,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Taipei Standard Time] 1660099898
+#time=1d8ac641c5d7e5e
+"Display"="Asia/Taipei"
+"Dlt"="Taipei Daylight Time"
+"MUI_Dlt"="@tzres.dll,-26433"
+"MUI_Std"="@tzres.dll,-26432"
+"Std"="Taipei Standard Time"
+"TZI"=hex:20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Tasmania Standard Time] 1660099898
+#time=1d8ac641c5d8818
+"Display"="Australia/Hobart"
+"Dlt"="Tasmania Daylight Time"
+"MUI_Dlt"="@tzres.dll,-36017"
+"MUI_Std"="@tzres.dll,-36016"
+"Std"="Tasmania Standard Time"
+"TZI"=hex:a8,fd,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,04,00,00,00,01,00,03,00,00,\
+  00,00,00,00,00,00,00,0a,00,00,00,01,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Tocantins Standard Time] 1660099898
+#time=1d8ac641c5da578
+"Display"="America/Araguaina"
+"Dlt"="Tocantins Daylight Time"
+"MUI_Dlt"="@tzres.dll,-43073"
+"MUI_Std"="@tzres.dll,-43072"
+"Std"="Tocantins Standard Time"
+"TZI"=hex:b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Tocantins Standard Time\\Dynamic DST] 1660099898
+#time=1d8ac641c5db0e0
+"2011"=hex:b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2012"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,01,00,00,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,03,00,00,00,00,00,00,00,00,00
+"2013"=hex:b4,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,02,00,00,00,03,00,00,00,\
+  00,00,00,00,00,00,00,00,01,00,02,00,01,00,00,00,00,00,00,00,00,00
+"2014"=hex:b4,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007db
+"LastEntry"=dword:000007de
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Tokyo Standard Time] 1660099898
+#time=1d8ac641c5dbc98
+"Display"="Asia/Tokyo"
+"Dlt"="Tokyo Daylight Time"
+"MUI_Dlt"="@tzres.dll,-16241"
+"MUI_Std"="@tzres.dll,-16240"
+"Std"="Tokyo Standard Time"
+"TZI"=hex:e4,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Tonga Standard Time] 1660099898
+#time=1d8ac641c5ddbc4
+"Display"="Pacific/Tongatapu"
+"Dlt"="Tonga Daylight Time"
+"MUI_Dlt"="@tzres.dll,-7217"
+"MUI_Std"="@tzres.dll,-7216"
+"Std"="Tonga Standard Time"
+"TZI"=hex:f4,fc,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Turkey Standard Time] 1660099898
+#time=1d8ac641c5df528
+"Display"="Europe/Istanbul"
+"Dlt"="Turkey Daylight Time"
+"MUI_Dlt"="@tzres.dll,-24849"
+"MUI_Std"="@tzres.dll,-24848"
+"Std"="Turkey Standard Time"
+"TZI"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,04,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,05,00,03,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Turkey Standard Time\\Dynamic DST] 1660099898
+#time=1d8ac641c5df7f8
+"2015"=hex:88,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,df,07,0b,00,00,00,08,00,04,00,\
+  00,00,00,00,00,00,df,07,03,00,00,00,1d,00,03,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007df
+"LastEntry"=dword:000007df
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Ulaanbaatar Standard Time] 1660099898
+#time=1d8ac641c5dff50
+"Display"="Asia/Ulaanbaatar"
+"Dlt"="Ulaanbaatar Daylight Time"
+"MUI_Dlt"="@tzres.dll,-47201"
+"MUI_Std"="@tzres.dll,-47200"
+"Std"="Ulaanbaatar Standard Time"
+"TZI"=hex:20,fe,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,09,00,06,00,05,00,00,00,00,\
+  00,00,00,00,00,00,00,03,00,06,00,05,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\US Eastern Standard Time] 1660099898
+#time=1d8ac641c5e061c
+"Display"="America/Indianapolis"
+"Dlt"="US Eastern Daylight Time"
+"MUI_Dlt"="@tzres.dll,-34929"
+"MUI_Std"="@tzres.dll,-34928"
+"Std"="US Eastern Standard Time"
+"TZI"=hex:2c,01,00,00,00,00,00,00,c4,ff,ff,ff,00,00,0b,00,00,00,01,00,02,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,02,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\US Mountain Standard Time] 1660099898
+#time=1d8ac641c5e0cf2
+"Display"="America/Phoenix"
+"Dlt"="US Mountain Daylight Time"
+"MUI_Dlt"="@tzres.dll,-37473"
+"MUI_Std"="@tzres.dll,-37472"
+"Std"="US Mountain Standard Time"
+"TZI"=hex:a4,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\UTC] 1660099898
+#time=1d8ac641c5e149a
+"Display"="Etc/GMT"
+"Dlt"="Coordinated Universal Time"
+"MUI_Dlt"="@tzres.dll,-22001"
+"MUI_Std"="@tzres.dll,-22000"
+"Std"="Coordinated Universal Time"
+"TZI"=hex:00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Venezuela Standard Time] 1660099898
+#time=1d8ac641c5e1ba2
+"Display"="America/Caracas"
+"Dlt"="Venezuela Daylight Time"
+"MUI_Dlt"="@tzres.dll,-51473"
+"MUI_Std"="@tzres.dll,-51472"
+"Std"="Venezuela Standard Time"
+"TZI"=hex:0e,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Vladivostok Standard Time] 1660099898
+#time=1d8ac641c5e228c
+"Display"="Asia/Vladivostok"
+"Dlt"="Vladivostok Daylight Time"
+"MUI_Dlt"="@tzres.dll,-61377"
+"MUI_Std"="@tzres.dll,-61376"
+"Std"="Vladivostok Standard Time"
+"TZI"=hex:a8,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\W. Australia Standard Time] 1660099898
+#time=1d8ac641c5e4028
+"Display"="Australia/Perth"
+"Dlt"="W. Australia Daylight Time"
+"MUI_Dlt"="@tzres.dll,-65377"
+"MUI_Std"="@tzres.dll,-65376"
+"Std"="W. Australia Standard Time"
+"TZI"=hex:20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\W. Australia Standard Time\\Dynamic DST] 1660099898
+#time=1d8ac641c5e4d7a
+"2005"=hex:20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"2006"=hex:20,fe,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,01,00,00,00,01,00,00,00,\
+  00,00,00,00,00,00,00,00,0c,00,00,00,01,00,02,00,00,00,00,00,00,00
+"2007"=hex:20,fe,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2008"=hex:20,fe,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,03,00,\
+  00,00,00,00,00,00,00,00,0a,00,00,00,05,00,02,00,00,00,00,00,00,00
+"2009"=hex:20,fe,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,03,00,00,00,05,00,03,00,\
+  00,00,00,00,00,00,00,00,01,00,04,00,01,00,00,00,00,00,00,00,00,00
+"2010"=hex:20,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+"FirstEntry"=dword:000007d5
+"LastEntry"=dword:000007da
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\W. Central Africa Standard Time] 1660099898
+#time=1d8ac641c5e559a
+"Display"="Africa/Lagos"
+"Dlt"="W. Central Africa Daylight Time"
+"MUI_Dlt"="@tzres.dll,-64977"
+"MUI_Std"="@tzres.dll,-64976"
+"Std"="W. Central Africa Standard Time"
+"TZI"=hex:c4,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\W. Europe Standard Time] 1660099898
+#time=1d8ac641c5e5db0
+"Display"="Europe/Berlin"
+"Dlt"="W. Europe Daylight Time"
+"MUI_Dlt"="@tzres.dll,-27697"
+"MUI_Std"="@tzres.dll,-27696"
+"Std"="W. Europe Standard Time"
+"TZI"=hex:c4,ff,ff,ff,00,00,00,00,c4,ff,ff,ff,00,00,0a,00,00,00,05,00,03,00,00,\
+  00,00,00,00,00,00,00,03,00,00,00,05,00,02,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\West Asia Standard Time] 1660099898
+#time=1d8ac641c5e654e
+"Display"="Asia/Tashkent"
+"Dlt"="West Asia Daylight Time"
+"MUI_Dlt"="@tzres.dll,-49665"
+"MUI_Std"="@tzres.dll,-49664"
+"Std"="West Asia Standard Time"
+"TZI"=hex:d4,fe,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\West Pacific Standard Time] 1660099898
+#time=1d8ac641c5e6cd8
+"Display"="Pacific/Port_Moresby"
+"Dlt"="West Pacific Daylight Time"
+"MUI_Dlt"="@tzres.dll,-10225"
+"MUI_Std"="@tzres.dll,-10224"
+"Std"="West Pacific Standard Time"
+"TZI"=hex:a8,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones\\Yakutsk Standard Time] 1660099898
+#time=1d8ac641c5e748a
+"Display"="Asia/Yakutsk"
+"Dlt"="Yakutsk Daylight Time"
+"MUI_Dlt"="@tzres.dll,-40577"
+"MUI_Std"="@tzres.dll,-40576"
+"Std"="Yakutsk Standard Time"
+"TZI"=hex:e4,fd,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
+  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon] 1660099897
+#time=1d8ac641c4e03d4
+"Shell"="explorer.exe"
+
+[Software\\Policies] 1660099897
+#time=1d8ac641c4ed5d4
+
+[Software\\Registered Applications] 1660099897
+#time=1d8ac641c4ed692
+
+[Software\\Wine\\Drives] 1660099898
+#time=1d8ac641c7fbe2e
+"d:"="cdrom"
+
+[Software\\Wine\\LicenseInformation] 1660099898
+#time=1d8ac641c5e9cf8
+"Kernel-MUI-Language-Allowed"="EMPTY"
+"Kernel-MUI-Language-Disallowed"="EMPTY"
+"Kernel-MUI-Number-Allowed"=dword:000003e8
+"Shell-InBoxGames-FreeCell-EnableGame"=dword:00000001
+"Shell-InBoxGames-Hearts-EnableGame"=dword:00000001
+"Shell-InBoxGames-Minesweeper-EnableGame"=dword:00000001
+"Shell-InBoxGames-PurblePlace-EnableGame"=dword:00000001
+"Shell-InBoxGames-Shanghai-EnableGame"=dword:00000001
+"Shell-InBoxGames-Solitaire-EnableGame"=dword:00000001
+"Shell-InBoxGames-SpiderSolitaire-EnableGame"=dword:00000001
+"Shell-PremiumInBoxGames-Chess-EnableGame"=dword:00000001
+
+[Software\\Wine\\Ports] 1660099898
+#time=1d8ac641c64e6b2
+
+[System\\CurrentControlSet\\Control\\Class\\{4d36e967-e325-11ce-bfc1-08002be10318}] 1660099897
+#time=1d8ac641c4d8bf2
+@="Disk drives"
+"Class"="DiskDrive"
+
+[System\\CurrentControlSet\\Control\\Class\\{4D36E968-E325-11CE-BFC1-08002BE10318}] 1660099897
+#time=1d8ac641c4d8e18
+@="Display adapters"
+"Class"="Display"
+
+[System\\CurrentControlSet\\Control\\Class\\{4D36E968-E325-11CE-BFC1-08002BE10318}\\0000] 1660099895
+#time=1d8ac641adcec90
+"DriverDate"="8-10-2022"
+"DriverDateData"=hex:f6,eb,dc,1a,64,ac,d8,01
+"DriverDesc"="AMD RADV RAVEN (LLVM 7.0.1)"
+
+[System\\CurrentControlSet\\Control\\Class\\{4D36E96E-E325-11CE-BFC1-08002BE10318}] 1660099897
+#time=1d8ac641c4d905c
+@="Monitors"
+"Class"="Monitor"
+
+[System\\CurrentControlSet\\Control\\Class\\{4D36E96E-E325-11CE-BFC1-08002BE10318}\\0000] 1660099895
+#time=1d8ac641add1896
+
+[System\\CurrentControlSet\\Control\\Class\\{4d36e978-e325-11ce-bfc1-08002be10318}] 1660099897
+#time=1d8ac641c4d926e
+@="Ports (COM & LPT)"
+"Class"="Ports"
+
+[System\\CurrentControlSet\\Control\\Class\\{4d36e97d-e325-11ce-bfc1-08002be10318}] 1660099898
+#time=1d8ac641c970692
+@="System devices"
+"Class"="System"
+
+[System\\CurrentControlSet\\Control\\Class\\{4d36e97d-e325-11ce-bfc1-08002be10318}\\0000] 1660099898
+#time=1d8ac641c79292e
+"InfPath"="winebus.inf"
+"InfSection"="device_section"
+
+[System\\CurrentControlSet\\Control\\Class\\{4d36e97d-e325-11ce-bfc1-08002be10318}\\0001] 1660099898
+#time=1d8ac641c97fe58
+"InfPath"="wineusb.inf"
+"InfSection"="device_section"
+
+[System\\CurrentControlSet\\Control\\Class\\{6bdd1fc6-810f-11d0-bec7-08002be2092f}] 1660099897
+#time=1d8ac641c4d9700
+@="Imaging devices"
+"Class"="Image"
+
+[System\\CurrentControlSet\\Control\\Class\\{745a17a0-74d3-11d0-b6fe-00a0c90f57da}] 1660099898
+#time=1d8ac641c7e47ba
+@="Human Interface Devices"
+"Class"="HIDClass"
+
+[System\\CurrentControlSet\\Control\\Class\\{745a17a0-74d3-11d0-b6fe-00a0c90f57da}\\0000] 1660099898
+#time=1d8ac641c8b0f54
+"InfPath"="winehid.inf"
+"InfSection"="device_section"
+
+[System\\CurrentControlSet\\Control\\ComputerName\\ComputerName] 1660099895
+#time=1d8ac641ac146fc
+"ComputerName"="GFDGDXI-PC"
+
+[System\\CurrentControlSet\\Control\\ContentIndex\\Language\\Neutral] 1660099897
+#time=1d8ac641c4d89ae
+"Locale"=dword:00000000
+"StemmerClass"=""
+"WBreakerClass"="{369647e0-17b0-11ce-9950-00aa004bbb1f}"
+
+[System\\CurrentControlSet\\Control\\DeviceClasses\\{378DE44C-56EF-11D1-BC8C-00A0C91405DD}\\##?#HID#VID_0000&PID_0000#0&WINEMOUSE&0&0#{378DE44C-56EF-11D1-BC8C-00A0C91405DD}] 1660099898
+#time=1d8ac641c8db4fc
+"DeviceInstance"="HID\\VID_0000&PID_0000\\0&WINEMOUSE&0&0"
+
+[System\\CurrentControlSet\\Control\\DeviceClasses\\{378DE44C-56EF-11D1-BC8C-00A0C91405DD}\\##?#HID#VID_0000&PID_0000#0&WINEMOUSE&0&0#{378DE44C-56EF-11D1-BC8C-00A0C91405DD}\\#] 1660099898
+#time=1d8ac641c8e1136
+"SymbolicLink"="\\\\?\\HID#VID_0000&PID_0000#0&WINEMOUSE&0&0#{378DE44C-56EF-11D1-BC8C-00A0C91405DD}"
+
+[System\\CurrentControlSet\\Control\\DeviceClasses\\{4D1E55B2-F16F-11CF-88CB-001111000030}\\##?#HID#VID_0000&PID_0000#0&WINEMOUSE&0&0#{4D1E55B2-F16F-11CF-88CB-001111000030}] 1660099898
+#time=1d8ac641c8da174
+"DeviceInstance"="HID\\VID_0000&PID_0000\\0&WINEMOUSE&0&0"
+
+[System\\CurrentControlSet\\Control\\DeviceClasses\\{4D1E55B2-F16F-11CF-88CB-001111000030}\\##?#HID#VID_0000&PID_0000#0&WINEMOUSE&0&0#{4D1E55B2-F16F-11CF-88CB-001111000030}\\#] 1660099898
+#time=1d8ac641c8de328
+"SymbolicLink"="\\\\?\\HID#VID_0000&PID_0000#0&WINEMOUSE&0&0#{4D1E55B2-F16F-11CF-88CB-001111000030}"
+
+[System\\CurrentControlSet\\Control\\FontAssoc\\Associated Charset] 1660099895
+#time=1d8ac641ac5b0d4
+"ANSI(00)"="YES"
+"OEM(FF)"="YES"
+"SYMBOL(02)"="NO"
+
+[System\\CurrentControlSet\\Control\\hivelist] 1660099897
+#time=1d8ac641c4ed750
+
+[System\\CurrentControlSet\\Control\\Lsa] 1660099897
+#time=1d8ac641c4ed99e
+"Security Packages"=str(7):"kerberos\0schannel\0"
+
+[System\\CurrentControlSet\\Control\\Lsa\\Kerberos] 1660099897
+#time=1d8ac641c4ed99e
+
+[System\\CurrentControlSet\\Control\\Nls\\Codepage] 1660099896
+#time=1d8ac641b7e8154
+"10000"="c_10000.nls"
+"10001"="c_10001.nls"
+"10002"="c_10002.nls"
+"10003"="c_10003.nls"
+"10004"="c_10004.nls"
+"10005"="c_10005.nls"
+"10006"="c_10006.nls"
+"10007"="c_10007.nls"
+"10008"="c_10008.nls"
+"10010"="c_10010.nls"
+"10017"="c_10017.nls"
+"10021"="c_10021.nls"
+"10029"="c_10029.nls"
+"10079"="c_10079.nls"
+"10081"="c_10081.nls"
+"10082"="c_10082.nls"
+"1026"="c_1026.nls"
+"1250"="c_1250.nls"
+"1251"="c_1251.nls"
+"1252"="c_1252.nls"
+"1253"="c_1253.nls"
+"1254"="c_1254.nls"
+"1255"="c_1255.nls"
+"1256"="c_1256.nls"
+"1257"="c_1257.nls"
+"1258"="c_1258.nls"
+"1361"="c_1361.nls"
+"20127"="c_20127.nls"
+"20866"="c_20866.nls"
+"20932"="c_20932.nls"
+"21866"="c_21866.nls"
+"28591"="c_28591.nls"
+"28592"="c_28592.nls"
+"28593"="c_28593.nls"
+"28594"="c_28594.nls"
+"28595"="c_28595.nls"
+"28596"="c_28596.nls"
+"28597"="c_28597.nls"
+"28598"="c_28598.nls"
+"28599"="c_28599.nls"
+"28603"="c_28603.nls"
+"28605"="c_28605.nls"
+"37"="c_037.nls"
+"437"="c_437.nls"
+"500"="c_500.nls"
+"708"="c_708.nls"
+"737"="c_737.nls"
+"775"="c_775.nls"
+"850"="c_850.nls"
+"852"="c_852.nls"
+"855"="c_855.nls"
+"857"="c_857.nls"
+"860"="c_860.nls"
+"861"="c_861.nls"
+"862"="c_862.nls"
+"863"="c_863.nls"
+"864"="c_864.nls"
+"865"="c_865.nls"
+"866"="c_866.nls"
+"869"="c_869.nls"
+"874"="c_874.nls"
+"875"="c_875.nls"
+"932"="c_932.nls"
+"936"="c_936.nls"
+"949"="c_949.nls"
+"950"="c_950.nls"
+"ACP"="936"
+"MACCP"="10008"
+"OEMCP"="936"
+
+[System\\CurrentControlSet\\Control\\Nls\\Language] 1660099897
+#time=1d8ac641c4fe33e
+"0401"="l_intl.nls"
+"0402"="l_intl.nls"
+"0403"="l_intl.nls"
+"0404"="l_intl.nls"
+"0405"="l_intl.nls"
+"0406"="l_intl.nls"
+"0407"="l_intl.nls"
+"0408"="l_intl.nls"
+"0409"="l_intl.nls"
+"040a"="l_intl.nls"
+"040b"="l_intl.nls"
+"040c"="l_intl.nls"
+"040d"="l_intl.nls"
+"040e"="l_intl.nls"
+"040f"="l_intl.nls"
+"0410"="l_intl.nls"
+"0411"="l_intl.nls"
+"0412"="l_intl.nls"
+"0413"="l_intl.nls"
+"0414"="l_intl.nls"
+"0415"="l_intl.nls"
+"0416"="l_intl.nls"
+"0418"="l_intl.nls"
+"0419"="l_intl.nls"
+"041a"="l_intl.nls"
+"041b"="l_intl.nls"
+"041c"="l_intl.nls"
+"041d"="l_intl.nls"
+"041e"="l_intl.nls"
+"041f"="l_intl.nls"
+"0420"="l_intl.nls"
+"0421"="l_intl.nls"
+"0422"="l_intl.nls"
+"0423"="l_intl.nls"
+"0424"="l_intl.nls"
+"0425"="l_intl.nls"
+"0426"="l_intl.nls"
+"0427"="l_intl.nls"
+"0429"="l_intl.nls"
+"042a"="l_intl.nls"
+"042b"="l_intl.nls"
+"042c"="l_intl.nls"
+"042d"="l_intl.nls"
+"042f"="l_intl.nls"
+"0436"="l_intl.nls"
+"0437"="l_intl.nls"
+"0438"="l_intl.nls"
+"0439"="l_intl.nls"
+"043e"="l_intl.nls"
+"043f"="l_intl.nls"
+"0440"="l_intl.nls"
+"0441"="l_intl.nls"
+"0443"="l_intl.nls"
+"0444"="l_intl.nls"
+"0446"="l_intl.nls"
+"0447"="l_intl.nls"
+"0449"="l_intl.nls"
+"044a"="l_intl.nls"
+"044b"="l_intl.nls"
+"044e"="l_intl.nls"
+"044f"="l_intl.nls"
+"0450"="l_intl.nls"
+"0452"="l_intl.nls"
+"0456"="l_intl.nls"
+"0457"="l_intl.nls"
+"045a"="l_intl.nls"
+"0465"="l_intl.nls"
+"047e"="l_intl.nls"
+"048f"="l_intl.nls"
+"0490"="l_intl.nls"
+"0491"="l_intl.nls"
+"0494"="l_intl.nls"
+"0801"="l_intl.nls"
+"0804"="l_intl.nls"
+"0807"="l_intl.nls"
+"0809"="l_intl.nls"
+"080a"="l_intl.nls"
+"080c"="l_intl.nls"
+"0810"="l_intl.nls"
+"0813"="l_intl.nls"
+"0814"="l_intl.nls"
+"0816"="l_intl.nls"
+"081a"="l_intl.nls"
+"081d"="l_intl.nls"
+"082c"="l_intl.nls"
+"083e"="l_intl.nls"
+"0843"="l_intl.nls"
+"0894"="l_intl.nls"
+"0c01"="l_intl.nls"
+"0c04"="l_intl.nls"
+"0c07"="l_intl.nls"
+"0c09"="l_intl.nls"
+"0c0a"="l_intl.nls"
+"0c0c"="l_intl.nls"
+"0c1a"="l_intl.nls"
+"0c94"="l_intl.nls"
+"1001"="l_intl.nls"
+"1004"="l_intl.nls"
+"1007"="l_intl.nls"
+"1009"="l_intl.nls"
+"100a"="l_intl.nls"
+"100c"="l_intl.nls"
+"1401"="l_intl.nls"
+"1404"="l_intl.nls"
+"1407"="l_intl.nls"
+"1409"="l_intl.nls"
+"140a"="l_intl.nls"
+"140c"="l_intl.nls"
+"1801"="l_intl.nls"
+"1809"="l_intl.nls"
+"180a"="l_intl.nls"
+"180c"="l_intl.nls"
+"1c01"="l_intl.nls"
+"1c09"="l_intl.nls"
+"1c0a"="l_intl.nls"
+"2001"="l_intl.nls"
+"2009"="l_intl.nls"
+"200a"="l_intl.nls"
+"2401"="l_intl.nls"
+"2409"="l_intl.nls"
+"240a"="l_intl.nls"
+"2801"="l_intl.nls"
+"2809"="l_intl.nls"
+"280a"="l_intl.nls"
+"2c01"="l_intl.nls"
+"2c09"="l_intl.nls"
+"2c0a"="l_intl.nls"
+"3001"="l_intl.nls"
+"3009"="l_intl.nls"
+"300a"="l_intl.nls"
+"3401"="l_intl.nls"
+"3409"="l_intl.nls"
+"340a"="l_intl.nls"
+"3801"="l_intl.nls"
+"380a"="l_intl.nls"
+"3c01"="l_intl.nls"
+"3c0a"="l_intl.nls"
+"4001"="l_intl.nls"
+"400a"="l_intl.nls"
+"440a"="l_intl.nls"
+"480a"="l_intl.nls"
+"4c0a"="l_intl.nls"
+"500a"="l_intl.nls"
+"Default"="0409"
+"InstallLanguage"="0409"
+
+[System\\CurrentControlSet\\Control\\Nls\\Language Groups] 1660099897
+#time=1d8ac641c4ff716
+"1"="1"
+"10"="1"
+"11"="1"
+"2"="1"
+"3"="1"
+"4"="1"
+"5"="1"
+"6"="1"
+"7"="1"
+"8"="1"
+"9"="1"
+"a"="1"
+"b"="1"
+"c"="1"
+"d"="1"
+"e"="1"
+"f"="1"
+
+[System\\CurrentControlSet\\Control\\Nls\\Locale] 1660099897
+#time=1d8ac641c50b0fc
+@="00000409"
+"00000401"="d"
+"00000402"="5"
+"00000403"="1"
+"00000404"="9"
+"00000405"="2"
+"00000406"="1"
+"00000407"="1"
+"00000408"="4"
+"00000409"="1"
+"0000040a"="1"
+"0000040b"="1"
+"0000040c"="1"
+"0000040d"="c"
+"0000040e"="2"
+"0000040f"="1"
+"00000410"="1"
+"00000411"="7"
+"00000412"="8"
+"00000413"="1"
+"00000414"="1"
+"00000415"="2"
+"00000416"="1"
+"00000417"="1"
+"00000418"="2"
+"00000419"="5"
+"0000041a"="2"
+"0000041b"="2"
+"0000041c"="2"
+"0000041d"="1"
+"0000041e"="b"
+"0000041f"="6"
+"00000420"="d"
+"00000421"="1"
+"00000422"="5"
+"00000423"="5"
+"00000424"="2"
+"00000425"="3"
+"00000426"="3"
+"00000427"="3"
+"00000429"="d"
+"0000042a"="e"
+"0000042b"="11"
+"0000042c"="6"
+"0000042d"="1"
+"0000042f"="5"
+"00000436"="1"
+"00000437"="10"
+"00000438"="1"
+"00000439"="f"
+"0000043e"="1"
+"0000043f"="5"
+"00000440"="5"
+"00000441"="1"
+"00000443"="6"
+"00000444"="5"
+"00000445"="f"
+"00000446"="f"
+"00000447"="f"
+"00000449"="f"
+"0000044a"="f"
+"0000044b"="f"
+"0000044e"="f"
+"0000044f"="f"
+"00000450"="5"
+"00000452"="1"
+"00000456"="1"
+"00000457"="f"
+"0000045a"="d"
+"0000045b"="f"
+"00000461"="f"
+"00000465"="d"
+"0000047e"="1"
+"0000048f"="1"
+"00000490"="1"
+"00000491"="1"
+"00000492"="1"
+"00000494"="1"
+"000004a5"="1"
+"00000801"="d"
+"00000804"="a"
+"00000807"="1"
+"00000809"="1"
+"0000080a"="1"
+"0000080c"="1"
+"00000810"="1"
+"00000813"="1"
+"00000814"="1"
+"00000816"="1"
+"0000081a"="2"
+"0000081d"="1"
+"0000082c"="5"
+"0000083c"="1"
+"0000083e"="1"
+"00000843"="5"
+"00000c01"="d"
+"00000c04"="9"
+"00000c07"="1"
+"00000c09"="1"
+"00000c0a"="1"
+"00000c0c"="1"
+"00000c13"="1"
+"00000c1a"="5"
+"00001001"="d"
+"00001004"="a"
+"00001007"="1"
+"00001009"="1"
+"0000100a"="1"
+"0000100c"="1"
+"00001401"="d"
+"00001404"="9"
+"00001407"="1"
+"00001409"="1"
+"0000140a"="1"
+"0000140c"="1"
+"00001801"="d"
+"00001809"="1"
+"0000180a"="1"
+"0000180c"="1"
+"00001c01"="d"
+"00001c09"="1"
+"00001c0a"="1"
+"00002001"="d"
+"00002009"="1"
+"0000200a"="1"
+"00002401"="d"
+"00002409"="1"
+"0000240a"="1"
+"00002801"="d"
+"00002809"="1"
+"0000280a"="1"
+"00002c01"="d"
+"00002c09"="1"
+"00002c0a"="1"
+"00003001"="d"
+"00003009"="1"
+"0000300a"="1"
+"00003401"="d"
+"00003409"="1"
+"0000340a"="1"
+"00003801"="d"
+"0000380a"="1"
+"00003c01"="d"
+"00003c0a"="1"
+"00004001"="d"
+"0000400a"="1"
+"0000440a"="1"
+"0000480a"="1"
+"00004c0a"="1"
+"0000500a"="1"
+
+[System\\CurrentControlSet\\Control\\Nls\\Locale\\Alternate Sorts] 1660099897
+#time=1d8ac641c50c5ba
+"00010407"="1"
+"0001040e"="2"
+"00010437"="10"
+"00020804"="a"
+"00021004"="a"
+"00021404"="9"
+"00030404"="9"
+
+[System\\CurrentControlSet\\Control\\Nls\\Normalization] 1660099896
+#time=1d8ac641b7e87c6
+"1"="normnfc.nls"
+"2"="normnfd.nls"
+"5"="normnfkc.nls"
+"6"="normnfkd.nls"
+"d"="normidna.nls"
+
+[System\\CurrentControlSet\\Control\\Nls\\Sorting\\Ids] 1660099896
+#time=1d8ac641b7ebdea
+@="{00000001-57ee-1e5c-00b4-d0000bb1e11e}"
+"arn"="{00000012-57ee-1e5c-00b4-d0000bb1e11e}"
+"as"="{00000031-57ee-1e5c-00b4-d0000bb1e11e}"
+"az"="{00000023-57ee-1e5c-00b4-d0000bb1e11e}"
+"ba"="{0000003d-57ee-1e5c-00b4-d0000bb1e11e}"
+"bg"="{0000004a-57ee-1e5c-00b4-d0000bb1e11e}"
+"bn"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"bo"="{00000034-57ee-1e5c-00b4-d0000bb1e11e}"
+"br"="{0000000f-57ee-1e5c-00b4-d0000bb1e11e}"
+"bs"="{00000019-57ee-1e5c-00b4-d0000bb1e11e}"
+"co"="{0000000e-57ee-1e5c-00b4-d0000bb1e11e}"
+"cs"="{0000001c-57ee-1e5c-00b4-d0000bb1e11e}"
+"cy"="{0000002c-57ee-1e5c-00b4-d0000bb1e11e}"
+"da"="{0000001f-57ee-1e5c-00b4-d0000bb1e11e}"
+"de-DE_phoneb"="{0000003f-57ee-1e5c-00b4-d0000bb1e11e}"
+"dv"="{00000045-57ee-1e5c-00b4-d0000bb1e11e}"
+"es"="{0000002b-57ee-1e5c-00b4-d0000bb1e11e}"
+"es-ES_tradnl"="{0000002a-57ee-1e5c-00b4-d0000bb1e11e}"
+"et"="{00000027-57ee-1e5c-00b4-d0000bb1e11e}"
+"fa"="{00000041-57ee-1e5c-00b4-d0000bb1e11e}"
+"fi"="{0000001a-57ee-1e5c-00b4-d0000bb1e11e}"
+"fr"="{00000003-57ee-1e5c-00b4-d0000bb1e11e}"
+"fy"="{0000003e-57ee-1e5c-00b4-d0000bb1e11e}"
+"gu"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"haw"="{00000002-57ee-1e5c-00b4-d0000bb1e11e}"
+"hi"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"hr"="{00000019-57ee-1e5c-00b4-d0000bb1e11e}"
+"hsb"="{00000013-57ee-1e5c-00b4-d0000bb1e11e}"
+"hu"="{00000004-57ee-1e5c-00b4-d0000bb1e11e}"
+"hu-HU_technl"="{00000026-57ee-1e5c-00b4-d0000bb1e11e}"
+"is"="{00000025-57ee-1e5c-00b4-d0000bb1e11e}"
+"ja"="{00000046-57ee-1e5c-00b4-d0000bb1e11e}"
+"ja-JP_radstr"="{00000036-57ee-1e5c-00b4-d0000bb1e11e}"
+"ka-GE_modern"="{00000048-57ee-1e5c-00b4-d0000bb1e11e}"
+"kk"="{0000000b-57ee-1e5c-00b4-d0000bb1e11e}"
+"kl"="{0000001f-57ee-1e5c-00b4-d0000bb1e11e}"
+"km"="{0000000c-57ee-1e5c-00b4-d0000bb1e11e}"
+"kn"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"ko"="{00000047-57ee-1e5c-00b4-d0000bb1e11e}"
+"kok"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"ky"="{0000004a-57ee-1e5c-00b4-d0000bb1e11e}"
+"lo"="{0000002e-57ee-1e5c-00b4-d0000bb1e11e}"
+"lt"="{00000028-57ee-1e5c-00b4-d0000bb1e11e}"
+"lv"="{00000005-57ee-1e5c-00b4-d0000bb1e11e}"
+"lv-LV_tradnl"="{00000006-57ee-1e5c-00b4-d0000bb1e11e}"
+"mi"="{00000014-57ee-1e5c-00b4-d0000bb1e11e}"
+"mk"="{0000000a-57ee-1e5c-00b4-d0000bb1e11e}"
+"ml"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"mn"="{0000004a-57ee-1e5c-00b4-d0000bb1e11e}"
+"moh"="{00000010-57ee-1e5c-00b4-d0000bb1e11e}"
+"mr"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"mt"="{0000002d-57ee-1e5c-00b4-d0000bb1e11e}"
+"nb"="{00000020-57ee-1e5c-00b4-d0000bb1e11e}"
+"ne"="{00000033-57ee-1e5c-00b4-d0000bb1e11e}"
+"nn"="{00000020-57ee-1e5c-00b4-d0000bb1e11e}"
+"no"="{00000020-57ee-1e5c-00b4-d0000bb1e11e}"
+"oc"="{00000003-57ee-1e5c-00b4-d0000bb1e11e}"
+"or"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"pa"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"pa-Arab"="{00000007-57ee-1e5c-00b4-d0000bb1e11e}"
+"pl"="{0000001d-57ee-1e5c-00b4-d0000bb1e11e}"
+"prs"="{00000016-57ee-1e5c-00b4-d0000bb1e11e}"
+"ps"="{00000016-57ee-1e5c-00b4-d0000bb1e11e}"
+"quc"="{0000002b-57ee-1e5c-00b4-d0000bb1e11e}"
+"qut"="{0000002b-57ee-1e5c-00b4-d0000bb1e11e}"
+"rm"="{00000011-57ee-1e5c-00b4-d0000bb1e11e}"
+"ro"="{00000024-57ee-1e5c-00b4-d0000bb1e11e}"
+"ru"="{0000004a-57ee-1e5c-00b4-d0000bb1e11e}"
+"sa"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"sah"="{00000009-57ee-1e5c-00b4-d0000bb1e11e}"
+"sd"="{00000007-57ee-1e5c-00b4-d0000bb1e11e}"
+"se"="{00000021-57ee-1e5c-00b4-d0000bb1e11e}"
+"se-FI"="{0000001b-57ee-1e5c-00b4-d0000bb1e11e}"
+"se-SE"="{0000001b-57ee-1e5c-00b4-d0000bb1e11e}"
+"si"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"sk"="{00000029-57ee-1e5c-00b4-d0000bb1e11e}"
+"sl"="{0000001e-57ee-1e5c-00b4-d0000bb1e11e}"
+"sma"="{0000001b-57ee-1e5c-00b4-d0000bb1e11e}"
+"sma-NO"="{00000021-57ee-1e5c-00b4-d0000bb1e11e}"
+"smj"="{0000001b-57ee-1e5c-00b4-d0000bb1e11e}"
+"smj-NO"="{00000021-57ee-1e5c-00b4-d0000bb1e11e}"
+"smn"="{0000001b-57ee-1e5c-00b4-d0000bb1e11e}"
+"sms"="{0000001b-57ee-1e5c-00b4-d0000bb1e11e}"
+"sq"="{00000018-57ee-1e5c-00b4-d0000bb1e11e}"
+"sr"="{00000019-57ee-1e5c-00b4-d0000bb1e11e}"
+"sv"="{0000001a-57ee-1e5c-00b4-d0000bb1e11e}"
+"syr"="{00000044-57ee-1e5c-00b4-d0000bb1e11e}"
+"ta"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"te"="{00000032-57ee-1e5c-00b4-d0000bb1e11e}"
+"tg"="{0000004a-57ee-1e5c-00b4-d0000bb1e11e}"
+"th"="{0000002f-57ee-1e5c-00b4-d0000bb1e11e}"
+"ti"="{0000003c-57ee-1e5c-00b4-d0000bb1e11e}"
+"tk"="{00000008-57ee-1e5c-00b4-d0000bb1e11e}"
+"tr"="{00000022-57ee-1e5c-00b4-d0000bb1e11e}"
+"tt"="{00000043-57ee-1e5c-00b4-d0000bb1e11e}"
+"tzm"="{0000000d-57ee-1e5c-00b4-d0000bb1e11e}"
+"ug"="{00000017-57ee-1e5c-00b4-d0000bb1e11e}"
+"uk"="{00000040-57ee-1e5c-00b4-d0000bb1e11e}"
+"ur"="{00000015-57ee-1e5c-00b4-d0000bb1e11e}"
+"uz-Cyrl"="{0000004a-57ee-1e5c-00b4-d0000bb1e11e}"
+"vi"="{00000030-57ee-1e5c-00b4-d0000bb1e11e}"
+"wo"="{00000003-57ee-1e5c-00b4-d0000bb1e11e}"
+"x-IV_mathan"="{00000035-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh"="{0000003a-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-CN_phoneb"="{0000004b-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-CN_stroke"="{00000039-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-Hant"="{00000037-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-HK"="{00000037-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-HK_radstr"="{0000003b-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-MO"="{00000037-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-MO_radstr"="{0000003b-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-SG_phoneb"="{0000004b-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-SG_stroke"="{00000039-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-TW"="{00000037-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-TW_pronun"="{00000038-57ee-1e5c-00b4-d0000bb1e11e}"
+"zh-TW_radstr"="{0000003b-57ee-1e5c-00b4-d0000bb1e11e}"
+
+[System\\CurrentControlSet\\Control\\Print\\Monitors\\Local Port] 1660099897
+#time=1d8ac641c50d9b0
+"Driver"="localspl.dll"
+
+[System\\CurrentControlSet\\Control\\Print\\Printers] 1660099897
+#time=1d8ac641c50dc08
+"DefaultSpoolDirectory"="C:\\windows\\system32\\spool\\printers"
+
+[System\\CurrentControlSet\\Control\\ProductOptions] 1660099898
+#time=1d8ac641c5e85e2
+"ProductType"="WinNT"
+
+[System\\CurrentControlSet\\Control\\SecurityProviders\\Schannel\\Protocols\\SSL 2.0\\Client] 1660099897
+#time=1d8ac641c4ee038
+"DisabledByDefault"=dword:00000001
+
+[System\\CurrentControlSet\\Control\\ServiceGroupOrder] 1660099897
+#time=1d8ac641c4ee164
+"List"=str(7):"TDI\0"
+
+[System\\CurrentControlSet\\Control\\Session Manager] 1660099897
+#time=1d8ac641c51250a
+"CriticalSectionTimeout"=dword:00278d00
+"GlobalFlag"=dword:00000000
+"HeapDeCommitFreeBlockThreshold"=dword:00000000
+"HeapDeCommitTotalFreeThreshold"=dword:00000000
+"HeapSegmentCommit"=dword:00000000
+"HeapSegmentReserve"=dword:00000000
+
+[System\\CurrentControlSet\\Control\\Session Manager\\Environment] 1660099898
+#time=1d8ac641c5e893e
+"ComSpec"=str(2):"C:\\windows\\system32\\cmd.exe"
+"NUMBER_OF_PROCESSORS"="4"
+"OS"="Windows_NT"
+"PATH"=str(2):"C:\\windows\\system32;C:\\windows;C:\\windows\\system32\\wbem;C:\\windows\\system32\\WindowsPowershell\\v1.0"
+"PATHEXT"=".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH"
+"PROCESSOR_ARCHITECTURE"="x86"
+"PROCESSOR_IDENTIFIER"="x86 Family 23 Model 17 Stepping 0, AuthenticAMD"
+"PROCESSOR_LEVEL"="23"
+"PROCESSOR_REVISION"="1100"
+"SystemDrive"="c:"
+"SYSTEMROOT"="C:\\windows"
+"TEMP"=str(2):"C:\\windows\\temp"
+"TMP"=str(2):"C:\\windows\\temp"
+"windir"=str(2):"C:\\windows"
+"winsysdir"="C:\\windows\\system32"
+
+[System\\CurrentControlSet\\Control\\Session Manager\\Memory Management] 1660099897
+#time=1d8ac641c512794
+"PagingFiles"="C:\\pagefile.sys 27 77"
+"WriteWatch"=dword:00000001
+
+[System\\CurrentControlSet\\Control\\TimeZoneInformation] 1660099898
+#time=1d8ac641c62f1f4
+"StandardName"="\x4e2d\x56fd\x6807\x51c6\x65f6\x95f4"
+"TimeZoneKeyName"="China Standard Time"
+
+[System\\CurrentControlSet\\Control\\VirtualDeviceDrivers] 1660099897
+#time=1d8ac641c4ee498
+
+[System\\CurrentControlSet\\Control\\VMM32Files] 1660099897
+#time=1d8ac641c4ee560
+
+[System\\CurrentControlSet\\Control\\Windows] 1660099898
+#time=1d8ac641c5e87a4
+"CSDVersion"=dword:00000100
+
+[System\\CurrentControlSet\\Enum\\DISPLAY\\DEFAULT_MONITOR\\0000&0000] 1660099898
+#time=1d8ac641c75d9fe
+"Class"="Monitor"
+"ClassGUID"="{4D36E96E-E325-11CE-BFC1-08002BE10318}"
+"DeviceDesc"="Generic Non-PnP Monitor"
+"Driver"="{4D36E96E-E325-11CE-BFC1-08002BE10318}\\0000"
+"HardwareID"=str(7):"MONITOR\\Default_Monitor\0"
+
+[System\\CurrentControlSet\\Enum\\DISPLAY\\DEFAULT_MONITOR\\0000&0000\\Properties\\{233A9EF3-AFC4-4ABD-B564-C32F21F1535B}\\0002] 1660099895
+#time=1d8ac641add1bd4
+@=hex(ffff0007):03,00,00,00
+
+[System\\CurrentControlSet\\Enum\\DISPLAY\\DEFAULT_MONITOR\\0000&0000\\Properties\\{233A9EF3-AFC4-4ABD-B564-C32F21F1535B}\\0003] 1660099895
+#time=1d8ac641add1d82
+@=hex(ffff1003):00,00,00,00,00,00,00,00,40,06,00,00,84,03,00,00
+
+[System\\CurrentControlSet\\Enum\\DISPLAY\\DEFAULT_MONITOR\\0000&0000\\Properties\\{233A9EF3-AFC4-4ABD-B564-C32F21F1535B}\\0004] 1660099895
+#time=1d8ac641add1f58
+@=hex(ffff1003):00,00,00,00,18,00,00,00,40,06,00,00,5c,03,00,00
+
+[System\\CurrentControlSet\\Enum\\DISPLAY\\DEFAULT_MONITOR\\0000&0000\\Properties\\{233A9EF3-AFC4-4ABD-B564-C32F21F1535B}\\0005] 1660099895
+#time=1d8ac641add2110
+@=hex(ffff0012):5c,00,5c,00,2e,00,5c,00,44,00,49,00,53,00,50,00,4c,00,41,00,59,\
+  00,31,00,00,00
+
+[System\\CurrentControlSet\\Enum\\DISPLAY\\DEFAULT_MONITOR\\0000&0000\\Properties\\{CA085853-16CE-48AA-B114-DE9C72334223}\\0001] 1660099895
+#time=1d8ac641add13f0
+@=hex(ffff0008):f0,03,00,00,00,00,00,00
+
+[System\\CurrentControlSet\\Enum\\DISPLAY\\DEFAULT_MONITOR\\0000&0000\\Properties\\{CA085853-16CE-48AA-B114-DE9C72334223}\\0002] 1660099895
+#time=1d8ac641add15a8
+@=hex(ffff0007):00,00,00,00
+
+[System\\CurrentControlSet\\Enum\\HID\\VID_0000&PID_0000\\0&WINEMOUSE&0&0] 1660099898
+#time=1d8ac641c8d837e
+"Class"="HIDClass"
+"ClassGUID"="{745A17A0-74D3-11D0-B6FE-00A0C90F57DA}"
+
+[System\\CurrentControlSet\\Enum\\PCI\\VEN_1002&DEV_15DD&SUBSYS_00000000&REV_00\\00000000] 1660099898
+#time=1d8ac641c75edb8
+"Class"="Display"
+"ClassGUID"="{4D36E968-E325-11CE-BFC1-08002BE10318}"
+"DeviceDesc"="AMD RADV RAVEN (LLVM 7.0.1)"
+"Driver"="{4D36E968-E325-11CE-BFC1-08002BE10318}\\0000"
+"HardwareID"=str(7):"PCI\\VEN_1002&DEV_15DD&SUBSYS_00000000&REV_00\0"
+
+[System\\CurrentControlSet\\Enum\\PCI\\VEN_1002&DEV_15DD&SUBSYS_00000000&REV_00\\00000000\\Device Parameters] 1660099895
+#time=1d8ac641adcee84
+"VideoID"="{26de5474-2741-4c1a-b34b-9ceb87d03392}"
+
+[System\\CurrentControlSet\\Enum\\PCI\\VEN_1002&DEV_15DD&SUBSYS_00000000&REV_00\\00000000\\Properties\\{233A9EF3-AFC4-4ABD-B564-C32F21F1535C}\\0002] 1660099895
+#time=1d8ac641adce704
+@=hex(ffff000d):00,00,00,00,2a,00,00,00,00,00,00,00,00,00,00,00
+
+[System\\CurrentControlSet\\Enum\\PCI\\VEN_1002&DEV_15DD&SUBSYS_00000000&REV_00\\00000000\\Properties\\{540B947E-8B40-45BC-A8A2-6A0B894CBDA2}\\0005] 1660099895
+#time=1d8ac641adce088
+@=hex(ffff0011):01,00,00,00
+
+[System\\CurrentControlSet\\Enum\\PCI\\VEN_1002&DEV_15DD&SUBSYS_00000000&REV_00\\00000000\\Properties\\{60B193CB-5276-4D0F-96FC-F173ABAD3EC6}\\0002] 1660099895
+#time=1d8ac641adce43e
+@=hex(ffff0009):f0,03,00,00,00,00,00,00
+
+[System\\CurrentControlSet\\Enum\\ROOT\\WINE\\WINEBUS] 1660099898
+#time=1d8ac641c78e7b6
+"Class"="System"
+"ClassGUID"="{4D36E97D-E325-11CE-BFC1-08002BE10318}"
+"DeviceDesc"="Wine HID bus driver"
+"Driver"="{4D36E97D-E325-11CE-BFC1-08002BE10318}\\0000"
+"HardwareId"=str(7):"root\\winebus\0\0root\\wineusb\0"
+"Service"="winebus"
+
+[System\\CurrentControlSet\\Enum\\ROOT\\WINE\\WINEBUS\\Device Parameters] 1660099898
+#time=1d8ac641c77a89c
+
+[System\\CurrentControlSet\\Enum\\ROOT\\WINE\\WINEUSB] 1660099898
+#time=1d8ac641c97dbbc
+"Class"="System"
+"ClassGUID"="{4D36E97D-E325-11CE-BFC1-08002BE10318}"
+"DeviceDesc"="Wine USB bus driver"
+"Driver"="{4D36E97D-E325-11CE-BFC1-08002BE10318}\\0001"
+"HardwareId"=hex(7):72,00,6f,00,6f,00,74,00,5c,00,77,00,69,00,6e,00,65,00,75,\
+  00,73,00,62,00,00,00,00,00,7b,00,90,5e,7e,00,f8,80,58,75,0f,6a,58,75,81,8d
+"Service"="wineusb"
+
+[System\\CurrentControlSet\\Enum\\ROOT\\WINE\\WINEUSB\\Device Parameters] 1660099898
+#time=1d8ac641c9741c0
+
+[System\\CurrentControlSet\\Enum\\WINEMOUSE\\VID_0000&PID_0000\\0&WINEMOUSE&0&0] 1660099898
+#time=1d8ac641c8ab702
+"Class"="HIDClass"
+"ClassGUID"="{745A17A0-74D3-11D0-B6FE-00A0C90F57DA}"
+"CompatibleIds"=str(7):"WINEMOUSE\0"
+"DeviceDesc"="Wine mouse device"
+"Driver"="{745A17A0-74D3-11D0-B6FE-00A0C90F57DA}\\0000"
+"HardwareID"=str(7):"WINEMOUSE\0"
+"Service"="winehid"
+
+[System\\CurrentControlSet\\Enum\\WINEMOUSE\\VID_0000&PID_0000\\0&WINEMOUSE&0&0\\Device Parameters] 1660099898
+#time=1d8ac641c88ac3c
+
+[System\\CurrentControlSet\\Hardware Profiles\\Current\\Software\\Fonts] 1660099897
+#time=1d8ac641c4e4c54
+"FIXEDFON.FON"="svgafix.fon"
+"FONTS.FON"="svgasys.fon"
+"LogPixels"=dword:00000060
+"OEMFONT.FON"="vga936.fon"
+
+[System\\CurrentControlSet\\Services\\BITS] 1660099898
+#time=1d8ac641c5ef6c6
+"Description"="BITS Service"
+"DisplayName"="BITS Service"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\svchost.exe -k netsvcs"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000010
+
+[System\\CurrentControlSet\\Services\\BITS\\Parameters] 1660099898
+#time=1d8ac641c5ef78e
+"ServiceDll"="C:\\windows\\system32\\qmgr.dll"
+
+[System\\CurrentControlSet\\Services\\Eventlog] 1660099898
+#time=1d8ac641c5f2420
+"Description"="Event Log"
+"DisplayName"="Event Log"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\svchost.exe -k LocalServiceNetworkRestricted"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000002
+"Type"=dword:00000020
+
+[System\\CurrentControlSet\\Services\\Eventlog\\Application] 1660099897
+#time=1d8ac641c50f06c
+
+[System\\CurrentControlSet\\Services\\Eventlog\\Parameters] 1660099898
+#time=1d8ac641c5f24ca
+"ServiceDll"="C:\\windows\\system32\\wevtsvc.dll"
+
+[System\\CurrentControlSet\\Services\\Eventlog\\System] 1660099897
+#time=1d8ac641c50f1d4
+"Sources"=str(7):""
+
+[System\\CurrentControlSet\\Services\\FontCache] 1660099898
+#time=1d8ac641c71fda2
+"Description"="Windows Font Cache Service"
+"DisplayName"="Windows Font Cache Service"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\svchost.exe -k netsvcs"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000020
+
+[System\\CurrentControlSet\\Services\\FontCache\\Parameters] 1660099898
+#time=1d8ac641c71fe42
+"ServiceDll"="C:\\windows\\system32\\fntcache.dll"
+
+[System\\CurrentControlSet\\Services\\FontCache3.0.0.0] 1660099898
+#time=1d8ac641c718070
+"Description"="Windows Presentation Foundation font cache service"
+"DisplayName"="Windows Presentation Foundation Font Cache 3.0.0.0"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\Microsoft.Net\\Framework\\v3.0\\wpf\\presentationfontcache.exe"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000010
+
+[System\\CurrentControlSet\\Services\\HTTP] 1660099898
+#time=1d8ac641c5f4644
+"Description"="HTTP server"
+"DisplayName"="HTTP"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\drivers\\http.sys"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000001
+
+[System\\CurrentControlSet\\Services\\LanmanServer] 1660099898
+#time=1d8ac641c71d11a
+"Description"="Lanman Server"
+"DisplayName"="Lanman Server"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\svchost.exe -k netsvcs"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000004
+"Type"=dword:00000020
+
+[System\\CurrentControlSet\\Services\\LanmanServer\\Parameters] 1660099898
+#time=1d8ac641c71d214
+"ServiceDll"="C:\\windows\\system32\\srvsvc.dll"
+
+[System\\CurrentControlSet\\Services\\MountMgr] 1660099898
+#time=1d8ac641c5fba7a
+"Description"="Device mounting service"
+"DisplayName"="Mount Manager"
+"ErrorControl"=dword:00000001
+"Group"="System Bus Extender"
+"ImagePath"="C:\\windows\\system32\\drivers\\mountmgr.sys"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000002
+"Type"=dword:00000001
+
+[System\\CurrentControlSet\\Services\\MSIServer] 1660099898
+#time=1d8ac641c5f936a
+"Description"="MSI Installer Server"
+"DisplayName"="MSIServer"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\msiexec.exe /V"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000020
+
+[System\\CurrentControlSet\\Services\\NDIS] 1660099898
+#time=1d8ac641c72a734
+"Description"="NDIS service"
+"DisplayName"="NDIS"
+"ErrorControl"=dword:00000001
+"Group"="System Bus Extender"
+"ImagePath"="C:\\windows\\system32\\drivers\\ndis.sys"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000002
+"Type"=dword:00000001
+
+[System\\CurrentControlSet\\Services\\PlugPlay] 1660099898
+#time=1d8ac641c71592e
+"Description"="Enables automatic configuration of devices"
+"DisplayName"="Plug and Play Service"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\plugplay.exe"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000002
+"Type"=dword:00000020
+
+[System\\CurrentControlSet\\Services\\RpcSs] 1660099898
+#time=1d8ac641c705524
+"Description"="RPC service"
+"DisplayName"="Remote Procedure Call (RPC)"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\rpcss.exe"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000020
+
+[System\\CurrentControlSet\\Services\\Schedule] 1660099898
+#time=1d8ac641c7237a4
+"Description"="Task Scheduler"
+"DisplayName"="Task Scheduler"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\svchost.exe -k netsvcs"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000020
+
+[System\\CurrentControlSet\\Services\\Schedule\\Parameters] 1660099898
+#time=1d8ac641c723844
+"ServiceDll"="C:\\windows\\system32\\schedsvc.dll"
+
+[System\\CurrentControlSet\\Services\\Spooler] 1660099898
+#time=1d8ac641c70d094
+"Description"="Loads files to memory for later printing"
+"DisplayName"="Print Spooler"
+"ErrorControl"=dword:00000001
+"Group"="SpoolerGroup"
+"ImagePath"="C:\\windows\\system32\\spoolsv.exe"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000110
+
+[System\\CurrentControlSet\\Services\\Spooler\\Performance] 1660099898
+#time=1d8ac641c70d5d0
+"Close"="PerfClose"
+"Collect"="PerfCollect"
+"Library"="winspool.drv"
+"Open"="PerfOpen"
+
+[System\\CurrentControlSet\\Services\\StiSvc] 1660099898
+#time=1d8ac641c710f00
+"Description"="WIA Service"
+"DisplayName"="WIA Service"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\svchost.exe -k imgsvc"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000010
+
+[System\\CurrentControlSet\\Services\\StiSvc\\Parameters] 1660099898
+#time=1d8ac641c710fa0
+"ServiceDll"="C:\\windows\\system32\\wiaservc.dll"
+
+[System\\CurrentControlSet\\Services\\Tcpip\\Parameters] 1660099897
+#time=1d8ac641c50f3c8
+"DataBasePath"="C:\\windows\\system32\\drivers"
+"Domain"=""
+"Hostname"="gfdgdxi-PC"
+
+[System\\CurrentControlSet\\Services\\TermService] 1660099898
+#time=1d8ac641c7130d4
+"Description"="Remote desktop access"
+"DisplayName"="Terminal Services"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\termsv.exe"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000020
+
+[System\\CurrentControlSet\\Services\\VxD\\MSTCP] 1660099897
+#time=1d8ac641c50f756
+
+[System\\CurrentControlSet\\Services\\winebus] 1660099898
+#time=1d8ac641c78c61e
+"Description"="Wine HID bus driver"
+"DisplayName"="Wine HID bus"
+"ErrorControl"=dword:00000001
+"Group"="WinePlugPlay"
+"ImagePath"="C:\\windows\\system32\\drivers\\winebus.sys"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000001
+
+[System\\CurrentControlSet\\Services\\winehid] 1660099898
+#time=1d8ac641c89e886
+"Description"="Wine HID Minidriver"
+"DisplayName"="Wine HID"
+"ErrorControl"=dword:00000001
+"Group"="WinePlugPlay"
+"ImagePath"="C:\\windows\\system32\\drivers\\winehid.sys"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000001
+
+[System\\CurrentControlSet\\Services\\wineusb] 1660099898
+#time=1d8ac641c97bfb0
+"Description"="Wine USB bus driver"
+"DisplayName"="Wine USB bus"
+"ErrorControl"=dword:00000001
+"Group"="WinePlugPlay"
+"ImagePath"="C:\\windows\\system32\\drivers\\wineusb.sys"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000001
+
+[System\\CurrentControlSet\\Services\\Winmgmt] 1660099898
+#time=1d8ac641c7259fa
+"Description"="Provides access to Windows Management Instrumentation"
+"DisplayName"="Windows Management Instrumentation Service"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\winmgmt.exe"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000020
+
+[System\\CurrentControlSet\\Services\\Winsock\\Parameters] 1660099897
+#time=1d8ac641c50fad0
+
+[System\\CurrentControlSet\\Services\\Winsock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries] 1660099897
+#time=1d8ac641c50ff9e
+
+[System\\CurrentControlSet\\Services\\wuauserv] 1660099898
+#time=1d8ac641c7281aa
+"Description"="wuauserv"
+"DisplayName"="Automatic Updates"
+"ErrorControl"=dword:00000001
+"ImagePath"="C:\\windows\\system32\\wuauserv.exe"
+"ObjectName"="LocalSystem"
+"PreshutdownTimeout"=dword:0002bf20
+"Start"=dword:00000003
+"Type"=dword:00000020
+
+[System\\Select] 1660099897
+#time=1d8ac641c4ee6e6
+"Current"=dword:00000001
diff --git a/user.reg b/user.reg
new file mode 100644
index 0000000..c0b8c26
--- /dev/null
+++ b/user.reg
@@ -0,0 +1,871 @@
+WINE REGISTRY Version 2
+;; All keys relative to \\User\\S-1-5-21-0-0-0-1000
+
+#arch=win32
+
+[AppEvents\\Schemes\\Apps\\Explorer\\Navigating\\.Current] 1660099897
+#time=1d8ac641c4eebbe
+@=""
+
+[Control Panel\\Accessibility\\AudioDescription] 1660099895
+#time=1d8ac641ace0644
+"Locale"=dword:00000000
+"On"="0"
+
+[Control Panel\\Accessibility\\Blind Access] 1660099895
+#time=1d8ac641acdfe9c
+"On"="0"
+
+[Control Panel\\Accessibility\\Keyboard Preference] 1660099895
+#time=1d8ac641acdf398
+"On"="1"
+
+[Control Panel\\Accessibility\\ShowSounds] 1660099895
+#time=1d8ac641ace00a4
+"On"="0"
+
+[Control Panel\\Colors] 1660099895
+#time=1d8ac641adf6196
+
+[Control Panel\\Desktop] 1660099895
+#time=1d8ac641ace0428
+"ActiveWndTrackTimeout"=dword:00000000
+"BlockSendInputResets"="0"
+"CaretWidth"=dword:00000001
+"ClickLockTime"=dword:000004b0
+"DoubleClickHeight"="4"
+"DoubleClickWidth"="4"
+"DragFullWindows"="0"
+"DragHeight"="4"
+"DragWidth"="4"
+"FocusBorderHeight"=dword:00000001
+"FocusBorderWidth"=dword:00000001
+"FontSmoothing"="2"
+"FontSmoothingGamma"=dword:00000000
+"FontSmoothingOrientation"=dword:00000001
+"FontSmoothingType"=dword:00000001
+"ForegroundFlashCount"=dword:00000003
+"ForegroundLockTimeout"=dword:00000000
+"IconTitleWrap"="1"
+"LowPowerActive"="0"
+"MenuShowDelay"="400"
+"UserPreferencesMask"=hex:30,00,00,80,12,00,00,00
+"Wallpaper"=""
+"WheelScrollChars"="3"
+"WheelScrollLines"="3"
+
+[Control Panel\\Desktop\\WindowMetrics] 1660099895
+#time=1d8ac641ace01c6
+"BorderWidth"="-15"
+"CaptionHeight"="-270"
+"CaptionWidth"="-270"
+"IconSpacing"="-1125"
+"IconTitleWrap"="1"
+"IconVerticalSpacing"="-1125"
+"MenuHeight"="-270"
+"MenuWidth"="-270"
+"PaddedBorderWidth"="0"
+"ScrollHeight"="-240"
+"ScrollWidth"="-240"
+"SmCaptionHeight"="-225"
+"SmCaptionWidth"="-225"
+
+[Control Panel\\International] 1660099895
+#time=1d8ac641ab76f7e
+"iCalendarType"="1"
+"iCountry"="86"
+"iCurrDigits"="2"
+"iCurrency"="0"
+"iDate"="2"
+"iDigits"="2"
+"iFirstDayOfWeek"="6"
+"iFirstWeekOfYear"="0"
+"iLDate"="2"
+"iLZero"="0"
+"iMeasure"="0"
+"iNegCurr"="2"
+"iNegNumber"="1"
+"iPaperSize"="9"
+"iTime"="1"
+"iTimePrefix"="1"
+"iTLZero"="0"
+"Locale"="00000804"
+"LocaleName"="zh-CN"
+"Numshape"="1"
+"s1159"="\x4e0a\x5348"
+"s2359"="\x4e0b\x5348"
+"sCountry"="People's Republic of China"
+"sCurrency"="\xffe5"
+"sDate"="-"
+"sDecimal"="."
+"sGrouping"="3;0"
+"sLanguage"="CHS"
+"sList"=","
+"sLongDate"="yyyy'\x5e74'M'\x6708'd'\x65e5'"
+"sMonDecimalSep"="."
+"sMonGrouping"="3;0"
+"sMonThousandSep"=","
+"sNativeDigits"="0123456789"
+"sNegativeSign"="-"
+"sPositiveSign"=""
+"sShortDate"="yyyy-M-d"
+"sThousand"=","
+"sTime"=":"
+"sTimeFormat"="H:mm:ss"
+"sYearMonth"="yyyy'\x5e74'M'\x6708'"
+
+[Control Panel\\International\\Geo] 1660099895
+#time=1d8ac641ab75f5c
+"Nation"="45"
+
+[Control Panel\\Keyboard] 1660099895
+#time=1d8ac641acdf44c
+"KeyboardDelay"="1"
+"KeyboardSpeed"="31"
+
+[Control Panel\\Mouse] 1660099895
+#time=1d8ac641ace0252
+"ActiveWindowTracking"=dword:00000000
+"DoubleClickHeight"="4"
+"DoubleClickSpeed"="500"
+"DoubleClickWidth"="4"
+"MouseHoverHeight"="4"
+"MouseHoverTime"="400"
+"MouseHoverWidth"="4"
+"MouseSensitivity"="10"
+"MouseSpeed"="1"
+"MouseThreshold1"="6"
+"MouseThreshold2"="10"
+"SnapToDefaultButton"="0"
+"SwapMouseButtons"="0"
+
+[Control Panel\\Sound] 1660099895
+#time=1d8ac641acdd89a
+"Beep"="Yes"
+
+[Environment] 1660099897
+#time=1d8ac641bf2343c
+"TEMP"="C:\\users\\@current_user@\\Temp"
+"TMP"="C:\\users\\@current_user@\\Temp"
+
+[Keyboard Layout\\Preload] 1660099895
+#time=1d8ac641ad8980c
+"1"="e0010804"
+
+[Software\\Microsoft\\Internet Explorer\\Main] 1660099897
+#time=1d8ac641c4a3ec0
+"Search Page"="https://www.google.com"
+"Start Page"="https://www.winehq.org"
+
+[Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl] 1660099897
+#time=1d8ac641bcbc69e
+
+[Software\\Microsoft\\Internet Explorer\\Settings] 1660099897
+#time=1d8ac641c4a4078
+"Text Color"="0,0,0"
+
+[Software\\Microsoft\\Protected Storage System Provider] 1660099897
+#time=1d8ac641c4eec7c
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders] 1660099897
+#time=1d8ac641bf1734e
+"Administrative Tools"="C:\\users\\@current_user@\\Start Menu\\Programs\\Administrative Tools"
+"AppData"="C:\\users\\@current_user@\\Application Data"
+"Cache"="C:\\users\\@current_user@\\Local Settings\\Temporary Internet Files"
+"Cookies"="C:\\users\\@current_user@\\Cookies"
+"Desktop"="C:\\users\\@current_user@\\Desktop"
+"Favorites"="C:\\users\\@current_user@\\Favorites"
+"Fonts"="C:\\windows\\Fonts"
+"History"="C:\\users\\@current_user@\\Local Settings\\History"
+"Local AppData"="C:\\users\\@current_user@\\Local Settings\\Application Data"
+"My Music"="C:\\users\\@current_user@\\My Music"
+"My Pictures"="C:\\users\\@current_user@\\\x6211\x7684\x56fe\x7247"
+"My Videos"="C:\\users\\@current_user@\\My Videos"
+"NetHood"="C:\\users\\@current_user@\\NetHood"
+"Personal"="C:\\users\\@current_user@\\My Documents"
+"PrintHood"="C:\\users\\@current_user@\\PrintHood"
+"Programs"="C:\\users\\@current_user@\\Start Menu\\Programs"
+"Recent"="C:\\users\\@current_user@\\Recent"
+"SendTo"="C:\\users\\@current_user@\\SendTo"
+"Start Menu"="C:\\users\\@current_user@\\Start Menu"
+"StartUp"="C:\\users\\@current_user@\\Start Menu\\Programs\\StartUp"
+"Templates"="C:\\users\\@current_user@\\Templates"
+"{374DE290-123F-4565-9164-39C4925E467B}"="C:\\users\\@current_user@\\Downloads"
+"{4C5C32FF-BB9D-43B0-B5B4-2D72E54EAAA4}"="C:\\users\\@current_user@\\Saved Games"
+"{56784854-C6CB-462B-8169-88E350ACB882}"="C:\\users\\@current_user@\\Contacts"
+"{7D1D3A04-DEBB-4115-95CF-2F29DA2920DA}"="C:\\users\\@current_user@\\Searches"
+"{A520A1A4-1780-4FF6-BD18-167343C5AF16}"="C:\\users\\@current_user@\\AppData\\LocalLow"
+"{BFB9D5E0-C6A9-404C-B2B2-AE6DB6AF4968}"="C:\\users\\@current_user@\\Links"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders] 1660099897
+#time=1d8ac641bf1701a
+"Administrative Tools"=str(2):"%USERPROFILE%\\Start Menu\\Programs\\Administrative Tools"
+"AppData"=str(2):"%USERPROFILE%\\Application Data"
+"Cache"=str(2):"%USERPROFILE%\\Local Settings\\Temporary Internet Files"
+"Cookies"=str(2):"%USERPROFILE%\\Cookies"
+"Desktop"=str(2):"%USERPROFILE%\\Desktop"
+"Favorites"=str(2):"%USERPROFILE%\\Favorites"
+"Fonts"=str(2):"C:\\windows\\Fonts"
+"History"=str(2):"%USERPROFILE%\\Local Settings\\History"
+"Local AppData"=str(2):"%USERPROFILE%\\Local Settings\\Application Data"
+"My Music"=str(2):"%USERPROFILE%\\My Music"
+"My Pictures"=str(2):"%USERPROFILE%\\\x6211\x7684\x56fe\x7247"
+"My Videos"=str(2):"%USERPROFILE%\\My Videos"
+"NetHood"=str(2):"%USERPROFILE%\\NetHood"
+"Personal"=str(2):"%USERPROFILE%\\My Documents"
+"PrintHood"=str(2):"%USERPROFILE%\\PrintHood"
+"Programs"=str(2):"%USERPROFILE%\\Start Menu\\Programs"
+"Recent"=str(2):"%USERPROFILE%\\Recent"
+"SendTo"=str(2):"%USERPROFILE%\\SendTo"
+"Start Menu"=str(2):"%USERPROFILE%\\Start Menu"
+"StartUp"=str(2):"%USERPROFILE%\\Start Menu\\Programs\\StartUp"
+"Templates"=str(2):"%USERPROFILE%\\Templates"
+"{374DE290-123F-4565-9164-39C4925E467B}"=str(2):"%USERPROFILE%\\Downloads"
+"{4C5C32FF-BB9D-43B0-B5B4-2D72E54EAAA4}"=str(2):"%USERPROFILE%\\Saved Games"
+"{56784854-C6CB-462B-8169-88E350ACB882}"=str(2):"%USERPROFILE%\\Contacts"
+"{7D1D3A04-DEBB-4115-95CF-2F29DA2920DA}"=str(2):"%USERPROFILE%\\Searches"
+"{A520A1A4-1780-4FF6-BD18-167343C5AF16}"=str(2):"%USERPROFILE%\\AppData\\LocalLow"
+"{BFB9D5E0-C6A9-404C-B2B2-AE6DB6AF4968}"=str(2):"%USERPROFILE%\\Links"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings] 1660099897
+#time=1d8ac641c2cc93a
+"User Agent"="Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap] 1660099897
+#time=1d8ac641c2cc5f2
+@=""
+"IntranetName"=dword:00000001
+"ProxyByPass"=dword:00000001
+"UNCAsIntranet"=dword:00000001
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains] 1660099897
+#time=1d8ac641c2cc35e
+@=""
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\ProtocolDefaults] 1660099897
+#time=1d8ac641c2cc098
+@=""
+"@ivt"=dword:00000001
+"file"=dword:00000003
+"ftp"=dword:00000003
+"http"=dword:00000003
+"https"=dword:00000003
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Ranges] 1660099897
+#time=1d8ac641c2cc660
+@=""
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones] 1660099897
+#time=1d8ac641c2f5790
+@=""
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\0] 1660099897
+#time=1d8ac641c2d8596
+@=""
+"1001"=dword:00000000
+"1004"=dword:00000000
+"1200"=dword:00000000
+"1201"=dword:00000001
+"1400"=dword:00000000
+"1402"=dword:00000000
+"1405"=dword:00000000
+"1406"=dword:00000000
+"1407"=dword:00000000
+"1601"=dword:00000000
+"1604"=dword:00000000
+"1605"=dword:00000000
+"1606"=dword:00000000
+"1607"=dword:00000000
+"1608"=dword:00000000
+"1609"=dword:00000001
+"1800"=dword:00000000
+"1802"=dword:00000000
+"1803"=dword:00000000
+"1804"=dword:00000000
+"1805"=dword:00000000
+"1A00"=dword:00000000
+"1A02"=dword:00000000
+"1A03"=dword:00000000
+"1A04"=dword:00000000
+"1A05"=dword:00000000
+"1A06"=dword:00000000
+"1A10"=dword:00000000
+"1C00"=dword:00020000
+"1E05"=dword:00030000
+"CurrentLevel"=dword:00000000
+"Description"="Your computer"
+"DisplayName"="My Computer"
+"Flags"=dword:00000021
+"Icon"="explorer.exe#0100"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1] 1660099897
+#time=1d8ac641c2e0f20
+@=""
+"1001"=dword:00000001
+"1004"=dword:00000003
+"1200"=dword:00000000
+"1201"=dword:00000003
+"1400"=dword:00000000
+"1402"=dword:00000000
+"1405"=dword:00000000
+"1406"=dword:00000001
+"1407"=dword:00000000
+"1601"=dword:00000000
+"1604"=dword:00000000
+"1605"=dword:00000000
+"1606"=dword:00000000
+"1607"=dword:00000000
+"1608"=dword:00000000
+"1609"=dword:00000001
+"1800"=dword:00000001
+"1802"=dword:00000000
+"1803"=dword:00000000
+"1804"=dword:00000001
+"1805"=dword:00000000
+"1A00"=dword:00020000
+"1A02"=dword:00000000
+"1A03"=dword:00000000
+"1A04"=dword:00000000
+"1A05"=dword:00000000
+"1A06"=dword:00000000
+"1A10"=dword:00000000
+"1C00"=dword:00020000
+"1E05"=dword:00020000
+"CurrentLevel"=dword:00010500
+"Description"="This zone contains all Web sites that are on your organization's intranet."
+"DisplayName"="Local intranet"
+"Flags"=dword:000000db
+"Icon"="shell32.dll#0018"
+"MinLevel"=dword:00010000
+"RecommendedLevel"=dword:00010500
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2] 1660099897
+#time=1d8ac641c2eaebc
+@=""
+"1001"=dword:00000000
+"1004"=dword:00000001
+"1200"=dword:00000000
+"1201"=dword:00000001
+"1400"=dword:00000000
+"1402"=dword:00000000
+"1405"=dword:00000000
+"1406"=dword:00000000
+"1407"=dword:00000000
+"1601"=dword:00000000
+"1604"=dword:00000000
+"1605"=dword:00000000
+"1606"=dword:00000000
+"1607"=dword:00000000
+"1608"=dword:00000000
+"1609"=dword:00000001
+"1800"=dword:00000000
+"1802"=dword:00000000
+"1803"=dword:00000000
+"1804"=dword:00000000
+"1805"=dword:00000000
+"1A00"=dword:00000000
+"1A02"=dword:00000000
+"1A03"=dword:00000000
+"1A04"=dword:00000000
+"1A05"=dword:00000000
+"1A06"=dword:00000000
+"1A10"=dword:00000000
+"1C00"=dword:00030000
+"1E05"=dword:00030000
+"CurrentLevel"=dword:00010000
+"Description"="This zone contains Web sites that you trust not to damage your computer or data."
+"DisplayName"="Trusted sites"
+"Flags"=dword:00000047
+"Icon"="inetcpl.cpl#00004480"
+"MinLevel"=dword:00010000
+"RecommendedLevel"=dword:00010000
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3] 1660099897
+#time=1d8ac641c2f54ca
+@=""
+"1001"=dword:00000001
+"1004"=dword:00000003
+"1200"=dword:00000000
+"1201"=dword:00000003
+"1400"=dword:00000000
+"1402"=dword:00000000
+"1405"=dword:00000000
+"1406"=dword:00000003
+"1407"=dword:00000000
+"1601"=dword:00000001
+"1604"=dword:00000000
+"1605"=dword:00000000
+"1606"=dword:00000000
+"1607"=dword:00000000
+"1608"=dword:00000000
+"1609"=dword:00000001
+"1800"=dword:00000001
+"1802"=dword:00000000
+"1803"=dword:00000000
+"1804"=dword:00000001
+"1805"=dword:00000001
+"1A00"=dword:00020000
+"1A02"=dword:00000000
+"1A03"=dword:00000000
+"1A04"=dword:00000003
+"1A05"=dword:00000001
+"1A06"=dword:00000000
+"1A10"=dword:00000001
+"1C00"=dword:00010000
+"1E05"=dword:00020000
+"CurrentLevel"=dword:00011000
+"Description"="This zone contains all Web sites you haven't placed in other zones"
+"DisplayName"="Internet"
+"Flags"=dword:00000001
+"Icon"="inetcpl.cpl#001313"
+"MinLevel"=dword:00011000
+"RecommendedLevel"=dword:00011000
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\4] 1660099897
+#time=1d8ac641c2ff6e6
+@=""
+"1001"=dword:00000003
+"1004"=dword:00000003
+"1200"=dword:00000003
+"1201"=dword:00000003
+"1400"=dword:00000003
+"1402"=dword:00000003
+"1405"=dword:00000003
+"1406"=dword:00000003
+"1407"=dword:00000003
+"1601"=dword:00000001
+"1604"=dword:00000001
+"1605"=dword:00000000
+"1606"=dword:00000003
+"1607"=dword:00000003
+"1608"=dword:00000003
+"1609"=dword:00000001
+"1800"=dword:00000003
+"1802"=dword:00000001
+"1803"=dword:00000003
+"1804"=dword:00000003
+"1805"=dword:00000001
+"1A00"=dword:00010000
+"1A02"=dword:00000003
+"1A03"=dword:00000003
+"1A04"=dword:00000003
+"1A05"=dword:00000003
+"1A06"=dword:00000003
+"1A10"=dword:00000003
+"1C00"=dword:00000000
+"1E05"=dword:00010000
+"CurrentLevel"=dword:00012000
+"Description"="This zone contains Web sites that could potentially damage your computer or data."
+"DisplayName"="Restricted sites"
+"Flags"=dword:00000003
+"Icon"="inetcpl.cpl#00004481"
+"MinLevel"=dword:00012000
+"RecommendedLevel"=dword:00012000
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Run] 1660099897
+#time=1d8ac641c4d9a02
+
+[Software\\Microsoft\\Windows\\Shell\\Associations\\UrlAssociations\\ftp\\UserChoice] 1660099897
+#time=1d8ac641c4f0cb6
+"ProgId"="ftp"
+
+[Software\\Microsoft\\Windows\\Shell\\Associations\\UrlAssociations\\http\\UserChoice] 1660099897
+#time=1d8ac641c4f12d8
+"ProgId"="http"
+
+[Software\\Microsoft\\Windows\\Shell\\Associations\\UrlAssociations\\https\\UserChoice] 1660099897
+#time=1d8ac641c4f188c
+"ProgId"="https"
+
+[Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon] 1660099897
+#time=1d8ac641c4da8ee
+
+[Software\\Wine\\Debug] 1660099897
+#time=1d8ac641c4e0a0a
+"RelayExclude"="ntdll.RtlEnterCriticalSection;ntdll.RtlTryEnterCriticalSection;ntdll.RtlLeaveCriticalSection;kernel32.48;kernel32.49;kernel32.94;kernel32.95;kernel32.96;kernel32.97;kernel32.98;kernel32.TlsGetValue;kernel32.TlsSetValue;kernel32.FlsGetValue;kernel32.FlsSetValue;kernel32.SetLastError"
+"RelayFromExclude"="winex11.drv;winemac.drv;user32;gdi32;advapi32;kernel32"
+
+[Software\\Wine\\Fonts] 1660099895
+#time=1d8ac641acbeeae
+"Codepages"="936,936"
+"LogPixels"=dword:00000060
+
+[Software\\Wine\\Fonts\\External Fonts] 1660099895
+#time=1d8ac641acdbe32
+"@Droid Sans Fallback (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\droid\\DroidSansFallbackFull.ttf"
+"@Noto Sans CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Mono CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"@Noto Sans Mono CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"@Noto Sans Syriac Eastern (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEastern-Regular.ttf"
+"@Noto Sans Syriac Estrangela (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEstrangela-Regular.ttf"
+"@Noto Sans Syriac Western (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacWestern-Regular.ttf"
+"@Noto Serif CJK JP (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Noto Serif CJK KR (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Noto Serif CJK SC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Noto Serif CJK TC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"@Noto Serif CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"@Unifont (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont.ttf"
+"@\x5fae\x8f6f\x96c5\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyh.ttf"
+"@\x5fae\x8f6f\x96c5\x9ed1 Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyhbd.ttf"
+"@\x6587\x6cc9\x9a7f\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"@\x6587\x6cc9\x9a7f\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"@\x6587\x6cc9\x9a7f\x70b9\x9635\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"@\x6587\x6cc9\x9a7f\x7b49\x5bbd\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"@\x6587\x6cc9\x9a7f\x7b49\x5bbd\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"Andale Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\AndaleMo.TTF"
+"Arial (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Arial.TTF"
+"Arial Black (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\AriBlk.TTF"
+"Arial Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Arialbd.TTF"
+"Arial Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Arialbi.TTF"
+"Arial Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Ariali.TTF"
+"Bitstream Vera Sans (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\Vera.ttf"
+"Bitstream Vera Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraBd.ttf"
+"Bitstream Vera Sans Bold Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraBI.ttf"
+"Bitstream Vera Sans Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMono.ttf"
+"Bitstream Vera Sans Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMoBd.ttf"
+"Bitstream Vera Sans Mono Bold Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMoBI.ttf"
+"Bitstream Vera Sans Mono Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraMoIt.ttf"
+"Bitstream Vera Sans Oblique (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraIt.ttf"
+"Bitstream Vera Serif (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraSe.ttf"
+"Bitstream Vera Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ttf-bitstream-vera\\VeraSeBd.ttf"
+"cmex10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmex10.ttf"
+"cmmi10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmmi10.ttf"
+"cmr10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmr10.ttf"
+"cmsy10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\cmsy10.ttf"
+"Comic Sans MS (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Comic.TTF"
+"Comic Sans MS Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Comicbd.TTF"
+"Courier New (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\cour.ttf"
+"Courier New Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\courbd.ttf"
+"Courier New Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\courbi.ttf"
+"Courier New Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\couri.ttf"
+"Deepin OpenSymbol 2 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol2.ttf"
+"Deepin OpenSymbol 3 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol3.ttf"
+"Deepin OpenSymbol 4 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol4.ttf"
+"Deepin OpenSymbol 5 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol5.ttf"
+"Deepin OpenSymbol 6 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol6.ttf"
+"Deepin OpenSymbol Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\deepin\\DeepinOpenSymbol.ttf"
+"DejaVu Sans (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSans.ttf"
+"DejaVu Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSans-Bold.ttf"
+"DejaVu Sans Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSansMono.ttf"
+"DejaVu Sans Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSansMono-Bold.ttf"
+"DejaVu Serif (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSerif.ttf"
+"DejaVu Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\dejavu\\DejaVuSerif-Bold.ttf"
+"Droid Sans Fallback (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\droid\\DroidSansFallbackFull.ttf"
+"esint10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\esint10.ttf"
+"eufm10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\eufm10.ttf"
+"Georgia (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgia.TTF"
+"Georgia Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgiab.TTF"
+"Georgia Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgiaz.TTF"
+"Georgia Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Georgiai.TTF"
+"Impact (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Impact.TTF"
+"Liberation Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-Regular.ttf"
+"Liberation Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-Bold.ttf"
+"Liberation Mono Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-BoldItalic.ttf"
+"Liberation Mono Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationMono-Italic.ttf"
+"Liberation Sans (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-Regular.ttf"
+"Liberation Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-Bold.ttf"
+"Liberation Sans Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-BoldItalic.ttf"
+"Liberation Sans Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSans-Italic.ttf"
+"Liberation Sans Narrow (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-Regular.ttf"
+"Liberation Sans Narrow Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-Bold.ttf"
+"Liberation Sans Narrow Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-BoldItalic.ttf"
+"Liberation Sans Narrow Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSansNarrow-Italic.ttf"
+"Liberation Serif (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-Regular.ttf"
+"Liberation Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-Bold.ttf"
+"Liberation Serif Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-BoldItalic.ttf"
+"Liberation Serif Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\liberation\\LiberationSerif-Italic.ttf"
+"Lohit Devanagari (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lohit-devanagari\\Lohit-Devanagari.ttf"
+"Marlett (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\marlett.ttf"
+"msam10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\msam10.ttf"
+"msbm10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\msbm10.ttf"
+"Noto Kufi Arabic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoKufiArabic-Regular.ttf"
+"Noto Kufi Arabic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoKufiArabic-Bold.ttf"
+"Noto Mono (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoMono-Regular.ttf"
+"Noto Music Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoMusic-Regular.ttf"
+"Noto Naskh Arabic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNaskhArabic-Regular.ttf"
+"Noto Naskh Arabic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNaskhArabic-Bold.ttf"
+"Noto Nastaliq Urdu Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNastaliqUrdu-Bold.ttf"
+"Noto Nastaliq Urdu Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoNastaliqUrdu-Regular.ttf"
+"Noto Sans Adlam Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAdlam-Regular.ttf"
+"Noto Sans Adlam Unjoined Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAdlamUnjoined-Regular.ttf"
+"Noto Sans Anatolian Hieroglyphs Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAnatolianHieroglyphs-Regular.ttf"
+"Noto Sans Arabic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArabic-Bold.ttf"
+"Noto Sans Arabic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArabic-Regular.ttf"
+"Noto Sans Armenian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArmenian-Bold.ttf"
+"Noto Sans Armenian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansArmenian-Regular.ttf"
+"Noto Sans Avestan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansAvestan-Regular.ttf"
+"Noto Sans Bamum Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBamum-Regular.ttf"
+"Noto Sans Bassa Vah Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBassaVah-Regular.ttf"
+"Noto Sans Batak Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBatak-Regular.ttf"
+"Noto Sans Bengali Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBengali-Bold.ttf"
+"Noto Sans Bengali Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBengali-Regular.ttf"
+"Noto Sans Bhaiksuki Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBhaiksuki-Regular.ttf"
+"Noto Sans Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-Bold.ttf"
+"Noto Sans Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-BoldItalic.ttf"
+"Noto Sans Brahmi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBrahmi-Regular.ttf"
+"Noto Sans Buginese Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBuginese-Regular.ttf"
+"Noto Sans Buhid Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansBuhid-Regular.ttf"
+"Noto Sans Canadian Aboriginal Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCanadianAboriginal-Bold.ttf"
+"Noto Sans Canadian Aboriginal Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCanadianAboriginal-Regular.ttf"
+"Noto Sans Carian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCarian-Regular.ttf"
+"Noto Sans Caucasian Albanian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCaucasianAlbanian-Regular.ttf"
+"Noto Sans Chakma Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansChakma-Regular.ttf"
+"Noto Sans Cham Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCham-Bold.ttf"
+"Noto Sans Cham Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCham-Regular.ttf"
+"Noto Sans Cherokee Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCherokee-Bold.ttf"
+"Noto Sans Cherokee Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCherokee-Regular.ttf"
+"Noto Sans CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Coptic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCoptic-Regular.ttf"
+"Noto Sans Cuneiform Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCuneiform-Regular.ttf"
+"Noto Sans Cypriot Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansCypriot-Regular.ttf"
+"Noto Sans Deseret Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDeseret-Regular.ttf"
+"Noto Sans Devanagari Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDevanagari-Bold.ttf"
+"Noto Sans Devanagari Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDevanagari-Regular.ttf"
+"Noto Sans Display Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-Bold.ttf"
+"Noto Sans Display Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-BoldItalic.ttf"
+"Noto Sans Display Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-Italic.ttf"
+"Noto Sans Display Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDisplay-Regular.ttf"
+"Noto Sans Duployan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansDuployan-Regular.ttf"
+"Noto Sans Egyptian Hieroglyphs Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansEgyptianHieroglyphs-Regular.ttf"
+"Noto Sans Elbasan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansElbasan-Regular.ttf"
+"Noto Sans Ethiopic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansEthiopic-Bold.ttf"
+"Noto Sans Ethiopic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansEthiopic-Regular.ttf"
+"Noto Sans Georgian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGeorgian-Bold.ttf"
+"Noto Sans Georgian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGeorgian-Regular.ttf"
+"Noto Sans Glagolitic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGlagolitic-Regular.ttf"
+"Noto Sans Gothic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGothic-Regular.ttf"
+"Noto Sans Grantha Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGrantha-Regular.ttf"
+"Noto Sans Gujarati (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGujarati-Regular.ttf"
+"Noto Sans Gujarati Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGujarati-Bold.ttf"
+"Noto Sans Gurmukhi (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGurmukhi-Regular.ttf"
+"Noto Sans Gurmukhi Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansGurmukhi-Bold.ttf"
+"Noto Sans Hanunoo Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHanunoo-Regular.ttf"
+"Noto Sans Hatran Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHatran-Regular.ttf"
+"Noto Sans Hebrew Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHebrew-Bold.ttf"
+"Noto Sans Hebrew Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansHebrew-Regular.ttf"
+"Noto Sans Imperial Aramaic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansImperialAramaic-Regular.ttf"
+"Noto Sans Inscriptional Pahlavi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansInscriptionalPahlavi-Regular.ttf"
+"Noto Sans Inscriptional Parthian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansInscriptionalParthian-Regular.ttf"
+"Noto Sans Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-Italic.ttf"
+"Noto Sans Javanese (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansJavanese-Regular.ttf"
+"Noto Sans Javanese Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansJavanese-Bold.ttf"
+"Noto Sans Kaithi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKaithi-Regular.ttf"
+"Noto Sans Kannada Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKannada-Bold.ttf"
+"Noto Sans Kannada Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKannada-Regular.ttf"
+"Noto Sans Kayah Li Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKayahLi-Regular.ttf"
+"Noto Sans Kharoshthi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKharoshthi-Regular.ttf"
+"Noto Sans Khmer Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhmer-Bold.ttf"
+"Noto Sans Khmer Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhmer-Regular.ttf"
+"Noto Sans Khojki Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhojki-Regular.ttf"
+"Noto Sans Khudawadi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansKhudawadi-Regular.ttf"
+"Noto Sans Lao Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLao-Bold.ttf"
+"Noto Sans Lao Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLao-Regular.ttf"
+"Noto Sans Lepcha Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLepcha-Regular.ttf"
+"Noto Sans Limbu Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLimbu-Regular.ttf"
+"Noto Sans Linear A Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLinearA-Regular.ttf"
+"Noto Sans Linear B Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLinearB-Regular.ttf"
+"Noto Sans Lisu Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLisu-Regular.ttf"
+"Noto Sans Lycian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLycian-Regular.ttf"
+"Noto Sans Lydian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansLydian-Regular.ttf"
+"Noto Sans Mahajani Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMahajani-Regular.ttf"
+"Noto Sans Malayalam Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMalayalam-Bold.ttf"
+"Noto Sans Malayalam Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMalayalam-Regular.ttf"
+"Noto Sans Mandaic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMandaic-Regular.ttf"
+"Noto Sans Manichaean Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansManichaean-Regular.ttf"
+"Noto Sans Marchen Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMarchen-Regular.ttf"
+"Noto Sans Math Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMath-Regular.ttf"
+"Noto Sans Meetei Mayek Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMeeteiMayek-Regular.ttf"
+"Noto Sans Mende Kikakui Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMendeKikakui-Regular.ttf"
+"Noto Sans Meroitic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMeroitic-Regular.ttf"
+"Noto Sans Miao Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMiao-Regular.ttf"
+"Noto Sans Modi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansModi-Regular.ttf"
+"Noto Sans Mongolian (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMongolian-Regular.ttf"
+"Noto Sans Mono Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMono-Bold.ttf"
+"Noto Sans Mono CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK JP Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK KR Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK SC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Bold.ttc"
+"Noto Sans Mono CJK TC Regular (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSansCJK-Regular.ttc"
+"Noto Sans Mono Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMono-Regular.ttf"
+"Noto Sans Mro Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMro-Regular.ttf"
+"Noto Sans Multani Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMultani-Regular.ttf"
+"Noto Sans Myanmar Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMyanmar-Bold.ttf"
+"Noto Sans Myanmar Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansMyanmar-Regular.ttf"
+"Noto Sans Nabataean Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNabataean-Regular.ttf"
+"Noto Sans New Tai Lue Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNewTaiLue-Regular.ttf"
+"Noto Sans Newa Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNewa-Regular.ttf"
+"Noto Sans NKo Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansNKo-Regular.ttf"
+"Noto Sans Ogham Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOgham-Regular.ttf"
+"Noto Sans Ol Chiki Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOlChiki-Regular.ttf"
+"Noto Sans Old Hungarian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldHungarian-Regular.ttf"
+"Noto Sans Old Italic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldItalic-Regular.ttf"
+"Noto Sans Old North Arabian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldNorthArabian-Regular.ttf"
+"Noto Sans Old Permic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldPermic-Regular.ttf"
+"Noto Sans Old Persian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldPersian-Regular.ttf"
+"Noto Sans Old South Arabian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldSouthArabian-Regular.ttf"
+"Noto Sans Old Turkic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOldTurkic-Regular.ttf"
+"Noto Sans Oriya (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOriya-Regular.ttf"
+"Noto Sans Oriya Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOriya-Bold.ttf"
+"Noto Sans Osage Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOsage-Regular.ttf"
+"Noto Sans Osmanya Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansOsmanya-Regular.ttf"
+"Noto Sans Pahawh Hmong Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPahawhHmong-Regular.ttf"
+"Noto Sans Palmyrene Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPalmyrene-Regular.ttf"
+"Noto Sans Pau Cin Hau Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPauCinHau-Regular.ttf"
+"Noto Sans PhagsPa Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPhagsPa-Regular.ttf"
+"Noto Sans Phoenician Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPhoenician-Regular.ttf"
+"Noto Sans Psalter Pahlavi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansPsalterPahlavi-Regular.ttf"
+"Noto Sans Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSans-Regular.ttf"
+"Noto Sans Rejang Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansRejang-Regular.ttf"
+"Noto Sans Runic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansRunic-Regular.ttf"
+"Noto Sans Samaritan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSamaritan-Regular.ttf"
+"Noto Sans Saurashtra Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSaurashtra-Regular.ttf"
+"Noto Sans Sharada Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSharada-Regular.ttf"
+"Noto Sans Shavian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansShavian-Regular.ttf"
+"Noto Sans Sinhala Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSinhala-Bold.ttf"
+"Noto Sans Sinhala Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSinhala-Regular.ttf"
+"Noto Sans Sora Sompeng Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSoraSompeng-Regular.ttf"
+"Noto Sans Sundanese Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSundanese-Regular.ttf"
+"Noto Sans Syloti Nagri Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSylotiNagri-Regular.ttf"
+"Noto Sans Symbols Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSymbols-Bold.ttf"
+"Noto Sans Symbols Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSymbols-Regular.ttf"
+"Noto Sans Symbols2 Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSymbols2-Regular.ttf"
+"Noto Sans Syriac Eastern (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEastern-Regular.ttf"
+"Noto Sans Syriac Estrangela (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacEstrangela-Regular.ttf"
+"Noto Sans Syriac Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriac-Regular.ttf"
+"Noto Sans Syriac Western (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansSyriacWestern-Regular.ttf"
+"Noto Sans Tagalog Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTagalog-Regular.ttf"
+"Noto Sans Tagbanwa Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTagbanwa-Regular.ttf"
+"Noto Sans Tai Le Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTaiLe-Regular.ttf"
+"Noto Sans Tai Tham (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTaiTham-Regular.ttf"
+"Noto Sans Tai Viet Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTaiViet-Regular.ttf"
+"Noto Sans Takri Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTakri-Regular.ttf"
+"Noto Sans Tamil Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTamil-Bold.ttf"
+"Noto Sans Tamil Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTamil-Regular.ttf"
+"Noto Sans Telugu (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTelugu-Regular.ttf"
+"Noto Sans Telugu Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTelugu-Bold.ttf"
+"Noto Sans Thaana (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThaana-Regular.ttf"
+"Noto Sans Thaana Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThaana-Bold.ttf"
+"Noto Sans Thai Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThai-Bold.ttf"
+"Noto Sans Thai Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansThai-Regular.ttf"
+"Noto Sans Tibetan (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTibetan-Regular.ttf"
+"Noto Sans Tibetan Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTibetan-Bold.ttf"
+"Noto Sans Tifinagh Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTifinagh-Regular.ttf"
+"Noto Sans Tirhuta Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansTirhuta-Regular.ttf"
+"Noto Sans Ugaritic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansUgaritic-Regular.ttf"
+"Noto Sans Vai Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansVai-Regular.ttf"
+"Noto Sans Warang Citi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansWarangCiti-Regular.ttf"
+"Noto Sans Yi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSansYi-Regular.ttf"
+"Noto Serif Ahom Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifAhom-Regular.ttf"
+"Noto Serif Armenian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifArmenian-Bold.ttf"
+"Noto Serif Armenian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifArmenian-Regular.ttf"
+"Noto Serif Balinese Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifBalinese-Regular.ttf"
+"Noto Serif Bengali (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifBengali-Regular.ttf"
+"Noto Serif Bengali Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifBengali-Bold.ttf"
+"Noto Serif Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-Bold.ttf"
+"Noto Serif Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-BoldItalic.ttf"
+"Noto Serif CJK JP (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK JP Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif CJK KR (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK KR Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif CJK SC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK SC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif CJK TC (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Regular.ttc"
+"Noto Serif CJK TC Bold (TrueType)"="Z:\\usr\\share\\fonts\\opentype\\noto\\NotoSerifCJK-Bold.ttc"
+"Noto Serif Devanagari (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDevanagari-Regular.ttf"
+"Noto Serif Devanagari Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDevanagari-Bold.ttf"
+"Noto Serif Display Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-Bold.ttf"
+"Noto Serif Display Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-BoldItalic.ttf"
+"Noto Serif Display Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-Italic.ttf"
+"Noto Serif Display Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifDisplay-Regular.ttf"
+"Noto Serif Ethiopic Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifEthiopic-Bold.ttf"
+"Noto Serif Ethiopic Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifEthiopic-Regular.ttf"
+"Noto Serif Georgian Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGeorgian-Bold.ttf"
+"Noto Serif Georgian Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGeorgian-Regular.ttf"
+"Noto Serif Gujarati Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGujarati-Bold.ttf"
+"Noto Serif Gujarati Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGujarati-Regular.ttf"
+"Noto Serif Gurmukhi Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGurmukhi-Bold.ttf"
+"Noto Serif Gurmukhi Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifGurmukhi-Regular.ttf"
+"Noto Serif Hebrew Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifHebrew-Bold.ttf"
+"Noto Serif Hebrew Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifHebrew-Regular.ttf"
+"Noto Serif Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-Italic.ttf"
+"Noto Serif Kannada Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKannada-Bold.ttf"
+"Noto Serif Kannada Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKannada-Regular.ttf"
+"Noto Serif Khmer Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKhmer-Bold.ttf"
+"Noto Serif Khmer Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifKhmer-Regular.ttf"
+"Noto Serif Lao Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifLao-Bold.ttf"
+"Noto Serif Lao Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifLao-Regular.ttf"
+"Noto Serif Malayalam (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMalayalam-Regular.ttf"
+"Noto Serif Malayalam Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMalayalam-Bold.ttf"
+"Noto Serif Myanmar Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMyanmar-Bold.ttf"
+"Noto Serif Myanmar Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifMyanmar-Regular.ttf"
+"Noto Serif Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerif-Regular.ttf"
+"Noto Serif Sinhala Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifSinhala-Bold.ttf"
+"Noto Serif Sinhala Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifSinhala-Regular.ttf"
+"Noto Serif Tamil Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamil-Bold.ttf"
+"Noto Serif Tamil Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamil-Regular.ttf"
+"Noto Serif Tamil Slanted Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamilSlanted-Bold.ttf"
+"Noto Serif Tamil Slanted Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTamilSlanted-Regular.ttf"
+"Noto Serif Telugu (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTelugu-Regular.ttf"
+"Noto Serif Telugu Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTelugu-Bold.ttf"
+"Noto Serif Thai Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifThai-Bold.ttf"
+"Noto Serif Thai Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifThai-Regular.ttf"
+"Noto Serif Tibetan Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTibetan-Bold.ttf"
+"Noto Serif Tibetan Regular (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\noto\\NotoSerifTibetan-Regular.ttf"
+"OpenSymbol (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\libreoffice\\opens___.ttf"
+"rsfs10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\rsfs10.ttf"
+"stmary10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\stmary10.ttf"
+"Symbol (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\symbol.ttf"
+"Symbola (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ancient-scripts\\Symbola_hint.ttf"
+"Tahoma (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\tahoma.ttf"
+"Tahoma Bold (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\tahomabd.ttf"
+"Times New Roman (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Times.TTF"
+"Times New Roman Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Timesbd.TTF"
+"Times New Roman Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Timesbi.TTF"
+"Times New Roman Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Timesi.TTF"
+"Trebuchet MS (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\trebuc.ttf"
+"Trebuchet MS Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Trebucbd.ttf"
+"Trebuchet MS Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\trebucbi.ttf"
+"Trebuchet MS Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\trebucit.ttf"
+"Unifont (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont.ttf"
+"Unifont CSUR (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont_csur.ttf"
+"Unifont Upper (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\unifont\\unifont_upper.ttf"
+"Verdana (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdana.TTF"
+"Verdana Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdanab.TTF"
+"Verdana Bold Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdanaz.TTF"
+"Verdana Italic (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\Verdanai.TTF"
+"wasy10 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\lyx\\wasy10.ttf"
+"Webdings (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\webdings.ttf"
+"Wingdings (TrueType)"="Z:\\opt\\deepin-wine6-stable\\share\\wine\\fonts\\wingding.ttf"
+"\x5fae\x8f6f\x96c5\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyh.ttf"
+"\x5fae\x8f6f\x96c5\x9ed1 Bold (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\ms-core-fonts\\msyhbd.ttf"
+"\x6587\x6cc9\x9a7f\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"\x6587\x6cc9\x9a7f\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"\x6587\x6cc9\x9a7f\x70b9\x9635\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
+"\x6587\x6cc9\x9a7f\x7b49\x5bbd\x5fae\x7c73\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-microhei.ttc"
+"\x6587\x6cc9\x9a7f\x7b49\x5bbd\x6b63\x9ed1 (TrueType)"="Z:\\usr\\share\\fonts\\truetype\\wqy\\wqy-zenhei.ttc"
diff --git a/userdef.reg b/userdef.reg
new file mode 100644
index 0000000..295b441
--- /dev/null
+++ b/userdef.reg
@@ -0,0 +1,64 @@
+WINE REGISTRY Version 2
+;; All keys relative to \\User\\.Default
+
+#arch=win32
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders] 1660099897
+#time=1d8ac641bf11958
+"Administrative Tools"="C:\\users\\@current_user@\\Start Menu\\Programs\\Administrative Tools"
+"AppData"="C:\\users\\@current_user@\\Application Data"
+"Cache"="C:\\users\\@current_user@\\Local Settings\\Temporary Internet Files"
+"Cookies"="C:\\users\\@current_user@\\Cookies"
+"Desktop"="C:\\users\\@current_user@\\Desktop"
+"Favorites"="C:\\users\\@current_user@\\Favorites"
+"Fonts"="C:\\windows\\Fonts"
+"History"="C:\\users\\@current_user@\\Local Settings\\History"
+"Local AppData"="C:\\users\\@current_user@\\Local Settings\\Application Data"
+"My Music"="C:\\users\\@current_user@\\My Music"
+"My Pictures"="C:\\users\\@current_user@\\\x6211\x7684\x56fe\x7247"
+"My Videos"="C:\\users\\@current_user@\\My Videos"
+"NetHood"="C:\\users\\@current_user@\\NetHood"
+"Personal"="C:\\users\\@current_user@\\My Documents"
+"PrintHood"="C:\\users\\@current_user@\\PrintHood"
+"Programs"="C:\\users\\@current_user@\\Start Menu\\Programs"
+"Recent"="C:\\users\\@current_user@\\Recent"
+"SendTo"="C:\\users\\@current_user@\\SendTo"
+"Start Menu"="C:\\users\\@current_user@\\Start Menu"
+"StartUp"="C:\\users\\@current_user@\\Start Menu\\Programs\\StartUp"
+"Templates"="C:\\users\\@current_user@\\Templates"
+"{374DE290-123F-4565-9164-39C4925E467B}"="C:\\users\\@current_user@\\Downloads"
+"{4C5C32FF-BB9D-43B0-B5B4-2D72E54EAAA4}"="C:\\users\\@current_user@\\Saved Games"
+"{56784854-C6CB-462B-8169-88E350ACB882}"="C:\\users\\@current_user@\\Contacts"
+"{7D1D3A04-DEBB-4115-95CF-2F29DA2920DA}"="C:\\users\\@current_user@\\Searches"
+"{A520A1A4-1780-4FF6-BD18-167343C5AF16}"="C:\\users\\@current_user@\\AppData\\LocalLow"
+"{BFB9D5E0-C6A9-404C-B2B2-AE6DB6AF4968}"="C:\\users\\@current_user@\\Links"
+
+[Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders] 1660099897
+#time=1d8ac641bf1107a
+"Administrative Tools"=str(2):"%USERPROFILE%\\Start Menu\\Programs\\Administrative Tools"
+"AppData"=str(2):"%USERPROFILE%\\Application Data"
+"Cache"=str(2):"%USERPROFILE%\\Local Settings\\Temporary Internet Files"
+"Cookies"=str(2):"%USERPROFILE%\\Cookies"
+"Desktop"=str(2):"%USERPROFILE%\\Desktop"
+"Favorites"=str(2):"%USERPROFILE%\\Favorites"
+"Fonts"=str(2):"C:\\windows\\Fonts"
+"History"=str(2):"%USERPROFILE%\\Local Settings\\History"
+"Local AppData"=str(2):"%USERPROFILE%\\Local Settings\\Application Data"
+"My Music"=str(2):"%USERPROFILE%\\My Music"
+"My Pictures"=str(2):"%USERPROFILE%\\\x6211\x7684\x56fe\x7247"
+"My Videos"=str(2):"%USERPROFILE%\\My Videos"
+"NetHood"=str(2):"%USERPROFILE%\\NetHood"
+"Personal"=str(2):"%USERPROFILE%\\My Documents"
+"PrintHood"=str(2):"%USERPROFILE%\\PrintHood"
+"Programs"=str(2):"%USERPROFILE%\\Start Menu\\Programs"
+"Recent"=str(2):"%USERPROFILE%\\Recent"
+"SendTo"=str(2):"%USERPROFILE%\\SendTo"
+"Start Menu"=str(2):"%USERPROFILE%\\Start Menu"
+"StartUp"=str(2):"%USERPROFILE%\\Start Menu\\Programs\\StartUp"
+"Templates"=str(2):"%USERPROFILE%\\Templates"
+"{374DE290-123F-4565-9164-39C4925E467B}"=str(2):"%USERPROFILE%\\Downloads"
+"{4C5C32FF-BB9D-43B0-B5B4-2D72E54EAAA4}"=str(2):"%USERPROFILE%\\Saved Games"
+"{56784854-C6CB-462B-8169-88E350ACB882}"=str(2):"%USERPROFILE%\\Contacts"
+"{7D1D3A04-DEBB-4115-95CF-2F29DA2920DA}"=str(2):"%USERPROFILE%\\Searches"
+"{A520A1A4-1780-4FF6-BD18-167343C5AF16}"=str(2):"%USERPROFILE%\\AppData\\LocalLow"
+"{BFB9D5E0-C6A9-404C-B2B2-AE6DB6AF4968}"=str(2):"%USERPROFILE%\\Links"
diff --git a/wined3d.dll.so.7z b/wined3d.dll.so.7z
new file mode 100644
index 0000000..0a86fd3
Binary files /dev/null and b/wined3d.dll.so.7z differ