1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 08:40:34 +03:00
EDMarketConnector/EDMarketConnector.wxs
2020-06-21 16:28:29 +01:00

3151 lines
206 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<?define PRODUCTNAME = "EDMarketConnector"?>
<?define PRODUCTLONGNAME = "Elite Dangerous Market Connector"?>
<?define PRODUCTVERSION = "!(bind.fileVersion.EDMarketConnector.exe)" ?>
<?define UPGRADECODE = "9df571ae-d56d-46e6-af79-4e72ad54efe6" ?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*"
Name="$(var.PRODUCTLONGNAME)"
Version="$(var.PRODUCTVERSION)"
UpgradeCode="$(var.UPGRADECODE)"
Language="!(bind.fileLanguage.EDMarketConnector.exe)"
Manufacturer="EDCD">
<Package Id="*" Keywords="Installer"
InstallScope="perMachine"
Description="$(var.PRODUCTLONGNAME) installer"
InstallerVersion="300" Compressed="yes"
Platform="x86"
Languages="1033,1029,1031,1034,1035,1036,1038,1040,1041,1043,1045,1046,1049,1058,1062,2052,2070,2074,0" />
<!-- en cs, de es fi fr hu it ja nl pl pt-BR ru uk lv zh-CN pt-PT sr-Latn neutral -->
<!-- https://msdn.microsoft.com/en-gb/goglobal/bb964664.aspx -->
<!-- Always reinstall since patching is problematic -->
<!-- http://www.joyofsetup.com/2010/01/16/major-upgrades-now-easier-than-ever/ -->
<MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<Media Id="1" Cabinet="product.cab" EmbedCab="yes" />
<Icon Id="EDMarketConnector.exe" SourceFile="EDMarketConnector.ico"/>
<!-- For Add/Remove programs -->
<Property Id="ARPPRODUCTICON" Value="EDMarketConnector.exe" />
<Property Id="ARPNOMODIFY" Value="yes" Secure="yes" /> <!-- Remove modify - also set by WixUI_Minimal -->
<Property Id="ARPHELPLINK" Value="https://github.com/EDCD/EDMarketConnector/wiki" />
<!-- Set INSTALLDIR from ARPINSTALLLOCATION if replacing/upgrading -->
<!-- https://wyrdfish.wordpress.com/2012/07/20/msi-writing-guidelines-this-may-be-out-of-date/ -->
<Property Id="ARPINSTALLLOCATION">
<RegistrySearch Id="GetARPINSTALLLOCATION"
Root="HKLM"
Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[WIX_UPGRADE_DETECTED]"
Name="InstallLocation"
Type="raw" />
</Property>
<CustomAction Id="SetINSTALLDIR" Property="INSTALLDIR" Value="[ARPINSTALLLOCATION]" />
<InstallUISequence>
<Custom Action="SetINSTALLDIR" After="AppSearch">
WIX_UPGRADE_DETECTED AND ARPINSTALLLOCATION
</Custom>
</InstallUISequence>
<InstallExecuteSequence>
<Custom Action="SetINSTALLDIR" After="AppSearch">
WIX_UPGRADE_DETECTED AND ARPINSTALLLOCATION
</Custom>
</InstallExecuteSequence>
<!-- Set ARPINSTALLLOCATION from INSTALLDIR if new install -->
<!-- http://blogs.technet.com/b/alexshev/archive/2008/02/09/from-msi-to-wix-part-2.aspx -->
<CustomAction Id="SetARPINSTALLLOCATION" Property="ARPINSTALLLOCATION" Value="[INSTALLDIR]" />
<InstallExecuteSequence>
<Custom Action="SetARPINSTALLLOCATION" After="InstallValidate">
NOT Installed
</Custom>
</InstallExecuteSequence>
<!-- Launch app after upgrade -->
<Property Id="LAUNCH" Value="yes" />
<CustomAction Id="DoLaunch"
Directory="INSTALLDIR"
ExeCommand='"[INSTALLDIR]EDMarketConnector.exe"'
Return="asyncNoWait"
Execute="deferred"
Impersonate="yes"
/>
<InstallExecuteSequence>
<!-- http://alekdavis.blogspot.co.uk/2013/05/wix-woes-what-is-your-installer-doing.html -->
<Custom Action="DoLaunch" Before="InstallFinalize">
NOT Installed AND LAUNCH ~= "yes"
</Custom>
</InstallExecuteSequence>
<Directory Id="TARGETDIR" Name="SourceDir">
<!-- http://wixtoolset.org/documentation/manual/v3/howtos/files_and_registry/write_a_registry_entry.html -->
<Component Id="RegistryEntries" Guid="*">
<RegistryKey Root="HKCR" Key="edmc">
<RegistryValue Type="string" Value="$(var.PRODUCTLONGNAME)"/>
<RegistryValue Type="string" Name="URL Protocol" Value=""/>
<RegistryKey Key="DefaultIcon">
<RegistryValue Type="string" Value="[INSTALLDIR]EDMarketConnector.exe,0"/>
</RegistryKey>
<RegistryKey Key="shell">
<RegistryKey Key="open">
<RegistryKey Key="command">
<RegistryValue Type="string" Value='"[INSTALLDIR]EDMarketConnector.exe" "%1"'/>
</RegistryKey>
<RegistryKey Key="ddeexec">
<RegistryValue Type="string" Value='Open("%1")'/>
</RegistryKey>
</RegistryKey>
</RegistryKey>
</RegistryKey>
</Component>
<!-- Generate with `heat.exe dir dist.win32 -gg -sfrag -suid -out foo.wxs` -->
<!-- Sadly too late for auto-generated Component UUIDs -->
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLDIR" Name="$(var.PRODUCTNAME)">
<Component Id="MainExecutable" Guid="{D33BB66E-9664-4AB6-A044-3004B50A09B0}">
<File Id="EDMarketConnector.exe" KeyPath="yes" Source="SourceDir\EDMarketConnector.exe" />
<Shortcut Id="MainExeShortcut" Directory="ProgramMenuFolder" Name="$(var.PRODUCTLONGNAME)" Description="Downloads station data from Elite: Dangerous" WorkingDirectory="INSTALLDIR" Icon="EDMarketConnector.exe" IconIndex="0" Advertise="yes" />
</Component>
<Component Id="cacert.pem" Guid="{62DF41B7-0BE8-48F3-BB22-90E9201A6D8C}">
<File Id="cacert.pem" KeyPath="yes" Source="SourceDir\cacert.pem" />
</Component>
<Component Id="commodity.csv" Guid="*">
<File Id="commodity.csv" KeyPath="yes" Source="SourceDir\commodity.csv" />
</Component>
<Component Id="EDMarketConnector.ico" Guid="{6762E871-5FA1-4C2F-A3C9-6A9954CC018C}">
<File Id="EDMarketConnector.ico" KeyPath="yes" Source="SourceDir\EDMarketConnector.ico" />
</Component>
<Component Id="EDMarketConnector.VisualElementsManifest.xml" Guid="{9A0CB8A2-7167-492F-A185-0BDF7E9F5C01}">
<File Id="EDMarketConnector.VisualElementsManifest.xml" KeyPath="yes" Source="SourceDir\EDMarketConnector.VisualElementsManifest.xml" />
</Component>
<Component Id="EDMC.exe" Guid="*">
<File Id="EDMC.exe" KeyPath="yes" Source="SourceDir\EDMC.exe" />
</Component>
<Component Id="EUROCAPS.TTF" Guid="*">
<File Id="EUROCAPS.TTF" KeyPath="yes" Source="SourceDir\EUROCAPS.TTF" />
</Component>
<Component Id="library.zip" Guid="{A18814B6-B491-42AB-A433-2AD66A823AD7}">
<File Id="library.zip" KeyPath="yes" Source="SourceDir\library.zip" />
</Component>
<Component Id="libcrypto_1_1.dll" Guid="*">
<File Id="libcrypto_1_1.dll" KeyPath="yes" Source="SourceDir\libcrypto-1_1.dll" />
</Component>
<Component Id="libssl_1_1.dll" Guid="*">
<File Id="libssl_1_1.dll" KeyPath="yes" Source="SourceDir\libssl-1_1.dll" />
</Component>
<Component Id="modules.p" Guid="*">
<File Id="modules.p" KeyPath="yes" Source="SourceDir\modules.p" />
</Component>
<Component Id="pyexpat.pyd" Guid="{87A99AAA-792F-4092-9D00-5106D99D00AD}">
<File Id="pyexpat.pyd" KeyPath="yes" Source="SourceDir\pyexpat.pyd" />
</Component>
<Component Id="python37.dll" Guid="*">
<File Id="python37.dll" KeyPath="yes" Source="SourceDir\python37.dll" />
</Component>
<Component Id="rare_commodity.csv" Guid="*">
<File Id="rare_commodity.csv" KeyPath="yes" Source="SourceDir\rare_commodity.csv" />
</Component>
<Component Id="select.pyd" Guid="{9DBAB544-E815-40A5-866A-391B68919344}">
<File Id="select.pyd" KeyPath="yes" Source="SourceDir\select.pyd" />
</Component>
<Component Id="ships.p" Guid="*">
<File Id="ships.p" KeyPath="yes" Source="SourceDir\ships.p" />
</Component>
<Component Id="snd_bad.wav" Guid="*">
<File Id="snd_bad.wav" KeyPath="yes" Source="SourceDir\snd_bad.wav" />
</Component>
<Component Id="snd_good.wav" Guid="*">
<File Id="snd_good.wav" KeyPath="yes" Source="SourceDir\snd_good.wav" />
</Component>
<Component Id="stations.p" Guid="*">
<File Id="stations.p" KeyPath="yes" Source="SourceDir\stations.p" />
</Component>
<Component Id="systems.p" Guid="*">
<File Id="systems.p" KeyPath="yes" Source="SourceDir\systems.p" />
</Component>
<Component Id="tcl86t.dll" Guid="*">
<File Id="tcl86t.dll" KeyPath="yes" Source="SourceDir\tcl86t.dll" />
</Component>
<Component Id="tk86t.dll" Guid="*">
<File Id="tk86t.dll" KeyPath="yes" Source="SourceDir\tk86t.dll" />
</Component>
<Component Id="unicodedata.pyd" Guid="{E8E3701A-8AA1-4D46-A56D-7AF08D6AFCD4}">
<File Id="unicodedata.pyd" KeyPath="yes" Source="SourceDir\unicodedata.pyd" />
</Component>
<Component Id="winsound.pyd" Guid="*">
<File Id="winsound.pyd" KeyPath="yes" Source="SourceDir\winsound.pyd" />
</Component>
<Component Id="WinSparkle.dll" Guid="{3117D2CF-1D87-4B99-BE44-7BDDFE8C8E60}">
<File Id="WinSparkle.dll" KeyPath="yes" Source="SourceDir\WinSparkle.dll" />
</Component>
<Component Id="_bz2.pyd" Guid="*">
<File Id="_bz2.pyd" KeyPath="yes" Source="SourceDir\_bz2.pyd" />
</Component>
<Component Id="_ctypes.pyd" Guid="{433C38E1-F736-4546-AA83-FCD8B0AAA39B}">
<File Id="_ctypes.pyd" KeyPath="yes" Source="SourceDir\_ctypes.pyd" />
</Component>
<Component Id="_decimal.pyd" Guid="*">
<File Id="_decimal.pyd" KeyPath="yes" Source="SourceDir\_decimal.pyd" />
</Component>
<Component Id="_elementtree.pyd" Guid="*">
<File Id="_elementtree.pyd" KeyPath="yes" Source="SourceDir\_elementtree.pyd" />
</Component>
<Component Id="_hashlib.pyd" Guid="{45803711-A2A6-4DA8-8219-F625DE6DB33E}">
<File Id="_hashlib.pyd" KeyPath="yes" Source="SourceDir\_hashlib.pyd" />
</Component>
<Component Id="_lzma.pyd" Guid="*">
<File Id="_lzma.pyd" KeyPath="yes" Source="SourceDir\_lzma.pyd" />
</Component>
<Component Id="_multiprocessing.pyd" Guid="*">
<File Id="_multiprocessing.pyd" KeyPath="yes" Source="SourceDir\_multiprocessing.pyd" />
</Component>
<Component Id="_queue.pyd" Guid="*">
<File Id="_queue.pyd" KeyPath="yes" Source="SourceDir\_queue.pyd" />
</Component>
<Component Id="_socket.pyd" Guid="*">
<File Id="_socket.pyd" KeyPath="yes" Source="SourceDir\_socket.pyd" />
</Component>
<Component Id="sqlite3.dll" Guid="*">
<File Id="sqlite3.dll" KeyPath="yes" Source="SourceDir\sqlite3.dll" />
</Component>
<Component Id="_sqlite3.pyd" Guid="*">
<File Id="_sqlite3.pyd" KeyPath="yes" Source="SourceDir\_sqlite3.pyd" />
</Component>
<Component Id="_ssl.pyd" Guid="{2EA8F0B6-A104-4D31-99F0-3535ACDC26A9}">
<File Id="_ssl.pyd" KeyPath="yes" Source="SourceDir\_ssl.pyd" />
</Component>
<Component Id="_testcapi.pyd" Guid="*">
<File Id="_testcapi.pyd" KeyPath="yes" Source="SourceDir\_testcapi.pyd" />
</Component>
<Component Id="_tkinter.pyd" Guid="{D2F0CDD2-E934-419F-BC99-445E8FD3AF24}">
<File Id="_tkinter.pyd" KeyPath="yes" Source="SourceDir\_tkinter.pyd" />
</Component>
<Directory Id="L10n" Name="L10n">
<Component Id="cs.strings" Guid="*">
<File Id="cs.strings" KeyPath="yes" Source="SourceDir\L10n\cs.strings" />
</Component>
<Component Id="de.strings" Guid="*">
<File Id="de.strings" KeyPath="yes" Source="SourceDir\L10n\de.strings" />
</Component>
<Component Id="es.strings" Guid="*">
<File Id="es.strings" KeyPath="yes" Source="SourceDir\L10n\es.strings" />
</Component>
<Component Id="fi.strings" Guid="*">
<File Id="fi.strings" KeyPath="yes" Source="SourceDir\L10n\fi.strings" />
</Component>
<Component Id="fr.strings" Guid="*">
<File Id="fr.strings" KeyPath="yes" Source="SourceDir\L10n\fr.strings" />
</Component>
<Component Id="hu.strings" Guid="*">
<File Id="hu.strings" KeyPath="yes" Source="SourceDir\L10n\hu.strings" />
</Component>
<Component Id="it.strings" Guid="*">
<File Id="it.strings" KeyPath="yes" Source="SourceDir\L10n\it.strings" />
</Component>
<Component Id="ja.strings" Guid="*">
<File Id="ja.strings" KeyPath="yes" Source="SourceDir\L10n\ja.strings" />
</Component>
<Component Id="lv.strings" Guid="*">
<File Id="lv.strings" KeyPath="yes" Source="SourceDir\L10n\lv.strings" />
</Component>
<Component Id="nl.strings" Guid="*">
<File Id="nl.strings" KeyPath="yes" Source="SourceDir\L10n\nl.strings" />
</Component>
<Component Id="pl.strings" Guid="*">
<File Id="pl.strings" KeyPath="yes" Source="SourceDir\L10n\pl.strings" />
</Component>
<Component Id="pt_BR.strings" Guid="*">
<File Id="pt_BR.strings" KeyPath="yes" Source="SourceDir\L10n\pt-BR.strings" />
</Component>
<Component Id="pt_PT.strings" Guid="*">
<File Id="pt_PT.strings" KeyPath="yes" Source="SourceDir\L10n\pt-PT.strings" />
</Component>
<Component Id="ru.strings" Guid="*">
<File Id="ru.strings" KeyPath="yes" Source="SourceDir\L10n\ru.strings" />
</Component>
<Component Id="sr_Latn.strings" Guid="*">
<File Id="sr_Latn.strings" KeyPath="yes" Source="SourceDir\L10n\sr-Latn.strings" />
</Component>
<Component Id="uk.strings" Guid="*">
<File Id="uk.strings" KeyPath="yes" Source="SourceDir\L10n\uk.strings" />
</Component>
<Component Id="zh_Hans.strings" Guid="*">
<File Id="zh_Hans.strings" KeyPath="yes" Source="SourceDir\L10n\zh-Hans.strings" />
</Component>
</Directory>
<Directory Id="lib" Name="lib">
<Directory Id="tcl" Name="tcl">
<Component Id="auto.tcl" Guid="*">
<File Id="auto.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\auto.tcl" />
</Component>
<Component Id="clock.tcl" Guid="*">
<File Id="clock.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\clock.tcl" />
</Component>
<Component Id="history.tcl" Guid="*">
<File Id="history.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\history.tcl" />
</Component>
<Component Id="init.tcl" Guid="*">
<File Id="init.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\init.tcl" />
</Component>
<Component Id="package.tcl" Guid="*">
<File Id="package.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\package.tcl" />
</Component>
<Component Id="parray.tcl" Guid="*">
<File Id="parray.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\parray.tcl" />
</Component>
<Component Id="safe.tcl" Guid="*">
<File Id="safe.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\safe.tcl" />
</Component>
<Component Id="tclIndex" Guid="*">
<File Id="tclIndex" KeyPath="yes" Source="SourceDir\lib\tcl\tclIndex" />
</Component>
<Component Id="tm.tcl" Guid="*">
<File Id="tm.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\tm.tcl" />
</Component>
<Component Id="word.tcl" Guid="*">
<File Id="word.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\word.tcl" />
</Component>
<Directory Id="http1.0" Name="http1.0">
<Component Id="http.tcl" Guid="*">
<File Id="http.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\http1.0\http.tcl" />
</Component>
<Component Id="pkgIndex.tcl" Guid="*">
<File Id="pkgIndex.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\http1.0\pkgIndex.tcl" />
</Component>
</Directory>
<Directory Id="opt0.4" Name="opt0.4">
<Component Id="optparse.tcl" Guid="*">
<File Id="optparse.tcl" KeyPath="yes" Source="SourceDir\lib\tcl\opt0.4\optparse.tcl" />
</Component>
<Component Id="pkgIndex.tcl_1" Guid="*">
<File Id="pkgIndex.tcl_1" KeyPath="yes" Source="SourceDir\lib\tcl\opt0.4\pkgIndex.tcl" />
</Component>
</Directory>
<Directory Id="tzdata" Name="tzdata">
<Component Id="CET" Guid="*">
<File Id="CET" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\CET" />
</Component>
<Component Id="CST6CDT" Guid="*">
<File Id="CST6CDT" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\CST6CDT" />
</Component>
<Component Id="Cuba" Guid="*">
<File Id="Cuba" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Cuba" />
</Component>
<Component Id="EET" Guid="*">
<File Id="EET" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\EET" />
</Component>
<Component Id="Egypt" Guid="*">
<File Id="Egypt" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Egypt" />
</Component>
<Component Id="Eire" Guid="*">
<File Id="Eire" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Eire" />
</Component>
<Component Id="EST" Guid="*">
<File Id="EST" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\EST" />
</Component>
<Component Id="EST5EDT" Guid="*">
<File Id="EST5EDT" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\EST5EDT" />
</Component>
<Component Id="GB" Guid="*">
<File Id="GB" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\GB" />
</Component>
<Component Id="GB_Eire" Guid="*">
<File Id="GB_Eire" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\GB-Eire" />
</Component>
<Component Id="GMT" Guid="*">
<File Id="GMT" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\GMT" />
</Component>
<Component Id="GMT_0" Guid="*">
<File Id="GMT_0" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\GMT+0" />
</Component>
<Component Id="GMT_0_1" Guid="*">
<File Id="GMT_0_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\GMT-0" />
</Component>
<Component Id="GMT0" Guid="*">
<File Id="GMT0" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\GMT0" />
</Component>
<Component Id="Greenwich" Guid="*">
<File Id="Greenwich" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Greenwich" />
</Component>
<Component Id="Hongkong" Guid="*">
<File Id="Hongkong" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Hongkong" />
</Component>
<Component Id="HST" Guid="*">
<File Id="HST" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\HST" />
</Component>
<Component Id="Iceland" Guid="*">
<File Id="Iceland" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Iceland" />
</Component>
<Component Id="Iran" Guid="*">
<File Id="Iran" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Iran" />
</Component>
<Component Id="Israel" Guid="*">
<File Id="Israel" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Israel" />
</Component>
<Component Id="Jamaica" Guid="*">
<File Id="Jamaica" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Jamaica" />
</Component>
<Component Id="Japan" Guid="*">
<File Id="Japan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Japan" />
</Component>
<Component Id="Kwajalein" Guid="*">
<File Id="Kwajalein" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Kwajalein" />
</Component>
<Component Id="Libya" Guid="*">
<File Id="Libya" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Libya" />
</Component>
<Component Id="MET" Guid="*">
<File Id="MET" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\MET" />
</Component>
<Component Id="MST" Guid="*">
<File Id="MST" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\MST" />
</Component>
<Component Id="MST7MDT" Guid="*">
<File Id="MST7MDT" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\MST7MDT" />
</Component>
<Component Id="Navajo" Guid="*">
<File Id="Navajo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Navajo" />
</Component>
<Component Id="NZ" Guid="*">
<File Id="NZ" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\NZ" />
</Component>
<Component Id="NZ_CHAT" Guid="*">
<File Id="NZ_CHAT" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\NZ-CHAT" />
</Component>
<Component Id="Poland" Guid="*">
<File Id="Poland" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Poland" />
</Component>
<Component Id="Portugal" Guid="*">
<File Id="Portugal" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Portugal" />
</Component>
<Component Id="PRC" Guid="*">
<File Id="PRC" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\PRC" />
</Component>
<Component Id="PST8PDT" Guid="*">
<File Id="PST8PDT" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\PST8PDT" />
</Component>
<Component Id="ROC" Guid="*">
<File Id="ROC" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\ROC" />
</Component>
<Component Id="ROK" Guid="*">
<File Id="ROK" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\ROK" />
</Component>
<Component Id="Singapore" Guid="*">
<File Id="Singapore" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Singapore" />
</Component>
<Component Id="Turkey" Guid="*">
<File Id="Turkey" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Turkey" />
</Component>
<Component Id="UCT" Guid="*">
<File Id="UCT" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\UCT" />
</Component>
<Component Id="Universal" Guid="*">
<File Id="Universal" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Universal" />
</Component>
<Component Id="UTC" Guid="*">
<File Id="UTC" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\UTC" />
</Component>
<Component Id="W_SU" Guid="*">
<File Id="W_SU" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\W-SU" />
</Component>
<Component Id="WET" Guid="*">
<File Id="WET" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\WET" />
</Component>
<Component Id="Zulu" Guid="*">
<File Id="Zulu" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Zulu" />
</Component>
<Directory Id="Africa" Name="Africa">
<Component Id="Abidjan" Guid="*">
<File Id="Abidjan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Abidjan" />
</Component>
<Component Id="Accra" Guid="*">
<File Id="Accra" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Accra" />
</Component>
<Component Id="Addis_Ababa" Guid="*">
<File Id="Addis_Ababa" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Addis_Ababa" />
</Component>
<Component Id="Algiers" Guid="*">
<File Id="Algiers" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Algiers" />
</Component>
<Component Id="Asmara" Guid="*">
<File Id="Asmara" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Asmara" />
</Component>
<Component Id="Asmera" Guid="*">
<File Id="Asmera" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Asmera" />
</Component>
<Component Id="Bamako" Guid="*">
<File Id="Bamako" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Bamako" />
</Component>
<Component Id="Bangui" Guid="*">
<File Id="Bangui" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Bangui" />
</Component>
<Component Id="Banjul" Guid="*">
<File Id="Banjul" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Banjul" />
</Component>
<Component Id="Bissau" Guid="*">
<File Id="Bissau" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Bissau" />
</Component>
<Component Id="Blantyre" Guid="*">
<File Id="Blantyre" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Blantyre" />
</Component>
<Component Id="Brazzaville" Guid="*">
<File Id="Brazzaville" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Brazzaville" />
</Component>
<Component Id="Bujumbura" Guid="*">
<File Id="Bujumbura" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Bujumbura" />
</Component>
<Component Id="Cairo" Guid="*">
<File Id="Cairo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Cairo" />
</Component>
<Component Id="Casablanca" Guid="*">
<File Id="Casablanca" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Casablanca" />
</Component>
<Component Id="Ceuta" Guid="*">
<File Id="Ceuta" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Ceuta" />
</Component>
<Component Id="Conakry" Guid="*">
<File Id="Conakry" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Conakry" />
</Component>
<Component Id="Dakar" Guid="*">
<File Id="Dakar" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Dakar" />
</Component>
<Component Id="Dar_es_Salaam" Guid="*">
<File Id="Dar_es_Salaam" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Dar_es_Salaam" />
</Component>
<Component Id="Djibouti" Guid="*">
<File Id="Djibouti" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Djibouti" />
</Component>
<Component Id="Douala" Guid="*">
<File Id="Douala" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Douala" />
</Component>
<Component Id="El_Aaiun" Guid="*">
<File Id="El_Aaiun" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\El_Aaiun" />
</Component>
<Component Id="Freetown" Guid="*">
<File Id="Freetown" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Freetown" />
</Component>
<Component Id="Gaborone" Guid="*">
<File Id="Gaborone" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Gaborone" />
</Component>
<Component Id="Harare" Guid="*">
<File Id="Harare" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Harare" />
</Component>
<Component Id="Johannesburg" Guid="*">
<File Id="Johannesburg" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Johannesburg" />
</Component>
<Component Id="Juba" Guid="*">
<File Id="Juba" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Juba" />
</Component>
<Component Id="Kampala" Guid="*">
<File Id="Kampala" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Kampala" />
</Component>
<Component Id="Khartoum" Guid="*">
<File Id="Khartoum" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Khartoum" />
</Component>
<Component Id="Kigali" Guid="*">
<File Id="Kigali" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Kigali" />
</Component>
<Component Id="Kinshasa" Guid="*">
<File Id="Kinshasa" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Kinshasa" />
</Component>
<Component Id="Lagos" Guid="*">
<File Id="Lagos" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Lagos" />
</Component>
<Component Id="Libreville" Guid="*">
<File Id="Libreville" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Libreville" />
</Component>
<Component Id="Lome" Guid="*">
<File Id="Lome" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Lome" />
</Component>
<Component Id="Luanda" Guid="*">
<File Id="Luanda" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Luanda" />
</Component>
<Component Id="Lubumbashi" Guid="*">
<File Id="Lubumbashi" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Lubumbashi" />
</Component>
<Component Id="Lusaka" Guid="*">
<File Id="Lusaka" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Lusaka" />
</Component>
<Component Id="Malabo" Guid="*">
<File Id="Malabo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Malabo" />
</Component>
<Component Id="Maputo" Guid="*">
<File Id="Maputo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Maputo" />
</Component>
<Component Id="Maseru" Guid="*">
<File Id="Maseru" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Maseru" />
</Component>
<Component Id="Mbabane" Guid="*">
<File Id="Mbabane" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Mbabane" />
</Component>
<Component Id="Mogadishu" Guid="*">
<File Id="Mogadishu" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Mogadishu" />
</Component>
<Component Id="Monrovia" Guid="*">
<File Id="Monrovia" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Monrovia" />
</Component>
<Component Id="Nairobi" Guid="*">
<File Id="Nairobi" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Nairobi" />
</Component>
<Component Id="Ndjamena" Guid="*">
<File Id="Ndjamena" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Ndjamena" />
</Component>
<Component Id="Niamey" Guid="*">
<File Id="Niamey" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Niamey" />
</Component>
<Component Id="Nouakchott" Guid="*">
<File Id="Nouakchott" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Nouakchott" />
</Component>
<Component Id="Ouagadougou" Guid="*">
<File Id="Ouagadougou" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Ouagadougou" />
</Component>
<Component Id="Porto_Novo" Guid="*">
<File Id="Porto_Novo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Porto-Novo" />
</Component>
<Component Id="Sao_Tome" Guid="*">
<File Id="Sao_Tome" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Sao_Tome" />
</Component>
<Component Id="Timbuktu" Guid="*">
<File Id="Timbuktu" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Timbuktu" />
</Component>
<Component Id="Tripoli" Guid="*">
<File Id="Tripoli" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Tripoli" />
</Component>
<Component Id="Tunis" Guid="*">
<File Id="Tunis" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Tunis" />
</Component>
<Component Id="Windhoek" Guid="*">
<File Id="Windhoek" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Africa\Windhoek" />
</Component>
</Directory>
<Directory Id="America" Name="America">
<Component Id="Adak" Guid="*">
<File Id="Adak" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Adak" />
</Component>
<Component Id="Anchorage" Guid="*">
<File Id="Anchorage" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Anchorage" />
</Component>
<Component Id="Anguilla" Guid="*">
<File Id="Anguilla" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Anguilla" />
</Component>
<Component Id="Antigua" Guid="*">
<File Id="Antigua" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Antigua" />
</Component>
<Component Id="Araguaina" Guid="*">
<File Id="Araguaina" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Araguaina" />
</Component>
<Component Id="Aruba" Guid="*">
<File Id="Aruba" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Aruba" />
</Component>
<Component Id="Asuncion" Guid="*">
<File Id="Asuncion" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Asuncion" />
</Component>
<Component Id="Atikokan" Guid="*">
<File Id="Atikokan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Atikokan" />
</Component>
<Component Id="Atka" Guid="*">
<File Id="Atka" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Atka" />
</Component>
<Component Id="Bahia" Guid="*">
<File Id="Bahia" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Bahia" />
</Component>
<Component Id="Bahia_Banderas" Guid="*">
<File Id="Bahia_Banderas" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Bahia_Banderas" />
</Component>
<Component Id="Barbados" Guid="*">
<File Id="Barbados" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Barbados" />
</Component>
<Component Id="Belem" Guid="*">
<File Id="Belem" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Belem" />
</Component>
<Component Id="Belize" Guid="*">
<File Id="Belize" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Belize" />
</Component>
<Component Id="Blanc_Sablon" Guid="*">
<File Id="Blanc_Sablon" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Blanc-Sablon" />
</Component>
<Component Id="Boa_Vista" Guid="*">
<File Id="Boa_Vista" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Boa_Vista" />
</Component>
<Component Id="Bogota" Guid="*">
<File Id="Bogota" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Bogota" />
</Component>
<Component Id="Boise" Guid="*">
<File Id="Boise" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Boise" />
</Component>
<Component Id="Buenos_Aires" Guid="*">
<File Id="Buenos_Aires" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Buenos_Aires" />
</Component>
<Component Id="Cambridge_Bay" Guid="*">
<File Id="Cambridge_Bay" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Cambridge_Bay" />
</Component>
<Component Id="Campo_Grande" Guid="*">
<File Id="Campo_Grande" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Campo_Grande" />
</Component>
<Component Id="Cancun" Guid="*">
<File Id="Cancun" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Cancun" />
</Component>
<Component Id="Caracas" Guid="*">
<File Id="Caracas" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Caracas" />
</Component>
<Component Id="Catamarca" Guid="*">
<File Id="Catamarca" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Catamarca" />
</Component>
<Component Id="Cayenne" Guid="*">
<File Id="Cayenne" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Cayenne" />
</Component>
<Component Id="Cayman" Guid="*">
<File Id="Cayman" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Cayman" />
</Component>
<Component Id="Chicago" Guid="*">
<File Id="Chicago" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Chicago" />
</Component>
<Component Id="Chihuahua" Guid="*">
<File Id="Chihuahua" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Chihuahua" />
</Component>
<Component Id="Coral_Harbour" Guid="*">
<File Id="Coral_Harbour" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Coral_Harbour" />
</Component>
<Component Id="Cordoba" Guid="*">
<File Id="Cordoba" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Cordoba" />
</Component>
<Component Id="Costa_Rica" Guid="*">
<File Id="Costa_Rica" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Costa_Rica" />
</Component>
<Component Id="Creston" Guid="*">
<File Id="Creston" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Creston" />
</Component>
<Component Id="Cuiaba" Guid="*">
<File Id="Cuiaba" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Cuiaba" />
</Component>
<Component Id="Curacao" Guid="*">
<File Id="Curacao" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Curacao" />
</Component>
<Component Id="Danmarkshavn" Guid="*">
<File Id="Danmarkshavn" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Danmarkshavn" />
</Component>
<Component Id="Dawson" Guid="*">
<File Id="Dawson" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Dawson" />
</Component>
<Component Id="Dawson_Creek" Guid="*">
<File Id="Dawson_Creek" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Dawson_Creek" />
</Component>
<Component Id="Denver" Guid="*">
<File Id="Denver" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Denver" />
</Component>
<Component Id="Detroit" Guid="*">
<File Id="Detroit" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Detroit" />
</Component>
<Component Id="Dominica" Guid="*">
<File Id="Dominica" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Dominica" />
</Component>
<Component Id="Edmonton" Guid="*">
<File Id="Edmonton" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Edmonton" />
</Component>
<Component Id="Eirunepe" Guid="*">
<File Id="Eirunepe" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Eirunepe" />
</Component>
<Component Id="El_Salvador" Guid="*">
<File Id="El_Salvador" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\El_Salvador" />
</Component>
<Component Id="Ensenada" Guid="*">
<File Id="Ensenada" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Ensenada" />
</Component>
<Component Id="Fortaleza" Guid="*">
<File Id="Fortaleza" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Fortaleza" />
</Component>
<Component Id="Fort_Nelson" Guid="*">
<File Id="Fort_Nelson" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Fort_Nelson" />
</Component>
<Component Id="Fort_Wayne" Guid="*">
<File Id="Fort_Wayne" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Fort_Wayne" />
</Component>
<Component Id="Glace_Bay" Guid="*">
<File Id="Glace_Bay" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Glace_Bay" />
</Component>
<Component Id="Godthab" Guid="*">
<File Id="Godthab" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Godthab" />
</Component>
<Component Id="Goose_Bay" Guid="*">
<File Id="Goose_Bay" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Goose_Bay" />
</Component>
<Component Id="Grand_Turk" Guid="*">
<File Id="Grand_Turk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Grand_Turk" />
</Component>
<Component Id="Grenada" Guid="*">
<File Id="Grenada" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Grenada" />
</Component>
<Component Id="Guadeloupe" Guid="*">
<File Id="Guadeloupe" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Guadeloupe" />
</Component>
<Component Id="Guatemala" Guid="*">
<File Id="Guatemala" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Guatemala" />
</Component>
<Component Id="Guayaquil" Guid="*">
<File Id="Guayaquil" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Guayaquil" />
</Component>
<Component Id="Guyana" Guid="*">
<File Id="Guyana" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Guyana" />
</Component>
<Component Id="Halifax" Guid="*">
<File Id="Halifax" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Halifax" />
</Component>
<Component Id="Havana" Guid="*">
<File Id="Havana" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Havana" />
</Component>
<Component Id="Hermosillo" Guid="*">
<File Id="Hermosillo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Hermosillo" />
</Component>
<Component Id="Indianapolis" Guid="*">
<File Id="Indianapolis" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Indianapolis" />
</Component>
<Component Id="Inuvik" Guid="*">
<File Id="Inuvik" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Inuvik" />
</Component>
<Component Id="Iqaluit" Guid="*">
<File Id="Iqaluit" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Iqaluit" />
</Component>
<Component Id="Jamaica_1" Guid="*">
<File Id="Jamaica_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Jamaica" />
</Component>
<Component Id="Jujuy" Guid="*">
<File Id="Jujuy" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Jujuy" />
</Component>
<Component Id="Juneau" Guid="*">
<File Id="Juneau" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Juneau" />
</Component>
<Component Id="Knox_IN" Guid="*">
<File Id="Knox_IN" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Knox_IN" />
</Component>
<Component Id="Kralendijk" Guid="*">
<File Id="Kralendijk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Kralendijk" />
</Component>
<Component Id="La_Paz" Guid="*">
<File Id="La_Paz" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\La_Paz" />
</Component>
<Component Id="Lima" Guid="*">
<File Id="Lima" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Lima" />
</Component>
<Component Id="Los_Angeles" Guid="*">
<File Id="Los_Angeles" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Los_Angeles" />
</Component>
<Component Id="Louisville" Guid="*">
<File Id="Louisville" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Louisville" />
</Component>
<Component Id="Lower_Princes" Guid="*">
<File Id="Lower_Princes" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Lower_Princes" />
</Component>
<Component Id="Maceio" Guid="*">
<File Id="Maceio" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Maceio" />
</Component>
<Component Id="Managua" Guid="*">
<File Id="Managua" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Managua" />
</Component>
<Component Id="Manaus" Guid="*">
<File Id="Manaus" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Manaus" />
</Component>
<Component Id="Marigot" Guid="*">
<File Id="Marigot" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Marigot" />
</Component>
<Component Id="Martinique" Guid="*">
<File Id="Martinique" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Martinique" />
</Component>
<Component Id="Matamoros" Guid="*">
<File Id="Matamoros" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Matamoros" />
</Component>
<Component Id="Mazatlan" Guid="*">
<File Id="Mazatlan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Mazatlan" />
</Component>
<Component Id="Mendoza" Guid="*">
<File Id="Mendoza" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Mendoza" />
</Component>
<Component Id="Menominee" Guid="*">
<File Id="Menominee" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Menominee" />
</Component>
<Component Id="Merida" Guid="*">
<File Id="Merida" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Merida" />
</Component>
<Component Id="Metlakatla" Guid="*">
<File Id="Metlakatla" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Metlakatla" />
</Component>
<Component Id="Mexico_City" Guid="*">
<File Id="Mexico_City" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Mexico_City" />
</Component>
<Component Id="Miquelon" Guid="*">
<File Id="Miquelon" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Miquelon" />
</Component>
<Component Id="Moncton" Guid="*">
<File Id="Moncton" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Moncton" />
</Component>
<Component Id="Monterrey" Guid="*">
<File Id="Monterrey" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Monterrey" />
</Component>
<Component Id="Montevideo" Guid="*">
<File Id="Montevideo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Montevideo" />
</Component>
<Component Id="Montreal" Guid="*">
<File Id="Montreal" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Montreal" />
</Component>
<Component Id="Montserrat" Guid="*">
<File Id="Montserrat" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Montserrat" />
</Component>
<Component Id="Nassau" Guid="*">
<File Id="Nassau" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Nassau" />
</Component>
<Component Id="New_York" Guid="*">
<File Id="New_York" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\New_York" />
</Component>
<Component Id="Nipigon" Guid="*">
<File Id="Nipigon" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Nipigon" />
</Component>
<Component Id="Nome" Guid="*">
<File Id="Nome" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Nome" />
</Component>
<Component Id="Noronha" Guid="*">
<File Id="Noronha" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Noronha" />
</Component>
<Component Id="Ojinaga" Guid="*">
<File Id="Ojinaga" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Ojinaga" />
</Component>
<Component Id="Panama" Guid="*">
<File Id="Panama" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Panama" />
</Component>
<Component Id="Pangnirtung" Guid="*">
<File Id="Pangnirtung" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Pangnirtung" />
</Component>
<Component Id="Paramaribo" Guid="*">
<File Id="Paramaribo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Paramaribo" />
</Component>
<Component Id="Phoenix" Guid="*">
<File Id="Phoenix" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Phoenix" />
</Component>
<Component Id="Port_au_Prince" Guid="*">
<File Id="Port_au_Prince" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Port-au-Prince" />
</Component>
<Component Id="Porto_Acre" Guid="*">
<File Id="Porto_Acre" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Porto_Acre" />
</Component>
<Component Id="Porto_Velho" Guid="*">
<File Id="Porto_Velho" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Porto_Velho" />
</Component>
<Component Id="Port_of_Spain" Guid="*">
<File Id="Port_of_Spain" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Port_of_Spain" />
</Component>
<Component Id="Puerto_Rico" Guid="*">
<File Id="Puerto_Rico" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Puerto_Rico" />
</Component>
<Component Id="Punta_Arenas" Guid="*">
<File Id="Punta_Arenas" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Punta_Arenas" />
</Component>
<Component Id="Rainy_River" Guid="*">
<File Id="Rainy_River" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Rainy_River" />
</Component>
<Component Id="Rankin_Inlet" Guid="*">
<File Id="Rankin_Inlet" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Rankin_Inlet" />
</Component>
<Component Id="Recife" Guid="*">
<File Id="Recife" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Recife" />
</Component>
<Component Id="Regina" Guid="*">
<File Id="Regina" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Regina" />
</Component>
<Component Id="Resolute" Guid="*">
<File Id="Resolute" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Resolute" />
</Component>
<Component Id="Rio_Branco" Guid="*">
<File Id="Rio_Branco" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Rio_Branco" />
</Component>
<Component Id="Rosario" Guid="*">
<File Id="Rosario" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Rosario" />
</Component>
<Component Id="Santarem" Guid="*">
<File Id="Santarem" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Santarem" />
</Component>
<Component Id="Santa_Isabel" Guid="*">
<File Id="Santa_Isabel" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Santa_Isabel" />
</Component>
<Component Id="Santiago" Guid="*">
<File Id="Santiago" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Santiago" />
</Component>
<Component Id="Santo_Domingo" Guid="*">
<File Id="Santo_Domingo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Santo_Domingo" />
</Component>
<Component Id="Sao_Paulo" Guid="*">
<File Id="Sao_Paulo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Sao_Paulo" />
</Component>
<Component Id="Scoresbysund" Guid="*">
<File Id="Scoresbysund" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Scoresbysund" />
</Component>
<Component Id="Shiprock" Guid="*">
<File Id="Shiprock" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Shiprock" />
</Component>
<Component Id="Sitka" Guid="*">
<File Id="Sitka" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Sitka" />
</Component>
<Component Id="St_Barthelemy" Guid="*">
<File Id="St_Barthelemy" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\St_Barthelemy" />
</Component>
<Component Id="St_Johns" Guid="*">
<File Id="St_Johns" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\St_Johns" />
</Component>
<Component Id="St_Kitts" Guid="*">
<File Id="St_Kitts" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\St_Kitts" />
</Component>
<Component Id="St_Lucia" Guid="*">
<File Id="St_Lucia" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\St_Lucia" />
</Component>
<Component Id="St_Thomas" Guid="*">
<File Id="St_Thomas" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\St_Thomas" />
</Component>
<Component Id="St_Vincent" Guid="*">
<File Id="St_Vincent" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\St_Vincent" />
</Component>
<Component Id="Swift_Current" Guid="*">
<File Id="Swift_Current" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Swift_Current" />
</Component>
<Component Id="Tegucigalpa" Guid="*">
<File Id="Tegucigalpa" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Tegucigalpa" />
</Component>
<Component Id="Thule" Guid="*">
<File Id="Thule" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Thule" />
</Component>
<Component Id="Thunder_Bay" Guid="*">
<File Id="Thunder_Bay" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Thunder_Bay" />
</Component>
<Component Id="Tijuana" Guid="*">
<File Id="Tijuana" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Tijuana" />
</Component>
<Component Id="Toronto" Guid="*">
<File Id="Toronto" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Toronto" />
</Component>
<Component Id="Tortola" Guid="*">
<File Id="Tortola" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Tortola" />
</Component>
<Component Id="Vancouver" Guid="*">
<File Id="Vancouver" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Vancouver" />
</Component>
<Component Id="Virgin" Guid="*">
<File Id="Virgin" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Virgin" />
</Component>
<Component Id="Whitehorse" Guid="*">
<File Id="Whitehorse" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Whitehorse" />
</Component>
<Component Id="Winnipeg" Guid="*">
<File Id="Winnipeg" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Winnipeg" />
</Component>
<Component Id="Yakutat" Guid="*">
<File Id="Yakutat" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Yakutat" />
</Component>
<Component Id="Yellowknife" Guid="*">
<File Id="Yellowknife" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Yellowknife" />
</Component>
<Directory Id="Argentina" Name="Argentina">
<Component Id="Buenos_Aires_1" Guid="*">
<File Id="Buenos_Aires_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\Buenos_Aires" />
</Component>
<Component Id="Catamarca_1" Guid="*">
<File Id="Catamarca_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\Catamarca" />
</Component>
<Component Id="ComodRivadavia" Guid="*">
<File Id="ComodRivadavia" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\ComodRivadavia" />
</Component>
<Component Id="Cordoba_1" Guid="*">
<File Id="Cordoba_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\Cordoba" />
</Component>
<Component Id="Jujuy_1" Guid="*">
<File Id="Jujuy_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\Jujuy" />
</Component>
<Component Id="La_Rioja" Guid="*">
<File Id="La_Rioja" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\La_Rioja" />
</Component>
<Component Id="Mendoza_1" Guid="*">
<File Id="Mendoza_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\Mendoza" />
</Component>
<Component Id="Rio_Gallegos" Guid="*">
<File Id="Rio_Gallegos" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\Rio_Gallegos" />
</Component>
<Component Id="Salta" Guid="*">
<File Id="Salta" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\Salta" />
</Component>
<Component Id="San_Juan" Guid="*">
<File Id="San_Juan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\San_Juan" />
</Component>
<Component Id="San_Luis" Guid="*">
<File Id="San_Luis" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\San_Luis" />
</Component>
<Component Id="Tucuman" Guid="*">
<File Id="Tucuman" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\Tucuman" />
</Component>
<Component Id="Ushuaia" Guid="*">
<File Id="Ushuaia" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Argentina\Ushuaia" />
</Component>
</Directory>
<Directory Id="Indiana" Name="Indiana">
<Component Id="Indianapolis_1" Guid="*">
<File Id="Indianapolis_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Indiana\Indianapolis" />
</Component>
<Component Id="Knox" Guid="*">
<File Id="Knox" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Indiana\Knox" />
</Component>
<Component Id="Marengo" Guid="*">
<File Id="Marengo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Indiana\Marengo" />
</Component>
<Component Id="Petersburg" Guid="*">
<File Id="Petersburg" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Indiana\Petersburg" />
</Component>
<Component Id="Tell_City" Guid="*">
<File Id="Tell_City" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Indiana\Tell_City" />
</Component>
<Component Id="Vevay" Guid="*">
<File Id="Vevay" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Indiana\Vevay" />
</Component>
<Component Id="Vincennes" Guid="*">
<File Id="Vincennes" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Indiana\Vincennes" />
</Component>
<Component Id="Winamac" Guid="*">
<File Id="Winamac" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Indiana\Winamac" />
</Component>
</Directory>
<Directory Id="Kentucky" Name="Kentucky">
<Component Id="Louisville_1" Guid="*">
<File Id="Louisville_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Kentucky\Louisville" />
</Component>
<Component Id="Monticello" Guid="*">
<File Id="Monticello" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\Kentucky\Monticello" />
</Component>
</Directory>
<Directory Id="North_Dakota" Name="North_Dakota">
<Component Id="Beulah" Guid="*">
<File Id="Beulah" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\North_Dakota\Beulah" />
</Component>
<Component Id="Center" Guid="*">
<File Id="Center" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\North_Dakota\Center" />
</Component>
<Component Id="New_Salem" Guid="*">
<File Id="New_Salem" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\America\North_Dakota\New_Salem" />
</Component>
</Directory>
</Directory>
<Directory Id="Antarctica" Name="Antarctica">
<Component Id="Casey" Guid="*">
<File Id="Casey" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\Casey" />
</Component>
<Component Id="Davis" Guid="*">
<File Id="Davis" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\Davis" />
</Component>
<Component Id="DumontDUrville" Guid="*">
<File Id="DumontDUrville" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\DumontDUrville" />
</Component>
<Component Id="Macquarie" Guid="*">
<File Id="Macquarie" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\Macquarie" />
</Component>
<Component Id="Mawson" Guid="*">
<File Id="Mawson" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\Mawson" />
</Component>
<Component Id="McMurdo" Guid="*">
<File Id="McMurdo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\McMurdo" />
</Component>
<Component Id="Palmer" Guid="*">
<File Id="Palmer" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\Palmer" />
</Component>
<Component Id="Rothera" Guid="*">
<File Id="Rothera" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\Rothera" />
</Component>
<Component Id="South_Pole" Guid="*">
<File Id="South_Pole" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\South_Pole" />
</Component>
<Component Id="Syowa" Guid="*">
<File Id="Syowa" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\Syowa" />
</Component>
<Component Id="Troll" Guid="*">
<File Id="Troll" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\Troll" />
</Component>
<Component Id="Vostok" Guid="*">
<File Id="Vostok" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Antarctica\Vostok" />
</Component>
</Directory>
<Directory Id="Arctic" Name="Arctic">
<Component Id="Longyearbyen" Guid="*">
<File Id="Longyearbyen" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Arctic\Longyearbyen" />
</Component>
</Directory>
<Directory Id="Asia" Name="Asia">
<Component Id="Aden" Guid="*">
<File Id="Aden" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Aden" />
</Component>
<Component Id="Almaty" Guid="*">
<File Id="Almaty" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Almaty" />
</Component>
<Component Id="Amman" Guid="*">
<File Id="Amman" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Amman" />
</Component>
<Component Id="Anadyr" Guid="*">
<File Id="Anadyr" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Anadyr" />
</Component>
<Component Id="Aqtau" Guid="*">
<File Id="Aqtau" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Aqtau" />
</Component>
<Component Id="Aqtobe" Guid="*">
<File Id="Aqtobe" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Aqtobe" />
</Component>
<Component Id="Ashgabat" Guid="*">
<File Id="Ashgabat" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Ashgabat" />
</Component>
<Component Id="Ashkhabad" Guid="*">
<File Id="Ashkhabad" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Ashkhabad" />
</Component>
<Component Id="Atyrau" Guid="*">
<File Id="Atyrau" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Atyrau" />
</Component>
<Component Id="Baghdad" Guid="*">
<File Id="Baghdad" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Baghdad" />
</Component>
<Component Id="Bahrain" Guid="*">
<File Id="Bahrain" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Bahrain" />
</Component>
<Component Id="Baku" Guid="*">
<File Id="Baku" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Baku" />
</Component>
<Component Id="Bangkok" Guid="*">
<File Id="Bangkok" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Bangkok" />
</Component>
<Component Id="Barnaul" Guid="*">
<File Id="Barnaul" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Barnaul" />
</Component>
<Component Id="Beirut" Guid="*">
<File Id="Beirut" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Beirut" />
</Component>
<Component Id="Bishkek" Guid="*">
<File Id="Bishkek" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Bishkek" />
</Component>
<Component Id="Brunei" Guid="*">
<File Id="Brunei" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Brunei" />
</Component>
<Component Id="Calcutta" Guid="*">
<File Id="Calcutta" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Calcutta" />
</Component>
<Component Id="Chita" Guid="*">
<File Id="Chita" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Chita" />
</Component>
<Component Id="Choibalsan" Guid="*">
<File Id="Choibalsan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Choibalsan" />
</Component>
<Component Id="Chongqing" Guid="*">
<File Id="Chongqing" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Chongqing" />
</Component>
<Component Id="Chungking" Guid="*">
<File Id="Chungking" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Chungking" />
</Component>
<Component Id="Colombo" Guid="*">
<File Id="Colombo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Colombo" />
</Component>
<Component Id="Dacca" Guid="*">
<File Id="Dacca" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Dacca" />
</Component>
<Component Id="Damascus" Guid="*">
<File Id="Damascus" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Damascus" />
</Component>
<Component Id="Dhaka" Guid="*">
<File Id="Dhaka" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Dhaka" />
</Component>
<Component Id="Dili" Guid="*">
<File Id="Dili" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Dili" />
</Component>
<Component Id="Dubai" Guid="*">
<File Id="Dubai" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Dubai" />
</Component>
<Component Id="Dushanbe" Guid="*">
<File Id="Dushanbe" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Dushanbe" />
</Component>
<Component Id="Famagusta" Guid="*">
<File Id="Famagusta" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Famagusta" />
</Component>
<Component Id="Gaza" Guid="*">
<File Id="Gaza" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Gaza" />
</Component>
<Component Id="Harbin" Guid="*">
<File Id="Harbin" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Harbin" />
</Component>
<Component Id="Hebron" Guid="*">
<File Id="Hebron" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Hebron" />
</Component>
<Component Id="Hong_Kong" Guid="*">
<File Id="Hong_Kong" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Hong_Kong" />
</Component>
<Component Id="Hovd" Guid="*">
<File Id="Hovd" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Hovd" />
</Component>
<Component Id="Ho_Chi_Minh" Guid="*">
<File Id="Ho_Chi_Minh" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Ho_Chi_Minh" />
</Component>
<Component Id="Irkutsk" Guid="*">
<File Id="Irkutsk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Irkutsk" />
</Component>
<Component Id="Istanbul" Guid="*">
<File Id="Istanbul" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Istanbul" />
</Component>
<Component Id="Jakarta" Guid="*">
<File Id="Jakarta" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Jakarta" />
</Component>
<Component Id="Jayapura" Guid="*">
<File Id="Jayapura" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Jayapura" />
</Component>
<Component Id="Jerusalem" Guid="*">
<File Id="Jerusalem" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Jerusalem" />
</Component>
<Component Id="Kabul" Guid="*">
<File Id="Kabul" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Kabul" />
</Component>
<Component Id="Kamchatka" Guid="*">
<File Id="Kamchatka" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Kamchatka" />
</Component>
<Component Id="Karachi" Guid="*">
<File Id="Karachi" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Karachi" />
</Component>
<Component Id="Kashgar" Guid="*">
<File Id="Kashgar" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Kashgar" />
</Component>
<Component Id="Kathmandu" Guid="*">
<File Id="Kathmandu" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Kathmandu" />
</Component>
<Component Id="Katmandu" Guid="*">
<File Id="Katmandu" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Katmandu" />
</Component>
<Component Id="Khandyga" Guid="*">
<File Id="Khandyga" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Khandyga" />
</Component>
<Component Id="Kolkata" Guid="*">
<File Id="Kolkata" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Kolkata" />
</Component>
<Component Id="Krasnoyarsk" Guid="*">
<File Id="Krasnoyarsk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Krasnoyarsk" />
</Component>
<Component Id="Kuala_Lumpur" Guid="*">
<File Id="Kuala_Lumpur" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Kuala_Lumpur" />
</Component>
<Component Id="Kuching" Guid="*">
<File Id="Kuching" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Kuching" />
</Component>
<Component Id="Kuwait" Guid="*">
<File Id="Kuwait" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Kuwait" />
</Component>
<Component Id="Macao" Guid="*">
<File Id="Macao" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Macao" />
</Component>
<Component Id="Macau" Guid="*">
<File Id="Macau" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Macau" />
</Component>
<Component Id="Magadan" Guid="*">
<File Id="Magadan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Magadan" />
</Component>
<Component Id="Makassar" Guid="*">
<File Id="Makassar" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Makassar" />
</Component>
<Component Id="Manila" Guid="*">
<File Id="Manila" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Manila" />
</Component>
<Component Id="Muscat" Guid="*">
<File Id="Muscat" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Muscat" />
</Component>
<Component Id="Nicosia" Guid="*">
<File Id="Nicosia" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Nicosia" />
</Component>
<Component Id="Novokuznetsk" Guid="*">
<File Id="Novokuznetsk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Novokuznetsk" />
</Component>
<Component Id="Novosibirsk" Guid="*">
<File Id="Novosibirsk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Novosibirsk" />
</Component>
<Component Id="Omsk" Guid="*">
<File Id="Omsk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Omsk" />
</Component>
<Component Id="Oral" Guid="*">
<File Id="Oral" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Oral" />
</Component>
<Component Id="Phnom_Penh" Guid="*">
<File Id="Phnom_Penh" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Phnom_Penh" />
</Component>
<Component Id="Pontianak" Guid="*">
<File Id="Pontianak" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Pontianak" />
</Component>
<Component Id="Pyongyang" Guid="*">
<File Id="Pyongyang" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Pyongyang" />
</Component>
<Component Id="Qatar" Guid="*">
<File Id="Qatar" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Qatar" />
</Component>
<Component Id="Qyzylorda" Guid="*">
<File Id="Qyzylorda" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Qyzylorda" />
</Component>
<Component Id="Rangoon" Guid="*">
<File Id="Rangoon" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Rangoon" />
</Component>
<Component Id="Riyadh" Guid="*">
<File Id="Riyadh" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Riyadh" />
</Component>
<Component Id="Saigon" Guid="*">
<File Id="Saigon" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Saigon" />
</Component>
<Component Id="Sakhalin" Guid="*">
<File Id="Sakhalin" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Sakhalin" />
</Component>
<Component Id="Samarkand" Guid="*">
<File Id="Samarkand" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Samarkand" />
</Component>
<Component Id="Seoul" Guid="*">
<File Id="Seoul" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Seoul" />
</Component>
<Component Id="Shanghai" Guid="*">
<File Id="Shanghai" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Shanghai" />
</Component>
<Component Id="Singapore_1" Guid="*">
<File Id="Singapore_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Singapore" />
</Component>
<Component Id="Srednekolymsk" Guid="*">
<File Id="Srednekolymsk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Srednekolymsk" />
</Component>
<Component Id="Taipei" Guid="*">
<File Id="Taipei" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Taipei" />
</Component>
<Component Id="Tashkent" Guid="*">
<File Id="Tashkent" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Tashkent" />
</Component>
<Component Id="Tbilisi" Guid="*">
<File Id="Tbilisi" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Tbilisi" />
</Component>
<Component Id="Tehran" Guid="*">
<File Id="Tehran" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Tehran" />
</Component>
<Component Id="Tel_Aviv" Guid="*">
<File Id="Tel_Aviv" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Tel_Aviv" />
</Component>
<Component Id="Thimbu" Guid="*">
<File Id="Thimbu" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Thimbu" />
</Component>
<Component Id="Thimphu" Guid="*">
<File Id="Thimphu" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Thimphu" />
</Component>
<Component Id="Tokyo" Guid="*">
<File Id="Tokyo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Tokyo" />
</Component>
<Component Id="Tomsk" Guid="*">
<File Id="Tomsk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Tomsk" />
</Component>
<Component Id="Ujung_Pandang" Guid="*">
<File Id="Ujung_Pandang" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Ujung_Pandang" />
</Component>
<Component Id="Ulaanbaatar" Guid="*">
<File Id="Ulaanbaatar" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Ulaanbaatar" />
</Component>
<Component Id="Ulan_Bator" Guid="*">
<File Id="Ulan_Bator" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Ulan_Bator" />
</Component>
<Component Id="Urumqi" Guid="*">
<File Id="Urumqi" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Urumqi" />
</Component>
<Component Id="Ust_Nera" Guid="*">
<File Id="Ust_Nera" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Ust-Nera" />
</Component>
<Component Id="Vientiane" Guid="*">
<File Id="Vientiane" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Vientiane" />
</Component>
<Component Id="Vladivostok" Guid="*">
<File Id="Vladivostok" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Vladivostok" />
</Component>
<Component Id="Yakutsk" Guid="*">
<File Id="Yakutsk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Yakutsk" />
</Component>
<Component Id="Yangon" Guid="*">
<File Id="Yangon" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Yangon" />
</Component>
<Component Id="Yekaterinburg" Guid="*">
<File Id="Yekaterinburg" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Yekaterinburg" />
</Component>
<Component Id="Yerevan" Guid="*">
<File Id="Yerevan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Asia\Yerevan" />
</Component>
</Directory>
<Directory Id="Atlantic" Name="Atlantic">
<Component Id="Azores" Guid="*">
<File Id="Azores" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\Azores" />
</Component>
<Component Id="Bermuda" Guid="*">
<File Id="Bermuda" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\Bermuda" />
</Component>
<Component Id="Canary" Guid="*">
<File Id="Canary" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\Canary" />
</Component>
<Component Id="Cape_Verde" Guid="*">
<File Id="Cape_Verde" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\Cape_Verde" />
</Component>
<Component Id="Faeroe" Guid="*">
<File Id="Faeroe" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\Faeroe" />
</Component>
<Component Id="Faroe" Guid="*">
<File Id="Faroe" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\Faroe" />
</Component>
<Component Id="Jan_Mayen" Guid="*">
<File Id="Jan_Mayen" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\Jan_Mayen" />
</Component>
<Component Id="Madeira" Guid="*">
<File Id="Madeira" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\Madeira" />
</Component>
<Component Id="Reykjavik" Guid="*">
<File Id="Reykjavik" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\Reykjavik" />
</Component>
<Component Id="South_Georgia" Guid="*">
<File Id="South_Georgia" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\South_Georgia" />
</Component>
<Component Id="Stanley" Guid="*">
<File Id="Stanley" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\Stanley" />
</Component>
<Component Id="St_Helena" Guid="*">
<File Id="St_Helena" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Atlantic\St_Helena" />
</Component>
</Directory>
<Directory Id="Australia" Name="Australia">
<Component Id="ACT" Guid="*">
<File Id="ACT" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\ACT" />
</Component>
<Component Id="Adelaide" Guid="*">
<File Id="Adelaide" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Adelaide" />
</Component>
<Component Id="Brisbane" Guid="*">
<File Id="Brisbane" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Brisbane" />
</Component>
<Component Id="Broken_Hill" Guid="*">
<File Id="Broken_Hill" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Broken_Hill" />
</Component>
<Component Id="Canberra" Guid="*">
<File Id="Canberra" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Canberra" />
</Component>
<Component Id="Currie" Guid="*">
<File Id="Currie" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Currie" />
</Component>
<Component Id="Darwin" Guid="*">
<File Id="Darwin" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Darwin" />
</Component>
<Component Id="Eucla" Guid="*">
<File Id="Eucla" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Eucla" />
</Component>
<Component Id="Hobart" Guid="*">
<File Id="Hobart" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Hobart" />
</Component>
<Component Id="LHI" Guid="*">
<File Id="LHI" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\LHI" />
</Component>
<Component Id="Lindeman" Guid="*">
<File Id="Lindeman" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Lindeman" />
</Component>
<Component Id="Lord_Howe" Guid="*">
<File Id="Lord_Howe" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Lord_Howe" />
</Component>
<Component Id="Melbourne" Guid="*">
<File Id="Melbourne" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Melbourne" />
</Component>
<Component Id="North" Guid="*">
<File Id="North" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\North" />
</Component>
<Component Id="NSW" Guid="*">
<File Id="NSW" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\NSW" />
</Component>
<Component Id="Perth" Guid="*">
<File Id="Perth" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Perth" />
</Component>
<Component Id="Queensland" Guid="*">
<File Id="Queensland" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Queensland" />
</Component>
<Component Id="South" Guid="*">
<File Id="South" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\South" />
</Component>
<Component Id="Sydney" Guid="*">
<File Id="Sydney" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Sydney" />
</Component>
<Component Id="Tasmania" Guid="*">
<File Id="Tasmania" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Tasmania" />
</Component>
<Component Id="Victoria" Guid="*">
<File Id="Victoria" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Victoria" />
</Component>
<Component Id="West" Guid="*">
<File Id="West" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\West" />
</Component>
<Component Id="Yancowinna" Guid="*">
<File Id="Yancowinna" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Australia\Yancowinna" />
</Component>
</Directory>
<Directory Id="Brazil" Name="Brazil">
<Component Id="Acre" Guid="*">
<File Id="Acre" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Brazil\Acre" />
</Component>
<Component Id="DeNoronha" Guid="*">
<File Id="DeNoronha" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Brazil\DeNoronha" />
</Component>
<Component Id="East" Guid="*">
<File Id="East" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Brazil\East" />
</Component>
<Component Id="West_1" Guid="*">
<File Id="West_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Brazil\West" />
</Component>
</Directory>
<Directory Id="Canada" Name="Canada">
<Component Id="Atlantic" Guid="*">
<File Id="Atlantic" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Canada\Atlantic" />
</Component>
<Component Id="Central" Guid="*">
<File Id="Central" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Canada\Central" />
</Component>
<Component Id="East_Saskatchewan" Guid="*">
<File Id="East_Saskatchewan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Canada\East-Saskatchewan" />
</Component>
<Component Id="Eastern" Guid="*">
<File Id="Eastern" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Canada\Eastern" />
</Component>
<Component Id="Mountain" Guid="*">
<File Id="Mountain" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Canada\Mountain" />
</Component>
<Component Id="Newfoundland" Guid="*">
<File Id="Newfoundland" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Canada\Newfoundland" />
</Component>
<Component Id="Pacific" Guid="*">
<File Id="Pacific" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Canada\Pacific" />
</Component>
<Component Id="Saskatchewan" Guid="*">
<File Id="Saskatchewan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Canada\Saskatchewan" />
</Component>
<Component Id="Yukon" Guid="*">
<File Id="Yukon" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Canada\Yukon" />
</Component>
</Directory>
<Directory Id="Chile" Name="Chile">
<Component Id="Continental" Guid="*">
<File Id="Continental" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Chile\Continental" />
</Component>
<Component Id="EasterIsland" Guid="*">
<File Id="EasterIsland" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Chile\EasterIsland" />
</Component>
</Directory>
<Directory Id="Etc" Name="Etc">
<Component Id="GMT_1" Guid="*">
<File Id="GMT_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT" />
</Component>
<Component Id="GMT_0_2" Guid="*">
<File Id="GMT_0_2" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+0" />
</Component>
<Component Id="GMT_1_1" Guid="*">
<File Id="GMT_1_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+1" />
</Component>
<Component Id="GMT_10" Guid="*">
<File Id="GMT_10" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+10" />
</Component>
<Component Id="GMT_11" Guid="*">
<File Id="GMT_11" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+11" />
</Component>
<Component Id="GMT_12" Guid="*">
<File Id="GMT_12" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+12" />
</Component>
<Component Id="GMT_2" Guid="*">
<File Id="GMT_2" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+2" />
</Component>
<Component Id="GMT_3" Guid="*">
<File Id="GMT_3" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+3" />
</Component>
<Component Id="GMT_4" Guid="*">
<File Id="GMT_4" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+4" />
</Component>
<Component Id="GMT_5" Guid="*">
<File Id="GMT_5" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+5" />
</Component>
<Component Id="GMT_6" Guid="*">
<File Id="GMT_6" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+6" />
</Component>
<Component Id="GMT_7" Guid="*">
<File Id="GMT_7" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+7" />
</Component>
<Component Id="GMT_8" Guid="*">
<File Id="GMT_8" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+8" />
</Component>
<Component Id="GMT_9" Guid="*">
<File Id="GMT_9" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT+9" />
</Component>
<Component Id="GMT_0_3" Guid="*">
<File Id="GMT_0_3" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-0" />
</Component>
<Component Id="GMT_1_2" Guid="*">
<File Id="GMT_1_2" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-1" />
</Component>
<Component Id="GMT_10_1" Guid="*">
<File Id="GMT_10_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-10" />
</Component>
<Component Id="GMT_11_1" Guid="*">
<File Id="GMT_11_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-11" />
</Component>
<Component Id="GMT_12_1" Guid="*">
<File Id="GMT_12_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-12" />
</Component>
<Component Id="GMT_13" Guid="*">
<File Id="GMT_13" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-13" />
</Component>
<Component Id="GMT_14" Guid="*">
<File Id="GMT_14" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-14" />
</Component>
<Component Id="GMT_2_1" Guid="*">
<File Id="GMT_2_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-2" />
</Component>
<Component Id="GMT_3_1" Guid="*">
<File Id="GMT_3_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-3" />
</Component>
<Component Id="GMT_4_1" Guid="*">
<File Id="GMT_4_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-4" />
</Component>
<Component Id="GMT_5_1" Guid="*">
<File Id="GMT_5_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-5" />
</Component>
<Component Id="GMT_6_1" Guid="*">
<File Id="GMT_6_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-6" />
</Component>
<Component Id="GMT_7_1" Guid="*">
<File Id="GMT_7_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-7" />
</Component>
<Component Id="GMT_8_1" Guid="*">
<File Id="GMT_8_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-8" />
</Component>
<Component Id="GMT_9_1" Guid="*">
<File Id="GMT_9_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT-9" />
</Component>
<Component Id="GMT0_1" Guid="*">
<File Id="GMT0_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\GMT0" />
</Component>
<Component Id="Greenwich_1" Guid="*">
<File Id="Greenwich_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\Greenwich" />
</Component>
<Component Id="UCT_1" Guid="*">
<File Id="UCT_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\UCT" />
</Component>
<Component Id="Universal_1" Guid="*">
<File Id="Universal_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\Universal" />
</Component>
<Component Id="UTC_1" Guid="*">
<File Id="UTC_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\UTC" />
</Component>
<Component Id="Zulu_1" Guid="*">
<File Id="Zulu_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Etc\Zulu" />
</Component>
</Directory>
<Directory Id="Europe" Name="Europe">
<Component Id="Amsterdam" Guid="*">
<File Id="Amsterdam" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Amsterdam" />
</Component>
<Component Id="Andorra" Guid="*">
<File Id="Andorra" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Andorra" />
</Component>
<Component Id="Astrakhan" Guid="*">
<File Id="Astrakhan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Astrakhan" />
</Component>
<Component Id="Athens" Guid="*">
<File Id="Athens" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Athens" />
</Component>
<Component Id="Belfast" Guid="*">
<File Id="Belfast" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Belfast" />
</Component>
<Component Id="Belgrade" Guid="*">
<File Id="Belgrade" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Belgrade" />
</Component>
<Component Id="Berlin" Guid="*">
<File Id="Berlin" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Berlin" />
</Component>
<Component Id="Bratislava" Guid="*">
<File Id="Bratislava" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Bratislava" />
</Component>
<Component Id="Brussels" Guid="*">
<File Id="Brussels" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Brussels" />
</Component>
<Component Id="Bucharest" Guid="*">
<File Id="Bucharest" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Bucharest" />
</Component>
<Component Id="Budapest" Guid="*">
<File Id="Budapest" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Budapest" />
</Component>
<Component Id="Busingen" Guid="*">
<File Id="Busingen" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Busingen" />
</Component>
<Component Id="Chisinau" Guid="*">
<File Id="Chisinau" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Chisinau" />
</Component>
<Component Id="Copenhagen" Guid="*">
<File Id="Copenhagen" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Copenhagen" />
</Component>
<Component Id="Dublin" Guid="*">
<File Id="Dublin" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Dublin" />
</Component>
<Component Id="Gibraltar" Guid="*">
<File Id="Gibraltar" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Gibraltar" />
</Component>
<Component Id="Guernsey" Guid="*">
<File Id="Guernsey" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Guernsey" />
</Component>
<Component Id="Helsinki" Guid="*">
<File Id="Helsinki" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Helsinki" />
</Component>
<Component Id="Isle_of_Man" Guid="*">
<File Id="Isle_of_Man" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Isle_of_Man" />
</Component>
<Component Id="Istanbul_1" Guid="*">
<File Id="Istanbul_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Istanbul" />
</Component>
<Component Id="Jersey" Guid="*">
<File Id="Jersey" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Jersey" />
</Component>
<Component Id="Kaliningrad" Guid="*">
<File Id="Kaliningrad" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Kaliningrad" />
</Component>
<Component Id="Kiev" Guid="*">
<File Id="Kiev" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Kiev" />
</Component>
<Component Id="Kirov" Guid="*">
<File Id="Kirov" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Kirov" />
</Component>
<Component Id="Lisbon" Guid="*">
<File Id="Lisbon" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Lisbon" />
</Component>
<Component Id="Ljubljana" Guid="*">
<File Id="Ljubljana" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Ljubljana" />
</Component>
<Component Id="London" Guid="*">
<File Id="London" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\London" />
</Component>
<Component Id="Luxembourg" Guid="*">
<File Id="Luxembourg" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Luxembourg" />
</Component>
<Component Id="Madrid" Guid="*">
<File Id="Madrid" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Madrid" />
</Component>
<Component Id="Malta" Guid="*">
<File Id="Malta" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Malta" />
</Component>
<Component Id="Mariehamn" Guid="*">
<File Id="Mariehamn" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Mariehamn" />
</Component>
<Component Id="Minsk" Guid="*">
<File Id="Minsk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Minsk" />
</Component>
<Component Id="Monaco" Guid="*">
<File Id="Monaco" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Monaco" />
</Component>
<Component Id="Moscow" Guid="*">
<File Id="Moscow" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Moscow" />
</Component>
<Component Id="Nicosia_1" Guid="*">
<File Id="Nicosia_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Nicosia" />
</Component>
<Component Id="Oslo" Guid="*">
<File Id="Oslo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Oslo" />
</Component>
<Component Id="Paris" Guid="*">
<File Id="Paris" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Paris" />
</Component>
<Component Id="Podgorica" Guid="*">
<File Id="Podgorica" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Podgorica" />
</Component>
<Component Id="Prague" Guid="*">
<File Id="Prague" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Prague" />
</Component>
<Component Id="Riga" Guid="*">
<File Id="Riga" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Riga" />
</Component>
<Component Id="Rome" Guid="*">
<File Id="Rome" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Rome" />
</Component>
<Component Id="Samara" Guid="*">
<File Id="Samara" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Samara" />
</Component>
<Component Id="San_Marino" Guid="*">
<File Id="San_Marino" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\San_Marino" />
</Component>
<Component Id="Sarajevo" Guid="*">
<File Id="Sarajevo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Sarajevo" />
</Component>
<Component Id="Saratov" Guid="*">
<File Id="Saratov" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Saratov" />
</Component>
<Component Id="Simferopol" Guid="*">
<File Id="Simferopol" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Simferopol" />
</Component>
<Component Id="Skopje" Guid="*">
<File Id="Skopje" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Skopje" />
</Component>
<Component Id="Sofia" Guid="*">
<File Id="Sofia" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Sofia" />
</Component>
<Component Id="Stockholm" Guid="*">
<File Id="Stockholm" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Stockholm" />
</Component>
<Component Id="Tallinn" Guid="*">
<File Id="Tallinn" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Tallinn" />
</Component>
<Component Id="Tirane" Guid="*">
<File Id="Tirane" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Tirane" />
</Component>
<Component Id="Tiraspol" Guid="*">
<File Id="Tiraspol" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Tiraspol" />
</Component>
<Component Id="Ulyanovsk" Guid="*">
<File Id="Ulyanovsk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Ulyanovsk" />
</Component>
<Component Id="Uzhgorod" Guid="*">
<File Id="Uzhgorod" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Uzhgorod" />
</Component>
<Component Id="Vaduz" Guid="*">
<File Id="Vaduz" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Vaduz" />
</Component>
<Component Id="Vatican" Guid="*">
<File Id="Vatican" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Vatican" />
</Component>
<Component Id="Vienna" Guid="*">
<File Id="Vienna" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Vienna" />
</Component>
<Component Id="Vilnius" Guid="*">
<File Id="Vilnius" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Vilnius" />
</Component>
<Component Id="Volgograd" Guid="*">
<File Id="Volgograd" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Volgograd" />
</Component>
<Component Id="Warsaw" Guid="*">
<File Id="Warsaw" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Warsaw" />
</Component>
<Component Id="Zagreb" Guid="*">
<File Id="Zagreb" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Zagreb" />
</Component>
<Component Id="Zaporozhye" Guid="*">
<File Id="Zaporozhye" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Zaporozhye" />
</Component>
<Component Id="Zurich" Guid="*">
<File Id="Zurich" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Europe\Zurich" />
</Component>
</Directory>
<Directory Id="Indian" Name="Indian">
<Component Id="Antananarivo" Guid="*">
<File Id="Antananarivo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Indian\Antananarivo" />
</Component>
<Component Id="Chagos" Guid="*">
<File Id="Chagos" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Indian\Chagos" />
</Component>
<Component Id="Christmas" Guid="*">
<File Id="Christmas" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Indian\Christmas" />
</Component>
<Component Id="Cocos" Guid="*">
<File Id="Cocos" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Indian\Cocos" />
</Component>
<Component Id="Comoro" Guid="*">
<File Id="Comoro" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Indian\Comoro" />
</Component>
<Component Id="Kerguelen" Guid="*">
<File Id="Kerguelen" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Indian\Kerguelen" />
</Component>
<Component Id="Mahe" Guid="*">
<File Id="Mahe" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Indian\Mahe" />
</Component>
<Component Id="Maldives" Guid="*">
<File Id="Maldives" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Indian\Maldives" />
</Component>
<Component Id="Mauritius" Guid="*">
<File Id="Mauritius" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Indian\Mauritius" />
</Component>
<Component Id="Mayotte" Guid="*">
<File Id="Mayotte" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Indian\Mayotte" />
</Component>
<Component Id="Reunion" Guid="*">
<File Id="Reunion" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Indian\Reunion" />
</Component>
</Directory>
<Directory Id="Mexico" Name="Mexico">
<Component Id="BajaNorte" Guid="*">
<File Id="BajaNorte" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Mexico\BajaNorte" />
</Component>
<Component Id="BajaSur" Guid="*">
<File Id="BajaSur" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Mexico\BajaSur" />
</Component>
<Component Id="General" Guid="*">
<File Id="General" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Mexico\General" />
</Component>
</Directory>
<Directory Id="Pacific" Name="Pacific">
<Component Id="Apia" Guid="*">
<File Id="Apia" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Apia" />
</Component>
<Component Id="Auckland" Guid="*">
<File Id="Auckland" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Auckland" />
</Component>
<Component Id="Bougainville" Guid="*">
<File Id="Bougainville" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Bougainville" />
</Component>
<Component Id="Chatham" Guid="*">
<File Id="Chatham" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Chatham" />
</Component>
<Component Id="Chuuk" Guid="*">
<File Id="Chuuk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Chuuk" />
</Component>
<Component Id="Easter" Guid="*">
<File Id="Easter" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Easter" />
</Component>
<Component Id="Efate" Guid="*">
<File Id="Efate" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Efate" />
</Component>
<Component Id="Enderbury" Guid="*">
<File Id="Enderbury" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Enderbury" />
</Component>
<Component Id="Fakaofo" Guid="*">
<File Id="Fakaofo" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Fakaofo" />
</Component>
<Component Id="Fiji" Guid="*">
<File Id="Fiji" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Fiji" />
</Component>
<Component Id="Funafuti" Guid="*">
<File Id="Funafuti" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Funafuti" />
</Component>
<Component Id="Galapagos" Guid="*">
<File Id="Galapagos" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Galapagos" />
</Component>
<Component Id="Gambier" Guid="*">
<File Id="Gambier" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Gambier" />
</Component>
<Component Id="Guadalcanal" Guid="*">
<File Id="Guadalcanal" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Guadalcanal" />
</Component>
<Component Id="Guam" Guid="*">
<File Id="Guam" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Guam" />
</Component>
<Component Id="Honolulu" Guid="*">
<File Id="Honolulu" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Honolulu" />
</Component>
<Component Id="Johnston" Guid="*">
<File Id="Johnston" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Johnston" />
</Component>
<Component Id="Kiritimati" Guid="*">
<File Id="Kiritimati" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Kiritimati" />
</Component>
<Component Id="Kosrae" Guid="*">
<File Id="Kosrae" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Kosrae" />
</Component>
<Component Id="Kwajalein_1" Guid="*">
<File Id="Kwajalein_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Kwajalein" />
</Component>
<Component Id="Majuro" Guid="*">
<File Id="Majuro" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Majuro" />
</Component>
<Component Id="Marquesas" Guid="*">
<File Id="Marquesas" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Marquesas" />
</Component>
<Component Id="Midway" Guid="*">
<File Id="Midway" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Midway" />
</Component>
<Component Id="Nauru" Guid="*">
<File Id="Nauru" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Nauru" />
</Component>
<Component Id="Niue" Guid="*">
<File Id="Niue" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Niue" />
</Component>
<Component Id="Norfolk" Guid="*">
<File Id="Norfolk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Norfolk" />
</Component>
<Component Id="Noumea" Guid="*">
<File Id="Noumea" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Noumea" />
</Component>
<Component Id="Pago_Pago" Guid="*">
<File Id="Pago_Pago" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Pago_Pago" />
</Component>
<Component Id="Palau" Guid="*">
<File Id="Palau" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Palau" />
</Component>
<Component Id="Pitcairn" Guid="*">
<File Id="Pitcairn" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Pitcairn" />
</Component>
<Component Id="Pohnpei" Guid="*">
<File Id="Pohnpei" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Pohnpei" />
</Component>
<Component Id="Ponape" Guid="*">
<File Id="Ponape" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Ponape" />
</Component>
<Component Id="Port_Moresby" Guid="*">
<File Id="Port_Moresby" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Port_Moresby" />
</Component>
<Component Id="Rarotonga" Guid="*">
<File Id="Rarotonga" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Rarotonga" />
</Component>
<Component Id="Saipan" Guid="*">
<File Id="Saipan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Saipan" />
</Component>
<Component Id="Samoa" Guid="*">
<File Id="Samoa" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Samoa" />
</Component>
<Component Id="Tahiti" Guid="*">
<File Id="Tahiti" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Tahiti" />
</Component>
<Component Id="Tarawa" Guid="*">
<File Id="Tarawa" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Tarawa" />
</Component>
<Component Id="Tongatapu" Guid="*">
<File Id="Tongatapu" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Tongatapu" />
</Component>
<Component Id="Truk" Guid="*">
<File Id="Truk" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Truk" />
</Component>
<Component Id="Wake" Guid="*">
<File Id="Wake" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Wake" />
</Component>
<Component Id="Wallis" Guid="*">
<File Id="Wallis" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Wallis" />
</Component>
<Component Id="Yap" Guid="*">
<File Id="Yap" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\Pacific\Yap" />
</Component>
</Directory>
<Directory Id="SystemV" Name="SystemV">
<Component Id="AST4" Guid="*">
<File Id="AST4" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\AST4" />
</Component>
<Component Id="AST4ADT" Guid="*">
<File Id="AST4ADT" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\AST4ADT" />
</Component>
<Component Id="CST6" Guid="*">
<File Id="CST6" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\CST6" />
</Component>
<Component Id="CST6CDT_1" Guid="*">
<File Id="CST6CDT_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\CST6CDT" />
</Component>
<Component Id="EST5" Guid="*">
<File Id="EST5" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\EST5" />
</Component>
<Component Id="EST5EDT_1" Guid="*">
<File Id="EST5EDT_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\EST5EDT" />
</Component>
<Component Id="HST10" Guid="*">
<File Id="HST10" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\HST10" />
</Component>
<Component Id="MST7" Guid="*">
<File Id="MST7" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\MST7" />
</Component>
<Component Id="MST7MDT_1" Guid="*">
<File Id="MST7MDT_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\MST7MDT" />
</Component>
<Component Id="PST8" Guid="*">
<File Id="PST8" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\PST8" />
</Component>
<Component Id="PST8PDT_1" Guid="*">
<File Id="PST8PDT_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\PST8PDT" />
</Component>
<Component Id="YST9" Guid="*">
<File Id="YST9" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\YST9" />
</Component>
<Component Id="YST9YDT" Guid="*">
<File Id="YST9YDT" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\SystemV\YST9YDT" />
</Component>
</Directory>
<Directory Id="US" Name="US">
<Component Id="Alaska" Guid="*">
<File Id="Alaska" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Alaska" />
</Component>
<Component Id="Aleutian" Guid="*">
<File Id="Aleutian" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Aleutian" />
</Component>
<Component Id="Arizona" Guid="*">
<File Id="Arizona" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Arizona" />
</Component>
<Component Id="Central_1" Guid="*">
<File Id="Central_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Central" />
</Component>
<Component Id="East_Indiana" Guid="*">
<File Id="East_Indiana" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\East-Indiana" />
</Component>
<Component Id="Eastern_1" Guid="*">
<File Id="Eastern_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Eastern" />
</Component>
<Component Id="Hawaii" Guid="*">
<File Id="Hawaii" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Hawaii" />
</Component>
<Component Id="Indiana_Starke" Guid="*">
<File Id="Indiana_Starke" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Indiana-Starke" />
</Component>
<Component Id="Michigan" Guid="*">
<File Id="Michigan" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Michigan" />
</Component>
<Component Id="Mountain_1" Guid="*">
<File Id="Mountain_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Mountain" />
</Component>
<Component Id="Pacific_1" Guid="*">
<File Id="Pacific_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Pacific" />
</Component>
<Component Id="Pacific_New" Guid="*">
<File Id="Pacific_New" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Pacific-New" />
</Component>
<Component Id="Samoa_1" Guid="*">
<File Id="Samoa_1" KeyPath="yes" Source="SourceDir\lib\tcl\tzdata\US\Samoa" />
</Component>
</Directory>
</Directory>
</Directory>
<Directory Id="tk" Name="tk">
<Component Id="bgerror.tcl" Guid="*">
<File Id="bgerror.tcl" KeyPath="yes" Source="SourceDir\lib\tk\bgerror.tcl" />
</Component>
<Component Id="button.tcl" Guid="*">
<File Id="button.tcl" KeyPath="yes" Source="SourceDir\lib\tk\button.tcl" />
</Component>
<Component Id="choosedir.tcl" Guid="*">
<File Id="choosedir.tcl" KeyPath="yes" Source="SourceDir\lib\tk\choosedir.tcl" />
</Component>
<Component Id="clrpick.tcl" Guid="*">
<File Id="clrpick.tcl" KeyPath="yes" Source="SourceDir\lib\tk\clrpick.tcl" />
</Component>
<Component Id="comdlg.tcl" Guid="*">
<File Id="comdlg.tcl" KeyPath="yes" Source="SourceDir\lib\tk\comdlg.tcl" />
</Component>
<Component Id="console.tcl" Guid="*">
<File Id="console.tcl" KeyPath="yes" Source="SourceDir\lib\tk\console.tcl" />
</Component>
<Component Id="dialog.tcl" Guid="*">
<File Id="dialog.tcl" KeyPath="yes" Source="SourceDir\lib\tk\dialog.tcl" />
</Component>
<Component Id="entry.tcl" Guid="*">
<File Id="entry.tcl" KeyPath="yes" Source="SourceDir\lib\tk\entry.tcl" />
</Component>
<Component Id="focus.tcl" Guid="*">
<File Id="focus.tcl" KeyPath="yes" Source="SourceDir\lib\tk\focus.tcl" />
</Component>
<Component Id="fontchooser.tcl" Guid="*">
<File Id="fontchooser.tcl" KeyPath="yes" Source="SourceDir\lib\tk\fontchooser.tcl" />
</Component>
<Component Id="iconlist.tcl" Guid="*">
<File Id="iconlist.tcl" KeyPath="yes" Source="SourceDir\lib\tk\iconlist.tcl" />
</Component>
<Component Id="icons.tcl" Guid="*">
<File Id="icons.tcl" KeyPath="yes" Source="SourceDir\lib\tk\icons.tcl" />
</Component>
<Component Id="license.terms" Guid="*">
<File Id="license.terms" KeyPath="yes" Source="SourceDir\lib\tk\license.terms" />
</Component>
<Component Id="listbox.tcl" Guid="*">
<File Id="listbox.tcl" KeyPath="yes" Source="SourceDir\lib\tk\listbox.tcl" />
</Component>
<Component Id="megawidget.tcl" Guid="*">
<File Id="megawidget.tcl" KeyPath="yes" Source="SourceDir\lib\tk\megawidget.tcl" />
</Component>
<Component Id="menu.tcl" Guid="*">
<File Id="menu.tcl" KeyPath="yes" Source="SourceDir\lib\tk\menu.tcl" />
</Component>
<Component Id="mkpsenc.tcl" Guid="*">
<File Id="mkpsenc.tcl" KeyPath="yes" Source="SourceDir\lib\tk\mkpsenc.tcl" />
</Component>
<Component Id="msgbox.tcl" Guid="*">
<File Id="msgbox.tcl" KeyPath="yes" Source="SourceDir\lib\tk\msgbox.tcl" />
</Component>
<Component Id="obsolete.tcl" Guid="*">
<File Id="obsolete.tcl" KeyPath="yes" Source="SourceDir\lib\tk\obsolete.tcl" />
</Component>
<Component Id="optMenu.tcl" Guid="*">
<File Id="optMenu.tcl" KeyPath="yes" Source="SourceDir\lib\tk\optMenu.tcl" />
</Component>
<Component Id="palette.tcl" Guid="*">
<File Id="palette.tcl" KeyPath="yes" Source="SourceDir\lib\tk\palette.tcl" />
</Component>
<Component Id="panedwindow.tcl" Guid="*">
<File Id="panedwindow.tcl" KeyPath="yes" Source="SourceDir\lib\tk\panedwindow.tcl" />
</Component>
<Component Id="pkgIndex.tcl_2" Guid="*">
<File Id="pkgIndex.tcl_2" KeyPath="yes" Source="SourceDir\lib\tk\pkgIndex.tcl" />
</Component>
<Component Id="safetk.tcl" Guid="*">
<File Id="safetk.tcl" KeyPath="yes" Source="SourceDir\lib\tk\safetk.tcl" />
</Component>
<Component Id="scale.tcl" Guid="*">
<File Id="scale.tcl" KeyPath="yes" Source="SourceDir\lib\tk\scale.tcl" />
</Component>
<Component Id="scrlbar.tcl" Guid="*">
<File Id="scrlbar.tcl" KeyPath="yes" Source="SourceDir\lib\tk\scrlbar.tcl" />
</Component>
<Component Id="spinbox.tcl" Guid="*">
<File Id="spinbox.tcl" KeyPath="yes" Source="SourceDir\lib\tk\spinbox.tcl" />
</Component>
<Component Id="tclIndex_1" Guid="*">
<File Id="tclIndex_1" KeyPath="yes" Source="SourceDir\lib\tk\tclIndex" />
</Component>
<Component Id="tearoff.tcl" Guid="*">
<File Id="tearoff.tcl" KeyPath="yes" Source="SourceDir\lib\tk\tearoff.tcl" />
</Component>
<Component Id="text.tcl" Guid="*">
<File Id="text.tcl" KeyPath="yes" Source="SourceDir\lib\tk\text.tcl" />
</Component>
<Component Id="tk.tcl" Guid="*">
<File Id="tk.tcl" KeyPath="yes" Source="SourceDir\lib\tk\tk.tcl" />
</Component>
<Component Id="tkfbox.tcl" Guid="*">
<File Id="tkfbox.tcl" KeyPath="yes" Source="SourceDir\lib\tk\tkfbox.tcl" />
</Component>
<Component Id="unsupported.tcl" Guid="*">
<File Id="unsupported.tcl" KeyPath="yes" Source="SourceDir\lib\tk\unsupported.tcl" />
</Component>
<Component Id="xmfbox.tcl" Guid="*">
<File Id="xmfbox.tcl" KeyPath="yes" Source="SourceDir\lib\tk\xmfbox.tcl" />
</Component>
<Directory Id="ttk" Name="ttk">
<Component Id="altTheme.tcl" Guid="*">
<File Id="altTheme.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\altTheme.tcl" />
</Component>
<Component Id="aquaTheme.tcl" Guid="*">
<File Id="aquaTheme.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\aquaTheme.tcl" />
</Component>
<Component Id="button.tcl_2" Guid="*">
<File Id="button.tcl_2" KeyPath="yes" Source="SourceDir\lib\tk\ttk\button.tcl" />
</Component>
<Component Id="clamTheme.tcl" Guid="*">
<File Id="clamTheme.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\clamTheme.tcl" />
</Component>
<Component Id="classicTheme.tcl" Guid="*">
<File Id="classicTheme.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\classicTheme.tcl" />
</Component>
<Component Id="combobox.tcl" Guid="*">
<File Id="combobox.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\combobox.tcl" />
</Component>
<Component Id="cursors.tcl" Guid="*">
<File Id="cursors.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\cursors.tcl" />
</Component>
<Component Id="defaults.tcl" Guid="*">
<File Id="defaults.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\defaults.tcl" />
</Component>
<Component Id="entry.tcl_1" Guid="*">
<File Id="entry.tcl_1" KeyPath="yes" Source="SourceDir\lib\tk\ttk\entry.tcl" />
</Component>
<Component Id="fonts.tcl" Guid="*">
<File Id="fonts.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\fonts.tcl" />
</Component>
<Component Id="menubutton.tcl" Guid="*">
<File Id="menubutton.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\menubutton.tcl" />
</Component>
<Component Id="notebook.tcl" Guid="*">
<File Id="notebook.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\notebook.tcl" />
</Component>
<Component Id="panedwindow.tcl_1" Guid="*">
<File Id="panedwindow.tcl_1" KeyPath="yes" Source="SourceDir\lib\tk\ttk\panedwindow.tcl" />
</Component>
<Component Id="progress.tcl" Guid="*">
<File Id="progress.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\progress.tcl" />
</Component>
<Component Id="scale.tcl_1" Guid="*">
<File Id="scale.tcl_1" KeyPath="yes" Source="SourceDir\lib\tk\ttk\scale.tcl" />
</Component>
<Component Id="scrollbar.tcl" Guid="*">
<File Id="scrollbar.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\scrollbar.tcl" />
</Component>
<Component Id="sizegrip.tcl" Guid="*">
<File Id="sizegrip.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\sizegrip.tcl" />
</Component>
<Component Id="spinbox.tcl_1" Guid="*">
<File Id="spinbox.tcl_1" KeyPath="yes" Source="SourceDir\lib\tk\ttk\spinbox.tcl" />
</Component>
<Component Id="treeview.tcl" Guid="*">
<File Id="treeview.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\treeview.tcl" />
</Component>
<Component Id="ttk.tcl" Guid="*">
<File Id="ttk.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\ttk.tcl" />
</Component>
<Component Id="utils.tcl" Guid="*">
<File Id="utils.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\utils.tcl" />
</Component>
<Component Id="vistaTheme.tcl" Guid="*">
<File Id="vistaTheme.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\vistaTheme.tcl" />
</Component>
<Component Id="winTheme.tcl" Guid="*">
<File Id="winTheme.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\winTheme.tcl" />
</Component>
<Component Id="xpTheme.tcl" Guid="*">
<File Id="xpTheme.tcl" KeyPath="yes" Source="SourceDir\lib\tk\ttk\xpTheme.tcl" />
</Component>
</Directory>
</Directory>
</Directory>
<Directory Id="plugins" Name="plugins">
<Component Id="coriolis.py" Guid="*">
<File Id="coriolis.py" KeyPath="yes" Source="SourceDir\plugins\coriolis.py" />
</Component>
<Component Id="eddb.py" Guid="*">
<File Id="eddb.py" KeyPath="yes" Source="SourceDir\plugins\eddb.py" />
</Component>
<Component Id="eddn.py" Guid="*">
<File Id="eddn.py" KeyPath="yes" Source="SourceDir\plugins\eddn.py" />
</Component>
<Component Id="edsm.py" Guid="*">
<File Id="edsm.py" KeyPath="yes" Source="SourceDir\plugins\edsm.py" />
</Component>
<Component Id="edsy.py" Guid="*">
<File Id="edsy.py" KeyPath="yes" Source="SourceDir\plugins\edsy.py" />
</Component>
<Component Id="inara.py" Guid="*">
<File Id="inara.py" KeyPath="yes" Source="SourceDir\plugins\inara.py" />
</Component>
</Directory>
</Directory>
</Directory>
<Directory Id="ProgramMenuFolder" Name="Programs">
</Directory>
</Directory>
<Feature Id='Complete' Level='1'>
<ComponentRef Id="RegistryEntries" />
<ComponentRef Id="MainExecutable" />
<ComponentRef Id="cacert.pem" />
<ComponentRef Id="commodity.csv" />
<ComponentRef Id="EDMarketConnector.ico" />
<ComponentRef Id="EDMarketConnector.VisualElementsManifest.xml" />
<ComponentRef Id="EDMC.exe" />
<ComponentRef Id="EUROCAPS.TTF" />
<ComponentRef Id="library.zip" />
<ComponentRef Id="libcrypto_1_1.dll" />
<ComponentRef Id="libssl_1_1.dll" />
<ComponentRef Id="modules.p" />
<ComponentRef Id="pyexpat.pyd" />
<ComponentRef Id="python37.dll" />
<ComponentRef Id="rare_commodity.csv" />
<ComponentRef Id="select.pyd" />
<ComponentRef Id="ships.p" />
<ComponentRef Id="snd_bad.wav" />
<ComponentRef Id="snd_good.wav" />
<ComponentRef Id="stations.p" />
<ComponentRef Id="systems.p" />
<ComponentRef Id="tcl86t.dll" />
<ComponentRef Id="tk86t.dll" />
<ComponentRef Id="unicodedata.pyd" />
<ComponentRef Id="winsound.pyd" />
<ComponentRef Id="WinSparkle.dll" />
<ComponentRef Id="_bz2.pyd" />
<ComponentRef Id="_ctypes.pyd" />
<ComponentRef Id="_decimal.pyd" />
<ComponentRef Id="_elementtree.pyd" />
<ComponentRef Id="_hashlib.pyd" />
<ComponentRef Id="_lzma.pyd" />
<ComponentRef Id="_multiprocessing.pyd" />
<ComponentRef Id="_queue.pyd" />
<ComponentRef Id="_socket.pyd" />
<ComponentRef Id="sqlite3.dll" />
<ComponentRef Id="_sqlite3.pyd" />
<ComponentRef Id="_ssl.pyd" />
<ComponentRef Id="_testcapi.pyd" />
<ComponentRef Id="_tkinter.pyd" />
<ComponentRef Id="cs.strings" />
<ComponentRef Id="de.strings" />
<ComponentRef Id="es.strings" />
<ComponentRef Id="fi.strings" />
<ComponentRef Id="fr.strings" />
<ComponentRef Id="hu.strings" />
<ComponentRef Id="it.strings" />
<ComponentRef Id="ja.strings" />
<ComponentRef Id="lv.strings" />
<ComponentRef Id="nl.strings" />
<ComponentRef Id="pl.strings" />
<ComponentRef Id="pt_BR.strings" />
<ComponentRef Id="pt_PT.strings" />
<ComponentRef Id="ru.strings" />
<ComponentRef Id="sr_Latn.strings" />
<ComponentRef Id="uk.strings" />
<ComponentRef Id="zh_Hans.strings" />
<ComponentRef Id="auto.tcl" />
<ComponentRef Id="clock.tcl" />
<ComponentRef Id="history.tcl" />
<ComponentRef Id="init.tcl" />
<ComponentRef Id="package.tcl" />
<ComponentRef Id="parray.tcl" />
<ComponentRef Id="safe.tcl" />
<ComponentRef Id="tclIndex" />
<ComponentRef Id="tm.tcl" />
<ComponentRef Id="word.tcl" />
<ComponentRef Id="http.tcl" />
<ComponentRef Id="pkgIndex.tcl" />
<ComponentRef Id="optparse.tcl" />
<ComponentRef Id="pkgIndex.tcl_1" />
<ComponentRef Id="CET" />
<ComponentRef Id="CST6CDT" />
<ComponentRef Id="Cuba" />
<ComponentRef Id="EET" />
<ComponentRef Id="Egypt" />
<ComponentRef Id="Eire" />
<ComponentRef Id="EST" />
<ComponentRef Id="EST5EDT" />
<ComponentRef Id="GB" />
<ComponentRef Id="GB_Eire" />
<ComponentRef Id="GMT" />
<ComponentRef Id="GMT_0" />
<ComponentRef Id="GMT_0_1" />
<ComponentRef Id="GMT0" />
<ComponentRef Id="Greenwich" />
<ComponentRef Id="Hongkong" />
<ComponentRef Id="HST" />
<ComponentRef Id="Iceland" />
<ComponentRef Id="Iran" />
<ComponentRef Id="Israel" />
<ComponentRef Id="Jamaica" />
<ComponentRef Id="Japan" />
<ComponentRef Id="Kwajalein" />
<ComponentRef Id="Libya" />
<ComponentRef Id="MET" />
<ComponentRef Id="MST" />
<ComponentRef Id="MST7MDT" />
<ComponentRef Id="Navajo" />
<ComponentRef Id="NZ" />
<ComponentRef Id="NZ_CHAT" />
<ComponentRef Id="Poland" />
<ComponentRef Id="Portugal" />
<ComponentRef Id="PRC" />
<ComponentRef Id="PST8PDT" />
<ComponentRef Id="ROC" />
<ComponentRef Id="ROK" />
<ComponentRef Id="Singapore" />
<ComponentRef Id="Turkey" />
<ComponentRef Id="UCT" />
<ComponentRef Id="Universal" />
<ComponentRef Id="UTC" />
<ComponentRef Id="W_SU" />
<ComponentRef Id="WET" />
<ComponentRef Id="Zulu" />
<ComponentRef Id="Abidjan" />
<ComponentRef Id="Accra" />
<ComponentRef Id="Addis_Ababa" />
<ComponentRef Id="Algiers" />
<ComponentRef Id="Asmara" />
<ComponentRef Id="Asmera" />
<ComponentRef Id="Bamako" />
<ComponentRef Id="Bangui" />
<ComponentRef Id="Banjul" />
<ComponentRef Id="Bissau" />
<ComponentRef Id="Blantyre" />
<ComponentRef Id="Brazzaville" />
<ComponentRef Id="Bujumbura" />
<ComponentRef Id="Cairo" />
<ComponentRef Id="Casablanca" />
<ComponentRef Id="Ceuta" />
<ComponentRef Id="Conakry" />
<ComponentRef Id="Dakar" />
<ComponentRef Id="Dar_es_Salaam" />
<ComponentRef Id="Djibouti" />
<ComponentRef Id="Douala" />
<ComponentRef Id="El_Aaiun" />
<ComponentRef Id="Freetown" />
<ComponentRef Id="Gaborone" />
<ComponentRef Id="Harare" />
<ComponentRef Id="Johannesburg" />
<ComponentRef Id="Juba" />
<ComponentRef Id="Kampala" />
<ComponentRef Id="Khartoum" />
<ComponentRef Id="Kigali" />
<ComponentRef Id="Kinshasa" />
<ComponentRef Id="Lagos" />
<ComponentRef Id="Libreville" />
<ComponentRef Id="Lome" />
<ComponentRef Id="Luanda" />
<ComponentRef Id="Lubumbashi" />
<ComponentRef Id="Lusaka" />
<ComponentRef Id="Malabo" />
<ComponentRef Id="Maputo" />
<ComponentRef Id="Maseru" />
<ComponentRef Id="Mbabane" />
<ComponentRef Id="Mogadishu" />
<ComponentRef Id="Monrovia" />
<ComponentRef Id="Nairobi" />
<ComponentRef Id="Ndjamena" />
<ComponentRef Id="Niamey" />
<ComponentRef Id="Nouakchott" />
<ComponentRef Id="Ouagadougou" />
<ComponentRef Id="Porto_Novo" />
<ComponentRef Id="Sao_Tome" />
<ComponentRef Id="Timbuktu" />
<ComponentRef Id="Tripoli" />
<ComponentRef Id="Tunis" />
<ComponentRef Id="Windhoek" />
<ComponentRef Id="Adak" />
<ComponentRef Id="Anchorage" />
<ComponentRef Id="Anguilla" />
<ComponentRef Id="Antigua" />
<ComponentRef Id="Araguaina" />
<ComponentRef Id="Aruba" />
<ComponentRef Id="Asuncion" />
<ComponentRef Id="Atikokan" />
<ComponentRef Id="Atka" />
<ComponentRef Id="Bahia" />
<ComponentRef Id="Bahia_Banderas" />
<ComponentRef Id="Barbados" />
<ComponentRef Id="Belem" />
<ComponentRef Id="Belize" />
<ComponentRef Id="Blanc_Sablon" />
<ComponentRef Id="Boa_Vista" />
<ComponentRef Id="Bogota" />
<ComponentRef Id="Boise" />
<ComponentRef Id="Buenos_Aires" />
<ComponentRef Id="Cambridge_Bay" />
<ComponentRef Id="Campo_Grande" />
<ComponentRef Id="Cancun" />
<ComponentRef Id="Caracas" />
<ComponentRef Id="Catamarca" />
<ComponentRef Id="Cayenne" />
<ComponentRef Id="Cayman" />
<ComponentRef Id="Chicago" />
<ComponentRef Id="Chihuahua" />
<ComponentRef Id="Coral_Harbour" />
<ComponentRef Id="Cordoba" />
<ComponentRef Id="Costa_Rica" />
<ComponentRef Id="Creston" />
<ComponentRef Id="Cuiaba" />
<ComponentRef Id="Curacao" />
<ComponentRef Id="Danmarkshavn" />
<ComponentRef Id="Dawson" />
<ComponentRef Id="Dawson_Creek" />
<ComponentRef Id="Denver" />
<ComponentRef Id="Detroit" />
<ComponentRef Id="Dominica" />
<ComponentRef Id="Edmonton" />
<ComponentRef Id="Eirunepe" />
<ComponentRef Id="El_Salvador" />
<ComponentRef Id="Ensenada" />
<ComponentRef Id="Fortaleza" />
<ComponentRef Id="Fort_Nelson" />
<ComponentRef Id="Fort_Wayne" />
<ComponentRef Id="Glace_Bay" />
<ComponentRef Id="Godthab" />
<ComponentRef Id="Goose_Bay" />
<ComponentRef Id="Grand_Turk" />
<ComponentRef Id="Grenada" />
<ComponentRef Id="Guadeloupe" />
<ComponentRef Id="Guatemala" />
<ComponentRef Id="Guayaquil" />
<ComponentRef Id="Guyana" />
<ComponentRef Id="Halifax" />
<ComponentRef Id="Havana" />
<ComponentRef Id="Hermosillo" />
<ComponentRef Id="Indianapolis" />
<ComponentRef Id="Inuvik" />
<ComponentRef Id="Iqaluit" />
<ComponentRef Id="Jamaica_1" />
<ComponentRef Id="Jujuy" />
<ComponentRef Id="Juneau" />
<ComponentRef Id="Knox_IN" />
<ComponentRef Id="Kralendijk" />
<ComponentRef Id="La_Paz" />
<ComponentRef Id="Lima" />
<ComponentRef Id="Los_Angeles" />
<ComponentRef Id="Louisville" />
<ComponentRef Id="Lower_Princes" />
<ComponentRef Id="Maceio" />
<ComponentRef Id="Managua" />
<ComponentRef Id="Manaus" />
<ComponentRef Id="Marigot" />
<ComponentRef Id="Martinique" />
<ComponentRef Id="Matamoros" />
<ComponentRef Id="Mazatlan" />
<ComponentRef Id="Mendoza" />
<ComponentRef Id="Menominee" />
<ComponentRef Id="Merida" />
<ComponentRef Id="Metlakatla" />
<ComponentRef Id="Mexico_City" />
<ComponentRef Id="Miquelon" />
<ComponentRef Id="Moncton" />
<ComponentRef Id="Monterrey" />
<ComponentRef Id="Montevideo" />
<ComponentRef Id="Montreal" />
<ComponentRef Id="Montserrat" />
<ComponentRef Id="Nassau" />
<ComponentRef Id="New_York" />
<ComponentRef Id="Nipigon" />
<ComponentRef Id="Nome" />
<ComponentRef Id="Noronha" />
<ComponentRef Id="Ojinaga" />
<ComponentRef Id="Panama" />
<ComponentRef Id="Pangnirtung" />
<ComponentRef Id="Paramaribo" />
<ComponentRef Id="Phoenix" />
<ComponentRef Id="Port_au_Prince" />
<ComponentRef Id="Porto_Acre" />
<ComponentRef Id="Porto_Velho" />
<ComponentRef Id="Port_of_Spain" />
<ComponentRef Id="Puerto_Rico" />
<ComponentRef Id="Punta_Arenas" />
<ComponentRef Id="Rainy_River" />
<ComponentRef Id="Rankin_Inlet" />
<ComponentRef Id="Recife" />
<ComponentRef Id="Regina" />
<ComponentRef Id="Resolute" />
<ComponentRef Id="Rio_Branco" />
<ComponentRef Id="Rosario" />
<ComponentRef Id="Santarem" />
<ComponentRef Id="Santa_Isabel" />
<ComponentRef Id="Santiago" />
<ComponentRef Id="Santo_Domingo" />
<ComponentRef Id="Sao_Paulo" />
<ComponentRef Id="Scoresbysund" />
<ComponentRef Id="Shiprock" />
<ComponentRef Id="Sitka" />
<ComponentRef Id="St_Barthelemy" />
<ComponentRef Id="St_Johns" />
<ComponentRef Id="St_Kitts" />
<ComponentRef Id="St_Lucia" />
<ComponentRef Id="St_Thomas" />
<ComponentRef Id="St_Vincent" />
<ComponentRef Id="Swift_Current" />
<ComponentRef Id="Tegucigalpa" />
<ComponentRef Id="Thule" />
<ComponentRef Id="Thunder_Bay" />
<ComponentRef Id="Tijuana" />
<ComponentRef Id="Toronto" />
<ComponentRef Id="Tortola" />
<ComponentRef Id="Vancouver" />
<ComponentRef Id="Virgin" />
<ComponentRef Id="Whitehorse" />
<ComponentRef Id="Winnipeg" />
<ComponentRef Id="Yakutat" />
<ComponentRef Id="Yellowknife" />
<ComponentRef Id="Buenos_Aires_1" />
<ComponentRef Id="Catamarca_1" />
<ComponentRef Id="ComodRivadavia" />
<ComponentRef Id="Cordoba_1" />
<ComponentRef Id="Jujuy_1" />
<ComponentRef Id="La_Rioja" />
<ComponentRef Id="Mendoza_1" />
<ComponentRef Id="Rio_Gallegos" />
<ComponentRef Id="Salta" />
<ComponentRef Id="San_Juan" />
<ComponentRef Id="San_Luis" />
<ComponentRef Id="Tucuman" />
<ComponentRef Id="Ushuaia" />
<ComponentRef Id="Indianapolis_1" />
<ComponentRef Id="Knox" />
<ComponentRef Id="Marengo" />
<ComponentRef Id="Petersburg" />
<ComponentRef Id="Tell_City" />
<ComponentRef Id="Vevay" />
<ComponentRef Id="Vincennes" />
<ComponentRef Id="Winamac" />
<ComponentRef Id="Louisville_1" />
<ComponentRef Id="Monticello" />
<ComponentRef Id="Beulah" />
<ComponentRef Id="Center" />
<ComponentRef Id="New_Salem" />
<ComponentRef Id="Casey" />
<ComponentRef Id="Davis" />
<ComponentRef Id="DumontDUrville" />
<ComponentRef Id="Macquarie" />
<ComponentRef Id="Mawson" />
<ComponentRef Id="McMurdo" />
<ComponentRef Id="Palmer" />
<ComponentRef Id="Rothera" />
<ComponentRef Id="South_Pole" />
<ComponentRef Id="Syowa" />
<ComponentRef Id="Troll" />
<ComponentRef Id="Vostok" />
<ComponentRef Id="Longyearbyen" />
<ComponentRef Id="Aden" />
<ComponentRef Id="Almaty" />
<ComponentRef Id="Amman" />
<ComponentRef Id="Anadyr" />
<ComponentRef Id="Aqtau" />
<ComponentRef Id="Aqtobe" />
<ComponentRef Id="Ashgabat" />
<ComponentRef Id="Ashkhabad" />
<ComponentRef Id="Atyrau" />
<ComponentRef Id="Baghdad" />
<ComponentRef Id="Bahrain" />
<ComponentRef Id="Baku" />
<ComponentRef Id="Bangkok" />
<ComponentRef Id="Barnaul" />
<ComponentRef Id="Beirut" />
<ComponentRef Id="Bishkek" />
<ComponentRef Id="Brunei" />
<ComponentRef Id="Calcutta" />
<ComponentRef Id="Chita" />
<ComponentRef Id="Choibalsan" />
<ComponentRef Id="Chongqing" />
<ComponentRef Id="Chungking" />
<ComponentRef Id="Colombo" />
<ComponentRef Id="Dacca" />
<ComponentRef Id="Damascus" />
<ComponentRef Id="Dhaka" />
<ComponentRef Id="Dili" />
<ComponentRef Id="Dubai" />
<ComponentRef Id="Dushanbe" />
<ComponentRef Id="Famagusta" />
<ComponentRef Id="Gaza" />
<ComponentRef Id="Harbin" />
<ComponentRef Id="Hebron" />
<ComponentRef Id="Hong_Kong" />
<ComponentRef Id="Hovd" />
<ComponentRef Id="Ho_Chi_Minh" />
<ComponentRef Id="Irkutsk" />
<ComponentRef Id="Istanbul" />
<ComponentRef Id="Jakarta" />
<ComponentRef Id="Jayapura" />
<ComponentRef Id="Jerusalem" />
<ComponentRef Id="Kabul" />
<ComponentRef Id="Kamchatka" />
<ComponentRef Id="Karachi" />
<ComponentRef Id="Kashgar" />
<ComponentRef Id="Kathmandu" />
<ComponentRef Id="Katmandu" />
<ComponentRef Id="Khandyga" />
<ComponentRef Id="Kolkata" />
<ComponentRef Id="Krasnoyarsk" />
<ComponentRef Id="Kuala_Lumpur" />
<ComponentRef Id="Kuching" />
<ComponentRef Id="Kuwait" />
<ComponentRef Id="Macao" />
<ComponentRef Id="Macau" />
<ComponentRef Id="Magadan" />
<ComponentRef Id="Makassar" />
<ComponentRef Id="Manila" />
<ComponentRef Id="Muscat" />
<ComponentRef Id="Nicosia" />
<ComponentRef Id="Novokuznetsk" />
<ComponentRef Id="Novosibirsk" />
<ComponentRef Id="Omsk" />
<ComponentRef Id="Oral" />
<ComponentRef Id="Phnom_Penh" />
<ComponentRef Id="Pontianak" />
<ComponentRef Id="Pyongyang" />
<ComponentRef Id="Qatar" />
<ComponentRef Id="Qyzylorda" />
<ComponentRef Id="Rangoon" />
<ComponentRef Id="Riyadh" />
<ComponentRef Id="Saigon" />
<ComponentRef Id="Sakhalin" />
<ComponentRef Id="Samarkand" />
<ComponentRef Id="Seoul" />
<ComponentRef Id="Shanghai" />
<ComponentRef Id="Singapore_1" />
<ComponentRef Id="Srednekolymsk" />
<ComponentRef Id="Taipei" />
<ComponentRef Id="Tashkent" />
<ComponentRef Id="Tbilisi" />
<ComponentRef Id="Tehran" />
<ComponentRef Id="Tel_Aviv" />
<ComponentRef Id="Thimbu" />
<ComponentRef Id="Thimphu" />
<ComponentRef Id="Tokyo" />
<ComponentRef Id="Tomsk" />
<ComponentRef Id="Ujung_Pandang" />
<ComponentRef Id="Ulaanbaatar" />
<ComponentRef Id="Ulan_Bator" />
<ComponentRef Id="Urumqi" />
<ComponentRef Id="Ust_Nera" />
<ComponentRef Id="Vientiane" />
<ComponentRef Id="Vladivostok" />
<ComponentRef Id="Yakutsk" />
<ComponentRef Id="Yangon" />
<ComponentRef Id="Yekaterinburg" />
<ComponentRef Id="Yerevan" />
<ComponentRef Id="Azores" />
<ComponentRef Id="Bermuda" />
<ComponentRef Id="Canary" />
<ComponentRef Id="Cape_Verde" />
<ComponentRef Id="Faeroe" />
<ComponentRef Id="Faroe" />
<ComponentRef Id="Jan_Mayen" />
<ComponentRef Id="Madeira" />
<ComponentRef Id="Reykjavik" />
<ComponentRef Id="South_Georgia" />
<ComponentRef Id="Stanley" />
<ComponentRef Id="St_Helena" />
<ComponentRef Id="ACT" />
<ComponentRef Id="Adelaide" />
<ComponentRef Id="Brisbane" />
<ComponentRef Id="Broken_Hill" />
<ComponentRef Id="Canberra" />
<ComponentRef Id="Currie" />
<ComponentRef Id="Darwin" />
<ComponentRef Id="Eucla" />
<ComponentRef Id="Hobart" />
<ComponentRef Id="LHI" />
<ComponentRef Id="Lindeman" />
<ComponentRef Id="Lord_Howe" />
<ComponentRef Id="Melbourne" />
<ComponentRef Id="North" />
<ComponentRef Id="NSW" />
<ComponentRef Id="Perth" />
<ComponentRef Id="Queensland" />
<ComponentRef Id="South" />
<ComponentRef Id="Sydney" />
<ComponentRef Id="Tasmania" />
<ComponentRef Id="Victoria" />
<ComponentRef Id="West" />
<ComponentRef Id="Yancowinna" />
<ComponentRef Id="Acre" />
<ComponentRef Id="DeNoronha" />
<ComponentRef Id="East" />
<ComponentRef Id="West_1" />
<ComponentRef Id="Atlantic" />
<ComponentRef Id="Central" />
<ComponentRef Id="East_Saskatchewan" />
<ComponentRef Id="Eastern" />
<ComponentRef Id="Mountain" />
<ComponentRef Id="Newfoundland" />
<ComponentRef Id="Pacific" />
<ComponentRef Id="Saskatchewan" />
<ComponentRef Id="Yukon" />
<ComponentRef Id="Continental" />
<ComponentRef Id="EasterIsland" />
<ComponentRef Id="GMT_1" />
<ComponentRef Id="GMT_0_2" />
<ComponentRef Id="GMT_1_1" />
<ComponentRef Id="GMT_10" />
<ComponentRef Id="GMT_11" />
<ComponentRef Id="GMT_12" />
<ComponentRef Id="GMT_2" />
<ComponentRef Id="GMT_3" />
<ComponentRef Id="GMT_4" />
<ComponentRef Id="GMT_5" />
<ComponentRef Id="GMT_6" />
<ComponentRef Id="GMT_7" />
<ComponentRef Id="GMT_8" />
<ComponentRef Id="GMT_9" />
<ComponentRef Id="GMT_0_3" />
<ComponentRef Id="GMT_1_2" />
<ComponentRef Id="GMT_10_1" />
<ComponentRef Id="GMT_11_1" />
<ComponentRef Id="GMT_12_1" />
<ComponentRef Id="GMT_13" />
<ComponentRef Id="GMT_14" />
<ComponentRef Id="GMT_2_1" />
<ComponentRef Id="GMT_3_1" />
<ComponentRef Id="GMT_4_1" />
<ComponentRef Id="GMT_5_1" />
<ComponentRef Id="GMT_6_1" />
<ComponentRef Id="GMT_7_1" />
<ComponentRef Id="GMT_8_1" />
<ComponentRef Id="GMT_9_1" />
<ComponentRef Id="GMT0_1" />
<ComponentRef Id="Greenwich_1" />
<ComponentRef Id="UCT_1" />
<ComponentRef Id="Universal_1" />
<ComponentRef Id="UTC_1" />
<ComponentRef Id="Zulu_1" />
<ComponentRef Id="Amsterdam" />
<ComponentRef Id="Andorra" />
<ComponentRef Id="Astrakhan" />
<ComponentRef Id="Athens" />
<ComponentRef Id="Belfast" />
<ComponentRef Id="Belgrade" />
<ComponentRef Id="Berlin" />
<ComponentRef Id="Bratislava" />
<ComponentRef Id="Brussels" />
<ComponentRef Id="Bucharest" />
<ComponentRef Id="Budapest" />
<ComponentRef Id="Busingen" />
<ComponentRef Id="Chisinau" />
<ComponentRef Id="Copenhagen" />
<ComponentRef Id="Dublin" />
<ComponentRef Id="Gibraltar" />
<ComponentRef Id="Guernsey" />
<ComponentRef Id="Helsinki" />
<ComponentRef Id="Isle_of_Man" />
<ComponentRef Id="Istanbul_1" />
<ComponentRef Id="Jersey" />
<ComponentRef Id="Kaliningrad" />
<ComponentRef Id="Kiev" />
<ComponentRef Id="Kirov" />
<ComponentRef Id="Lisbon" />
<ComponentRef Id="Ljubljana" />
<ComponentRef Id="London" />
<ComponentRef Id="Luxembourg" />
<ComponentRef Id="Madrid" />
<ComponentRef Id="Malta" />
<ComponentRef Id="Mariehamn" />
<ComponentRef Id="Minsk" />
<ComponentRef Id="Monaco" />
<ComponentRef Id="Moscow" />
<ComponentRef Id="Nicosia_1" />
<ComponentRef Id="Oslo" />
<ComponentRef Id="Paris" />
<ComponentRef Id="Podgorica" />
<ComponentRef Id="Prague" />
<ComponentRef Id="Riga" />
<ComponentRef Id="Rome" />
<ComponentRef Id="Samara" />
<ComponentRef Id="San_Marino" />
<ComponentRef Id="Sarajevo" />
<ComponentRef Id="Saratov" />
<ComponentRef Id="Simferopol" />
<ComponentRef Id="Skopje" />
<ComponentRef Id="Sofia" />
<ComponentRef Id="Stockholm" />
<ComponentRef Id="Tallinn" />
<ComponentRef Id="Tirane" />
<ComponentRef Id="Tiraspol" />
<ComponentRef Id="Ulyanovsk" />
<ComponentRef Id="Uzhgorod" />
<ComponentRef Id="Vaduz" />
<ComponentRef Id="Vatican" />
<ComponentRef Id="Vienna" />
<ComponentRef Id="Vilnius" />
<ComponentRef Id="Volgograd" />
<ComponentRef Id="Warsaw" />
<ComponentRef Id="Zagreb" />
<ComponentRef Id="Zaporozhye" />
<ComponentRef Id="Zurich" />
<ComponentRef Id="Antananarivo" />
<ComponentRef Id="Chagos" />
<ComponentRef Id="Christmas" />
<ComponentRef Id="Cocos" />
<ComponentRef Id="Comoro" />
<ComponentRef Id="Kerguelen" />
<ComponentRef Id="Mahe" />
<ComponentRef Id="Maldives" />
<ComponentRef Id="Mauritius" />
<ComponentRef Id="Mayotte" />
<ComponentRef Id="Reunion" />
<ComponentRef Id="BajaNorte" />
<ComponentRef Id="BajaSur" />
<ComponentRef Id="General" />
<ComponentRef Id="Apia" />
<ComponentRef Id="Auckland" />
<ComponentRef Id="Bougainville" />
<ComponentRef Id="Chatham" />
<ComponentRef Id="Chuuk" />
<ComponentRef Id="Easter" />
<ComponentRef Id="Efate" />
<ComponentRef Id="Enderbury" />
<ComponentRef Id="Fakaofo" />
<ComponentRef Id="Fiji" />
<ComponentRef Id="Funafuti" />
<ComponentRef Id="Galapagos" />
<ComponentRef Id="Gambier" />
<ComponentRef Id="Guadalcanal" />
<ComponentRef Id="Guam" />
<ComponentRef Id="Honolulu" />
<ComponentRef Id="Johnston" />
<ComponentRef Id="Kiritimati" />
<ComponentRef Id="Kosrae" />
<ComponentRef Id="Kwajalein_1" />
<ComponentRef Id="Majuro" />
<ComponentRef Id="Marquesas" />
<ComponentRef Id="Midway" />
<ComponentRef Id="Nauru" />
<ComponentRef Id="Niue" />
<ComponentRef Id="Norfolk" />
<ComponentRef Id="Noumea" />
<ComponentRef Id="Pago_Pago" />
<ComponentRef Id="Palau" />
<ComponentRef Id="Pitcairn" />
<ComponentRef Id="Pohnpei" />
<ComponentRef Id="Ponape" />
<ComponentRef Id="Port_Moresby" />
<ComponentRef Id="Rarotonga" />
<ComponentRef Id="Saipan" />
<ComponentRef Id="Samoa" />
<ComponentRef Id="Tahiti" />
<ComponentRef Id="Tarawa" />
<ComponentRef Id="Tongatapu" />
<ComponentRef Id="Truk" />
<ComponentRef Id="Wake" />
<ComponentRef Id="Wallis" />
<ComponentRef Id="Yap" />
<ComponentRef Id="AST4" />
<ComponentRef Id="AST4ADT" />
<ComponentRef Id="CST6" />
<ComponentRef Id="CST6CDT_1" />
<ComponentRef Id="EST5" />
<ComponentRef Id="EST5EDT_1" />
<ComponentRef Id="HST10" />
<ComponentRef Id="MST7" />
<ComponentRef Id="MST7MDT_1" />
<ComponentRef Id="PST8" />
<ComponentRef Id="PST8PDT_1" />
<ComponentRef Id="YST9" />
<ComponentRef Id="YST9YDT" />
<ComponentRef Id="Alaska" />
<ComponentRef Id="Aleutian" />
<ComponentRef Id="Arizona" />
<ComponentRef Id="Central_1" />
<ComponentRef Id="East_Indiana" />
<ComponentRef Id="Eastern_1" />
<ComponentRef Id="Hawaii" />
<ComponentRef Id="Indiana_Starke" />
<ComponentRef Id="Michigan" />
<ComponentRef Id="Mountain_1" />
<ComponentRef Id="Pacific_1" />
<ComponentRef Id="Pacific_New" />
<ComponentRef Id="Samoa_1" />
<ComponentRef Id="bgerror.tcl" />
<ComponentRef Id="button.tcl" />
<ComponentRef Id="choosedir.tcl" />
<ComponentRef Id="clrpick.tcl" />
<ComponentRef Id="comdlg.tcl" />
<ComponentRef Id="console.tcl" />
<ComponentRef Id="dialog.tcl" />
<ComponentRef Id="entry.tcl" />
<ComponentRef Id="focus.tcl" />
<ComponentRef Id="fontchooser.tcl" />
<ComponentRef Id="iconlist.tcl" />
<ComponentRef Id="icons.tcl" />
<ComponentRef Id="license.terms" />
<ComponentRef Id="listbox.tcl" />
<ComponentRef Id="megawidget.tcl" />
<ComponentRef Id="menu.tcl" />
<ComponentRef Id="mkpsenc.tcl" />
<ComponentRef Id="msgbox.tcl" />
<ComponentRef Id="obsolete.tcl" />
<ComponentRef Id="optMenu.tcl" />
<ComponentRef Id="palette.tcl" />
<ComponentRef Id="panedwindow.tcl" />
<ComponentRef Id="pkgIndex.tcl_2" />
<ComponentRef Id="safetk.tcl" />
<ComponentRef Id="scale.tcl" />
<ComponentRef Id="scrlbar.tcl" />
<ComponentRef Id="spinbox.tcl" />
<ComponentRef Id="tclIndex_1" />
<ComponentRef Id="tearoff.tcl" />
<ComponentRef Id="text.tcl" />
<ComponentRef Id="tk.tcl" />
<ComponentRef Id="tkfbox.tcl" />
<ComponentRef Id="unsupported.tcl" />
<ComponentRef Id="xmfbox.tcl" />
<ComponentRef Id="altTheme.tcl" />
<ComponentRef Id="aquaTheme.tcl" />
<ComponentRef Id="button.tcl_2" />
<ComponentRef Id="clamTheme.tcl" />
<ComponentRef Id="classicTheme.tcl" />
<ComponentRef Id="combobox.tcl" />
<ComponentRef Id="cursors.tcl" />
<ComponentRef Id="defaults.tcl" />
<ComponentRef Id="entry.tcl_1" />
<ComponentRef Id="fonts.tcl" />
<ComponentRef Id="menubutton.tcl" />
<ComponentRef Id="notebook.tcl" />
<ComponentRef Id="panedwindow.tcl_1" />
<ComponentRef Id="progress.tcl" />
<ComponentRef Id="scale.tcl_1" />
<ComponentRef Id="scrollbar.tcl" />
<ComponentRef Id="sizegrip.tcl" />
<ComponentRef Id="spinbox.tcl_1" />
<ComponentRef Id="treeview.tcl" />
<ComponentRef Id="ttk.tcl" />
<ComponentRef Id="utils.tcl" />
<ComponentRef Id="vistaTheme.tcl" />
<ComponentRef Id="winTheme.tcl" />
<ComponentRef Id="xpTheme.tcl" />
<ComponentRef Id="coriolis.py" />
<ComponentRef Id="eddb.py" />
<ComponentRef Id="eddn.py" />
<ComponentRef Id="edsm.py" />
<ComponentRef Id="edsy.py" />
<ComponentRef Id="inara.py" />
</Feature>
</Product>
</Wix>
<!-- Local Variables: -->
<!-- tab-width: 4 -->
<!-- End: -->