-
Notifications
You must be signed in to change notification settings - Fork 7
/
AutoFP.aip
1615 lines (1615 loc) · 261 KB
/
AutoFP.aip
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<DOCUMENT Type="Advanced Installer" CreateVersion="11.0" version="12.4" Modules="professional" RootPath="." Language="en" Id="{AA08910C-536F-4AD8-9D0A-86F9040546A5}">
<COMPONENT cid="caphyon.advinst.msicomp.MsiPropsComponent">
<ROW Property="AI_BITMAP_DISPLAY_MODE" Value="0"/>
<ROW Property="AI_EXTERNALUIUNINSTALLERNAME" MultiBuildValue="DefaultBuild:aiui"/>
<ROW Property="AI_PRODUCTNAME_ARP" Value="AutoFP"/>
<ROW Property="AI_REQUIRED_WINDOWS_INSTALLER_DISPLAY" MultiBuildValue="DefaultBuild:2.0" ValueLocId="-"/>
<ROW Property="AI_REQUIRED_WINDOWS_INSTALLER_VERSION" MultiBuildValue="DefaultBuild:2.0" ValueLocId="-"/>
<ROW Property="AI_ThemeStyle" Value="default" MsiKey="AI_ThemeStyle"/>
<ROW Property="AI_UNINSTALLER" Value="msiexec.exe"/>
<ROW Property="ALLUSERS" Value="1"/>
<ROW Property="ARPCOMMENTS" Value="This installer database contains the logic and data required to install [|ProductName]." ValueLocId="*"/>
<ROW Property="ARPCONTACT" Value="Xiaopeng Cui"/>
<ROW Property="ARPHELPLINK" Value="http:\\pmedia.shu.edu.cn\about.html"/>
<ROW Property="ARPNOREPAIR" Value="1"/>
<ROW Property="ARPPRODUCTICON" Value="autofp_2.exe" Type="8"/>
<ROW Property="ARPSYSTEMCOMPONENT" Value="1"/>
<ROW Property="ARPURLINFOABOUT" Value="http:\\pmedia.shu.edu.cn"/>
<ROW Property="ARPURLUPDATEINFO" Value="http:\\pmedia.shu.edu.cn\downlaod.html"/>
<ROW Property="AiPreferFastOem" MultiBuildValue="DefaultBuild:1"/>
<ROW Property="CTRLS" Value="3"/>
<ROW Property="Manufacturer" Value="Shanghai University"/>
<ROW Property="ProductCode" Value="1033:{FA93FCAE-A61E-4AE8-81A1-D73F2CD55498} " Type="16"/>
<ROW Property="ProductLanguage" Value="1033"/>
<ROW Property="ProductName" Value="AutoFP"/>
<ROW Property="ProductVersion" Value="0.1.158" Type="32"/>
<ROW Property="REBOOT" MultiBuildValue="DefaultBuild:ReallySuppress"/>
<ROW Property="RUNAPPLICATION" Value="1" Type="4"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND"/>
<ROW Property="UpgradeCode" Value="{2E35D6DD-D278-404E-99B6-F8517419BD75}"/>
<ROW Property="VIEWREADME" Value="1" Type="4"/>
<ROW Property="WindowsType9X" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
<ROW Property="WindowsType9XDisplay" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
<ROW Property="WindowsTypeNT40" MultiBuildValue="DefaultBuild:Windows NT 4.0" ValueLocId="-"/>
<ROW Property="WindowsTypeNT40Display" MultiBuildValue="DefaultBuild:Windows NT 4.0" ValueLocId="-"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiDirsComponent">
<ROW Directory="APPDIR" Directory_Parent="TARGETDIR" DefaultDir="APPDIR:." IsPseudoRoot="1"/>
<ROW Directory="Africa_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Africa"/>
<ROW Directory="America_Dir" Directory_Parent="tzdata_Dir" DefaultDir="America"/>
<ROW Directory="Antarctica_Dir" Directory_Parent="tzdata_Dir" DefaultDir="ANTARC~1|Antarctica"/>
<ROW Directory="Arctic_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Arctic"/>
<ROW Directory="Argentina_Dir" Directory_Parent="America_Dir" DefaultDir="ARGENT~1|Argentina"/>
<ROW Directory="Asia_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Asia"/>
<ROW Directory="Atlantic_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Atlantic"/>
<ROW Directory="Australia_Dir" Directory_Parent="tzdata_Dir" DefaultDir="AUSTRA~1|Australia"/>
<ROW Directory="AutoFP_1_Dir" Directory_Parent="ProgramMenuFolder" DefaultDir="AutoFP"/>
<ROW Directory="AutoFP_Dir" Directory_Parent="APPDIR" DefaultDir="AutoFP"/>
<ROW Directory="Brazil_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Brazil"/>
<ROW Directory="Canada_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Canada"/>
<ROW Directory="Chile_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Chile"/>
<ROW Directory="CommonAppDataFolder" Directory_Parent="TARGETDIR" DefaultDir="COMMON~1|CommonAppDataFolder" IsPseudoRoot="1"/>
<ROW Directory="DesktopFolder" Directory_Parent="TARGETDIR" DefaultDir="DESKTO~1|DesktopFolder" IsPseudoRoot="1"/>
<ROW Directory="Etc_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Etc"/>
<ROW Directory="Europe_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Europe"/>
<ROW Directory="Indian_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Indian"/>
<ROW Directory="Indiana_Dir" Directory_Parent="America_Dir" DefaultDir="Indiana"/>
<ROW Directory="Kentucky_Dir" Directory_Parent="America_Dir" DefaultDir="Kentucky"/>
<ROW Directory="Mexico_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Mexico"/>
<ROW Directory="North_Dakota_Dir" Directory_Parent="America_Dir" DefaultDir="NORTH_~1|North_Dakota"/>
<ROW Directory="OringC_Dir" Directory_Parent="script_Dir" DefaultDir="OringC"/>
<ROW Directory="Pacific_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Pacific"/>
<ROW Directory="ProgramMenuFolder" Directory_Parent="TARGETDIR" DefaultDir="PROGRA~1|ProgramMenuFolder" IsPseudoRoot="1"/>
<ROW Directory="StartMenuFolder" Directory_Parent="TARGETDIR" DefaultDir="STARTM~1|StartMenuFolder" IsPseudoRoot="1"/>
<ROW Directory="SystemV_Dir" Directory_Parent="tzdata_Dir" DefaultDir="SystemV"/>
<ROW Directory="TARGETDIR" DefaultDir="SourceDir"/>
<ROW Directory="US_Dir" Directory_Parent="tzdata_Dir" DefaultDir="US"/>
<ROW Directory="afm_Dir" Directory_Parent="fonts_Dir" DefaultDir="afm"/>
<ROW Directory="demos_Dir" Directory_Parent="tk8.5_Dir" DefaultDir="demos"/>
<ROW Directory="dist_Dir" Directory_Parent="AutoFP_Dir" DefaultDir="dist"/>
<ROW Directory="doc_Dir" Directory_Parent="OringC_Dir" DefaultDir="doc"/>
<ROW Directory="encoding_Dir" Directory_Parent="tcl8.5_Dir" DefaultDir="encoding"/>
<ROW Directory="fonts_Dir" Directory_Parent="mpldata_Dir" DefaultDir="fonts"/>
<ROW Directory="http1.0_Dir" Directory_Parent="tcl8.5_Dir" DefaultDir="http1.0"/>
<ROW Directory="imageformats_Dir" Directory_Parent="dist_Dir" DefaultDir="IMAGEF~1|imageformats"/>
<ROW Directory="images_1_Dir" Directory_Parent="demos_Dir" DefaultDir="images"/>
<ROW Directory="images_2_Dir" Directory_Parent="tk8.5_Dir" DefaultDir="images"/>
<ROW Directory="images_Dir" Directory_Parent="mpldata_Dir" DefaultDir="images"/>
<ROW Directory="mpldata_Dir" Directory_Parent="dist_Dir" DefaultDir="mpl-data"/>
<ROW Directory="msgs_1_Dir" Directory_Parent="tk8.5_Dir" DefaultDir="msgs"/>
<ROW Directory="msgs_Dir" Directory_Parent="tcl8.5_Dir" DefaultDir="msgs"/>
<ROW Directory="opt0.4_Dir" Directory_Parent="tcl8.5_Dir" DefaultDir="opt0.4"/>
<ROW Directory="origin_Dir" Directory_Parent="prf2origin_1_Dir" DefaultDir="origin"/>
<ROW Directory="pdfcorefonts_Dir" Directory_Parent="fonts_Dir" DefaultDir="PDFCOR~1|pdfcorefonts"/>
<ROW Directory="prf2origin_1_Dir" Directory_Parent="prf2origin_Dir" DefaultDir="PRF2OR~1|prf2origin"/>
<ROW Directory="prf2origin_Dir" Directory_Parent="dist_Dir" DefaultDir="PRF2OR~1|prf2origin"/>
<ROW Directory="regid.199509.com.example_Dir" Directory_Parent="CommonAppDataFolder" DefaultDir="REGID1~1.EXA|regid.1995-09.com.example"/>
<ROW Directory="script_Dir" Directory_Parent="origin_Dir" DefaultDir="script"/>
<ROW Directory="shell_Dir" Directory_Parent="dist_Dir" DefaultDir="shell"/>
<ROW Directory="strategy_Dir" Directory_Parent="dist_Dir" DefaultDir="strategy"/>
<ROW Directory="stylelib_Dir" Directory_Parent="mpldata_Dir" DefaultDir="stylelib"/>
<ROW Directory="tcl8.5_Dir" Directory_Parent="tcl_Dir" DefaultDir="tcl8.5"/>
<ROW Directory="tcl_Dir" Directory_Parent="dist_Dir" DefaultDir="tcl"/>
<ROW Directory="template_Dir" Directory_Parent="origin_Dir" DefaultDir="template"/>
<ROW Directory="tk8.5_Dir" Directory_Parent="tcl_Dir" DefaultDir="tk8.5"/>
<ROW Directory="ttf_Dir" Directory_Parent="fonts_Dir" DefaultDir="ttf"/>
<ROW Directory="ttk_Dir" Directory_Parent="tk8.5_Dir" DefaultDir="ttk"/>
<ROW Directory="tzdata_Dir" Directory_Parent="tcl8.5_Dir" DefaultDir="tzdata"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiCompsComponent">
<ROW Component="ACT" ComponentId="{FAF783EC-A884-47B5-900D-128C123169FC}" Directory_="Australia_Dir" Attributes="0" KeyPath="ACT" Type="0"/>
<ROW Component="AI_CustomARPName" ComponentId="{EBE5666D-A2A1-45FC-8E8E-EF75714114E2}" Directory_="APPDIR" Attributes="4" KeyPath="DisplayName" Options="1"/>
<ROW Component="APPDIR" ComponentId="{2BCE9F6C-3823-49CC-A3F5-640519CF38F9}" Directory_="APPDIR" Attributes="0"/>
<ROW Component="AST4" ComponentId="{92574286-2F9A-4F71-9701-87D1D4D1B145}" Directory_="SystemV_Dir" Attributes="0" KeyPath="AST4" Type="0"/>
<ROW Component="Abidjan" ComponentId="{81B33094-36FD-4063-B43A-E35BB318DF6C}" Directory_="Africa_Dir" Attributes="0" KeyPath="Abidjan" Type="0"/>
<ROW Component="Acre" ComponentId="{27DDEA88-9C9A-4882-B448-8A85E18D2CFD}" Directory_="Brazil_Dir" Attributes="0" KeyPath="Acre" Type="0"/>
<ROW Component="Adak" ComponentId="{1BE007DD-1BC9-43D3-8C02-545577AA5D2D}" Directory_="America_Dir" Attributes="0" KeyPath="Adak" Type="0"/>
<ROW Component="Aden" ComponentId="{348E1F14-E4B0-4600-B101-55E04F9DB4D5}" Directory_="Asia_Dir" Attributes="0" KeyPath="Aden" Type="0"/>
<ROW Component="Alaska" ComponentId="{408D310D-B409-4BF4-B951-D50031858D1B}" Directory_="US_Dir" Attributes="0" KeyPath="Alaska" Type="0"/>
<ROW Component="Amsterdam" ComponentId="{8B4B037D-1B96-4163-8B47-C69C409BAA59}" Directory_="Europe_Dir" Attributes="0" KeyPath="Amsterdam" Type="0"/>
<ROW Component="Antananarivo" ComponentId="{BC9048BC-DA2F-4C08-8AE4-2676DB5A2328}" Directory_="Indian_Dir" Attributes="0" KeyPath="Antananarivo" Type="0"/>
<ROW Component="Apia" ComponentId="{2241C1E1-4AE1-4207-96EA-79035FF67723}" Directory_="Pacific_Dir" Attributes="0" KeyPath="Apia" Type="0"/>
<ROW Component="Atlantic" ComponentId="{EAF7E7A1-FAD5-4F68-9A5E-7474777909C2}" Directory_="Canada_Dir" Attributes="0" KeyPath="Atlantic" Type="0"/>
<ROW Component="AutoFP" ComponentId="{4F1D2AF8-EC54-4005-BD17-5600D8B26E9D}" Directory_="AutoFP_1_Dir" Attributes="0"/>
<ROW Component="Azores" ComponentId="{07B1CC5A-8F0E-4704-8D1C-54E6D7153FC8}" Directory_="Atlantic_Dir" Attributes="0" KeyPath="Azores" Type="0"/>
<ROW Component="BajaNorte" ComponentId="{0F5F9E98-FEEA-4DD6-A284-D5CA168165CC}" Directory_="Mexico_Dir" Attributes="0" KeyPath="BajaNorte" Type="0"/>
<ROW Component="Beulah" ComponentId="{13D6C1D8-5F89-4580-8D3E-28AEF0897177}" Directory_="North_Dakota_Dir" Attributes="0" KeyPath="Beulah" Type="0"/>
<ROW Component="Buenos_Aires" ComponentId="{D68F5D52-452C-4BD5-B6C8-2145A3EC1986}" Directory_="Argentina_Dir" Attributes="0" KeyPath="Buenos_Aires" Type="0"/>
<ROW Component="CET" ComponentId="{216980B9-DB2A-4317-B5BB-378EC458072E}" Directory_="tzdata_Dir" Attributes="0" KeyPath="CET" Type="0"/>
<ROW Component="Casey" ComponentId="{0B1E7244-8A90-49CF-9AB0-835C04E45F6A}" Directory_="Antarctica_Dir" Attributes="0" KeyPath="Casey" Type="0"/>
<ROW Component="Code" ComponentId="{98462866-FCEC-4919-A8EE-B4B6AD9DD9A0}" Directory_="script_Dir" Attributes="0" KeyPath="Code" Type="0"/>
<ROW Component="Continental" ComponentId="{B68E588E-EA6D-4163-92E8-354248BFA719}" Directory_="Chile_Dir" Attributes="0" KeyPath="Continental" Type="0"/>
<ROW Component="CourierBold.afm" ComponentId="{5F0552E4-1EAA-45DC-BAA7-D7845C285CA4}" Directory_="pdfcorefonts_Dir" Attributes="0" KeyPath="CourierBold.afm" Type="0"/>
<ROW Component="GMT" ComponentId="{984A5332-2A25-49FC-B47D-A8340BA9849C}" Directory_="Etc_Dir" Attributes="0" KeyPath="GMT" Type="0"/>
<ROW Component="Indianapolis" ComponentId="{C8673A02-06E8-41D6-9BA8-EEFDAF982AA6}" Directory_="Indiana_Dir" Attributes="0" KeyPath="Indianapolis" Type="0"/>
<ROW Component="Longyearbyen" ComponentId="{089C5785-6697-4AAB-8F29-17D9610AE1F1}" Directory_="Arctic_Dir" Attributes="0" KeyPath="Longyearbyen" Type="0"/>
<ROW Component="Louisville" ComponentId="{98433C59-BA12-40DE-8AF4-6E7D4659AC40}" Directory_="Kentucky_Dir" Attributes="0" KeyPath="Louisville" Type="0"/>
<ROW Component="ProductInformation" ComponentId="{30FCC103-FCFF-479D-B73A-0A2F2CEE6B8A}" Directory_="APPDIR" Attributes="4" KeyPath="Version"/>
<ROW Component="QtCore4.dll" ComponentId="{1D050C12-B98D-48C0-BA00-7A81869F0C34}" Directory_="dist_Dir" Attributes="0" KeyPath="QtCore4.dll"/>
<ROW Component="QtGui4.dll" ComponentId="{F92A00C8-9667-451F-B8C1-B3535D3DD17F}" Directory_="dist_Dir" Attributes="0" KeyPath="QtGui4.dll"/>
<ROW Component="af.msg" ComponentId="{4ACDA20C-0AE0-4EBF-B3E6-51F8547969BF}" Directory_="msgs_Dir" Attributes="0" KeyPath="af.msg" Type="0"/>
<ROW Component="altTheme.tcl" ComponentId="{A50C3A29-8CC0-41B0-8857-507DD419E884}" Directory_="ttk_Dir" Attributes="0" KeyPath="altTheme.tcl" Type="0"/>
<ROW Component="anilabel.tcl" ComponentId="{C9328FC9-389C-4D0D-BEE9-5435FE2D2319}" Directory_="demos_Dir" Attributes="0" KeyPath="anilabel.tcl" Type="0"/>
<ROW Component="ascii.enc" ComponentId="{1C1AD461-A3C3-43EA-B930-FD1B290BAC78}" Directory_="encoding_Dir" Attributes="0" KeyPath="ascii.enc" Type="0"/>
<ROW Component="auto.tcl" ComponentId="{C182BC67-DC88-42A0-BC24-2A1450962DD8}" Directory_="tcl8.5_Dir" Attributes="0" KeyPath="auto.tcl" Type="0"/>
<ROW Component="autofp.bat" ComponentId="{5C8C2D8B-2581-435B-9A8F-F739BEF35E2D}" Directory_="shell_Dir" Attributes="0" KeyPath="autofp.bat" Type="0"/>
<ROW Component="autofp.exe" ComponentId="{65716703-9CF7-4B63-8D93-7D2E973339F9}" Directory_="dist_Dir" Attributes="0" KeyPath="autofp.exe"/>
<ROW Component="autofp.ico" ComponentId="{0B1D94D8-142F-4599-87C9-64CFB34A0C7A}" Directory_="dist_Dir" Attributes="0" KeyPath="autofp.ico" Type="0"/>
<ROW Component="back.png" ComponentId="{5784CC4C-A7BD-4C80-AFE4-AAFF9808A937}" Directory_="images_Dir" Attributes="0" KeyPath="back.png" Type="0"/>
<ROW Component="bgerror.tcl" ComponentId="{8C7FCC13-52F7-49A1-8219-C17B9AB93F7C}" Directory_="tk8.5_Dir" Attributes="0" KeyPath="bgerror.tcl" Type="0"/>
<ROW Component="bmh.mplstyle" ComponentId="{770F3627-F9CF-4C15-BA4D-6FCC9D636808}" Directory_="stylelib_Dir" Attributes="0" KeyPath="bmh.mplstyle" Type="0"/>
<ROW Component="cmb10.ttf" ComponentId="{05DCCF93-2784-4721-8BFB-27A0A0F7A223}" Directory_="ttf_Dir" Attributes="0" KeyPath="COPYRIGHT.TXT" Type="0"/>
<ROW Component="cmex10.afm" ComponentId="{AEA4F65E-1165-492A-84D4-37CDC6DC3DAA}" Directory_="afm_Dir" Attributes="0" KeyPath="cmex10.afm" Type="0"/>
<ROW Component="convert.exe" ComponentId="{610273BF-99B1-482F-9AB8-07DD1E79A16C}" Directory_="dist_Dir" Attributes="0" KeyPath="convert.exe"/>
<ROW Component="cs.msg" ComponentId="{F85EBBFF-76FE-4D9B-B7DD-164CC6B9AF74}" Directory_="msgs_1_Dir" Attributes="0" KeyPath="cs.msg_1" Type="0"/>
<ROW Component="doc" ComponentId="{6DFC8880-7A93-4D08-A310-53359FB6FFCD}" Directory_="doc_Dir" Attributes="0"/>
<ROW Component="earth.gif" ComponentId="{ACC71823-F562-44A6-A77F-1F010D4C91AF}" Directory_="images_1_Dir" Attributes="0" KeyPath="earth.gif" Type="0"/>
<ROW Component="ffmpeg.exe" ComponentId="{7661C153-117D-4CA5-85DD-BE14C676A236}" Directory_="dist_Dir" Attributes="0" KeyPath="ffmpeg.exe"/>
<ROW Component="fp2k.exe" ComponentId="{64269A6B-ECD3-4BA2-92F0-4EF6102FAE4F}" Directory_="dist_Dir" Attributes="0" KeyPath="fp2k.exe"/>
<ROW Component="http.tcl" ComponentId="{159F6698-0AF8-439C-80EC-AF62282D31FC}" Directory_="http1.0_Dir" Attributes="0" KeyPath="http.tcl" Type="0"/>
<ROW Component="lineprops.glade" ComponentId="{2EE376CB-8D2D-48F2-9CEA-222224AE305A}" Directory_="mpldata_Dir" Attributes="0" KeyPath="lineprops.glade" Type="0"/>
<ROW Component="logo.eps" ComponentId="{28DA8E4A-7AF5-40E9-9F44-7F45F942FFB4}" Directory_="images_2_Dir" Attributes="0" KeyPath="logo.eps" Type="0"/>
<ROW Component="msvcp90.dll" ComponentId="{5953180C-6784-43FB-95B7-2CA52DCC5C1E}" Directory_="dist_Dir" Attributes="0" KeyPath="msvcp90.dll"/>
<ROW Component="msvcr90.dll" ComponentId="{2C383985-69BD-4E6E-8A7D-C117B60820DE}" Directory_="dist_Dir" Attributes="0" KeyPath="msvcr90.dll"/>
<ROW Component="optparse.tcl" ComponentId="{5FAE8CF5-17A7-4976-BEDC-25742C85BC8D}" Directory_="opt0.4_Dir" Attributes="0" KeyPath="optparse.tcl" Type="0"/>
<ROW Component="prf.opj" ComponentId="{380806B6-B575-47FA-9026-425DAEA0913D}" Directory_="template_Dir" Attributes="0" KeyPath="prf.opj" Type="0"/>
<ROW Component="prf_one.cpp" ComponentId="{00E1682F-0EB4-41CE-8622-A25E819767C1}" Directory_="OringC_Dir" Attributes="0" KeyPath="prf_one.cpp" Type="0"/>
<ROW Component="python27.dll" ComponentId="{3DEB0F07-D8A3-4AAC-B6F7-D71CD5DE6079}" Directory_="dist_Dir" Attributes="0" KeyPath="python27.dll"/>
<ROW Component="qgif4.dll" ComponentId="{CFA35533-25ED-4A3B-91F5-027FF779B3B3}" Directory_="imageformats_Dir" Attributes="0" KeyPath="qgif4.dll"/>
<ROW Component="qico4.dll" ComponentId="{EE1A73AE-F57E-4B39-B07F-EDE5CB46AA79}" Directory_="imageformats_Dir" Attributes="0" KeyPath="qico4.dll"/>
<ROW Component="qjpeg4.dll" ComponentId="{8B8E055E-D63D-4EDF-B7B7-977ABF87C8E8}" Directory_="imageformats_Dir" Attributes="0" KeyPath="qjpeg4.dll"/>
<ROW Component="qmng4.dll" ComponentId="{676CC360-B5E2-416A-9778-F1E12794BE76}" Directory_="imageformats_Dir" Attributes="0" KeyPath="qmng4.dll"/>
<ROW Component="qsvg4.dll" ComponentId="{F52821B8-5E0C-448D-BDA1-7168C73F85E6}" Directory_="imageformats_Dir" Attributes="0" KeyPath="qsvg4.dll"/>
<ROW Component="qtga4.dll" ComponentId="{97097474-D92C-4C38-B281-A40B444F916F}" Directory_="imageformats_Dir" Attributes="0" KeyPath="qtga4.dll"/>
<ROW Component="qtiff4.dll" ComponentId="{276CFA3D-B842-4664-A038-474FC7A095F0}" Directory_="imageformats_Dir" Attributes="0" KeyPath="qtiff4.dll"/>
<ROW Component="readme.txt" ComponentId="{05E82288-89F5-4011-AC05-9BECB357ECC5}" Directory_="AutoFP_Dir" Attributes="0" KeyPath="readme.txt_3" Type="0"/>
<ROW Component="regid.199509.com.example" ComponentId="{E544B62F-D73E-41E9-AFF9-CE3E0E02F43F}" Directory_="regid.199509.com.example_Dir" Attributes="0"/>
<ROW Component="shautofp.exe" ComponentId="{E7EF5474-327B-4411-8365-D5E4ABE06FF0}" Directory_="dist_Dir" Attributes="0" KeyPath="shautofp.exe"/>
<ROW Component="strategy.py" ComponentId="{238FAA65-B2E9-4DAC-A7E6-003E5B3BBE76}" Directory_="strategy_Dir" Attributes="0" KeyPath="strategy.py" Type="0"/>
<ROW Component="tcl85.dll" ComponentId="{D6E4E1EC-C1C0-4C28-B2E5-F8B60619182E}" Directory_="dist_Dir" Attributes="0" KeyPath="tcl85.dll"/>
<ROW Component="tk85.dll" ComponentId="{CEDCBF99-2013-4186-BE5F-4520F65079AD}" Directory_="dist_Dir" Attributes="0" KeyPath="tk85.dll"/>
<ROW Component="w9xpopen.exe" ComponentId="{A5A07F95-4A31-4E6B-A63D-06F2D032113C}" Directory_="dist_Dir" Attributes="0" KeyPath="w9xpopen.exe"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiFeatsComponent">
<ROW Feature="MainFeature" Title="MainFeature" Description="Description" Display="1" Level="1" Directory_="APPDIR" Attributes="0" Components="ACT AI_CustomARPName APPDIR AST4 Abidjan Acre Adak Aden Alaska Amsterdam Antananarivo Apia Atlantic AutoFP Azores BajaNorte Beulah Buenos_Aires CET Casey Code Continental CourierBold.afm GMT Indianapolis Longyearbyen Louisville ProductInformation QtCore4.dll QtGui4.dll af.msg altTheme.tcl anilabel.tcl ascii.enc auto.tcl autofp.bat autofp.exe autofp.ico back.png bgerror.tcl bmh.mplstyle cmb10.ttf cmex10.afm convert.exe cs.msg doc earth.gif ffmpeg.exe fp2k.exe http.tcl lineprops.glade logo.eps msvcp90.dll msvcr90.dll optparse.tcl prf.opj prf_one.cpp python27.dll qgif4.dll qico4.dll qjpeg4.dll qmng4.dll qsvg4.dll qtga4.dll qtiff4.dll readme.txt regid.199509.com.example shautofp.exe strategy.py tcl85.dll tk85.dll w9xpopen.exe"/>
<ATTRIBUTE name="CurrentFeature" value="MainFeature"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiFilesComponent">
<ROW File="ACT" Component_="ACT" FileName="ACT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\ACT" SelfReg="false" NextFile="Adelaide"/>
<ROW File="AST4" Component_="AST4" FileName="AST4" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\AST4" SelfReg="false" NextFile="AST4ADT"/>
<ROW File="AST4ADT" Component_="AST4" FileName="AST4ADT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\AST4ADT" SelfReg="false" NextFile="CST6"/>
<ROW File="Abidjan" Component_="Abidjan" FileName="Abidjan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Abidjan" SelfReg="false" NextFile="Accra"/>
<ROW File="Accra" Component_="Abidjan" FileName="Accra" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Accra" SelfReg="false" NextFile="Addis_Ababa"/>
<ROW File="Acre" Component_="Acre" FileName="Acre" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Brazil\Acre" SelfReg="false" NextFile="DeNoronha"/>
<ROW File="Adak" Component_="Adak" FileName="Adak" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Adak" SelfReg="false" NextFile="Anchorage"/>
<ROW File="Addis_Ababa" Component_="Abidjan" FileName="ADDIS_~1|Addis_Ababa" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Addis_Ababa" SelfReg="false" NextFile="Algiers"/>
<ROW File="Adelaide" Component_="ACT" FileName="Adelaide" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Adelaide" SelfReg="false" NextFile="Brisbane"/>
<ROW File="Aden" Component_="Aden" FileName="Aden" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Aden" SelfReg="false" NextFile="Almaty"/>
<ROW File="Alaska" Component_="Alaska" FileName="Alaska" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Alaska" SelfReg="false" NextFile="Aleutian"/>
<ROW File="Aleutian" Component_="Alaska" FileName="Aleutian" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Aleutian" SelfReg="false" NextFile="Arizona"/>
<ROW File="Algiers" Component_="Abidjan" FileName="Algiers" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Algiers" SelfReg="false" NextFile="Asmara"/>
<ROW File="Almaty" Component_="Aden" FileName="Almaty" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Almaty" SelfReg="false" NextFile="Amman"/>
<ROW File="Amman" Component_="Aden" FileName="Amman" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Amman" SelfReg="false" NextFile="Anadyr"/>
<ROW File="Amsterdam" Component_="Amsterdam" FileName="AMSTER~1|Amsterdam" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Amsterdam" SelfReg="false" NextFile="Andorra"/>
<ROW File="Anadyr" Component_="Aden" FileName="Anadyr" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Anadyr" SelfReg="false" NextFile="Aqtau"/>
<ROW File="Anchorage" Component_="Adak" FileName="ANCHOR~1|Anchorage" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Anchorage" SelfReg="false" NextFile="Anguilla"/>
<ROW File="Andorra" Component_="Amsterdam" FileName="Andorra" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Andorra" SelfReg="false" NextFile="Athens"/>
<ROW File="Anguilla" Component_="Adak" FileName="Anguilla" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Anguilla" SelfReg="false" NextFile="Antigua"/>
<ROW File="Antananarivo" Component_="Antananarivo" FileName="ANTANA~1|Antananarivo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Indian\Antananarivo" SelfReg="false" NextFile="Chagos"/>
<ROW File="Antigua" Component_="Adak" FileName="Antigua" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Antigua" SelfReg="false" NextFile="Araguaina"/>
<ROW File="Apia" Component_="Apia" FileName="Apia" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Apia" SelfReg="false" NextFile="Auckland"/>
<ROW File="Aqtau" Component_="Aden" FileName="Aqtau" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Aqtau" SelfReg="false" NextFile="Aqtobe"/>
<ROW File="Aqtobe" Component_="Aden" FileName="Aqtobe" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Aqtobe" SelfReg="false" NextFile="Ashgabat"/>
<ROW File="Araguaina" Component_="Adak" FileName="ARAGUA~1|Araguaina" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Araguaina" SelfReg="false" NextFile="Buenos_Aires"/>
<ROW File="Arizona" Component_="Alaska" FileName="Arizona" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Arizona" SelfReg="false" NextFile="Central_1"/>
<ROW File="Aruba" Component_="Adak" FileName="Aruba" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Aruba" SelfReg="false" NextFile="Asuncion"/>
<ROW File="Ashgabat" Component_="Aden" FileName="Ashgabat" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Ashgabat" SelfReg="false" NextFile="Ashkhabad"/>
<ROW File="Ashkhabad" Component_="Aden" FileName="ASHKHA~1|Ashkhabad" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Ashkhabad" SelfReg="false" NextFile="Baghdad"/>
<ROW File="Asmara" Component_="Abidjan" FileName="Asmara" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Asmara" SelfReg="false" NextFile="Asmera"/>
<ROW File="Asmera" Component_="Abidjan" FileName="Asmera" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Asmera" SelfReg="false" NextFile="Bamako"/>
<ROW File="Asuncion" Component_="Adak" FileName="Asuncion" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Asuncion" SelfReg="false" NextFile="Atikokan"/>
<ROW File="Athens" Component_="Amsterdam" FileName="Athens" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Athens" SelfReg="false" NextFile="Belfast"/>
<ROW File="Atikokan" Component_="Adak" FileName="Atikokan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Atikokan" SelfReg="false" NextFile="Atka"/>
<ROW File="Atka" Component_="Adak" FileName="Atka" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Atka" SelfReg="false" NextFile="Bahia"/>
<ROW File="Atlantic" Component_="Atlantic" FileName="Atlantic" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Canada\Atlantic" SelfReg="false" NextFile="Central"/>
<ROW File="Auckland" Component_="Apia" FileName="Auckland" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Auckland" SelfReg="false" NextFile="Chatham"/>
<ROW File="AutoFP.url" Component_="readme.txt" FileName="AutoFP.url" Attributes="0" SourcePath="AutoFP.url" SelfReg="false" NextFile="bz2.pyd"/>
<ROW File="Azores" Component_="Azores" FileName="Azores" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\Azores" SelfReg="false" NextFile="Bermuda"/>
<ROW File="Baghdad" Component_="Aden" FileName="Baghdad" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Baghdad" SelfReg="false" NextFile="Bahrain"/>
<ROW File="Bahia" Component_="Adak" FileName="Bahia" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Bahia" SelfReg="false" NextFile="Bahia_Banderas"/>
<ROW File="Bahia_Banderas" Component_="Adak" FileName="BAHIA_~1|Bahia_Banderas" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Bahia_Banderas" SelfReg="false" NextFile="Barbados"/>
<ROW File="Bahrain" Component_="Aden" FileName="Bahrain" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Bahrain" SelfReg="false" NextFile="Baku"/>
<ROW File="BajaNorte" Component_="BajaNorte" FileName="BAJANO~1|BajaNorte" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Mexico\BajaNorte" SelfReg="false" NextFile="BajaSur"/>
<ROW File="BajaSur" Component_="BajaNorte" FileName="BajaSur" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Mexico\BajaSur" SelfReg="false" NextFile="General"/>
<ROW File="Baku" Component_="Aden" FileName="Baku" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Baku" SelfReg="false" NextFile="Bangkok"/>
<ROW File="Bamako" Component_="Abidjan" FileName="Bamako" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Bamako" SelfReg="false" NextFile="Bangui"/>
<ROW File="Bangkok" Component_="Aden" FileName="Bangkok" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Bangkok" SelfReg="false" NextFile="Beirut"/>
<ROW File="Bangui" Component_="Abidjan" FileName="Bangui" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Bangui" SelfReg="false" NextFile="Banjul"/>
<ROW File="Banjul" Component_="Abidjan" FileName="Banjul" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Banjul" SelfReg="false" NextFile="Bissau"/>
<ROW File="Barbados" Component_="Adak" FileName="Barbados" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Barbados" SelfReg="false" NextFile="Belem"/>
<ROW File="Beirut" Component_="Aden" FileName="Beirut" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Beirut" SelfReg="false" NextFile="Bishkek"/>
<ROW File="Belem" Component_="Adak" FileName="Belem" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Belem" SelfReg="false" NextFile="Belize"/>
<ROW File="Belfast" Component_="Amsterdam" FileName="Belfast" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Belfast" SelfReg="false" NextFile="Belgrade"/>
<ROW File="Belgrade" Component_="Amsterdam" FileName="Belgrade" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Belgrade" SelfReg="false" NextFile="Berlin"/>
<ROW File="Belize" Component_="Adak" FileName="Belize" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Belize" SelfReg="false" NextFile="BlancSablon"/>
<ROW File="Berlin" Component_="Amsterdam" FileName="Berlin" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Berlin" SelfReg="false" NextFile="Bratislava"/>
<ROW File="Bermuda" Component_="Azores" FileName="Bermuda" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\Bermuda" SelfReg="false" NextFile="Canary"/>
<ROW File="Beulah" Component_="Beulah" FileName="Beulah" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\North_Dakota\Beulah" SelfReg="false" NextFile="Center"/>
<ROW File="Bishkek" Component_="Aden" FileName="Bishkek" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Bishkek" SelfReg="false" NextFile="Brunei"/>
<ROW File="Bissau" Component_="Abidjan" FileName="Bissau" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Bissau" SelfReg="false" NextFile="Blantyre"/>
<ROW File="BlancSablon" Component_="Adak" FileName="BLANC-~1|Blanc-Sablon" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Blanc-Sablon" SelfReg="false" NextFile="Boa_Vista"/>
<ROW File="Blantyre" Component_="Abidjan" FileName="Blantyre" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Blantyre" SelfReg="false" NextFile="Brazzaville"/>
<ROW File="Boa_Vista" Component_="Adak" FileName="BOA_VI~1|Boa_Vista" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Boa_Vista" SelfReg="false" NextFile="Bogota"/>
<ROW File="Bogota" Component_="Adak" FileName="Bogota" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Bogota" SelfReg="false" NextFile="Boise"/>
<ROW File="Boise" Component_="Adak" FileName="Boise" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Boise" SelfReg="false" NextFile="Buenos_Aires_1"/>
<ROW File="Bratislava" Component_="Amsterdam" FileName="BRATIS~1|Bratislava" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Bratislava" SelfReg="false" NextFile="Brussels"/>
<ROW File="Brazzaville" Component_="Abidjan" FileName="BRAZZA~1|Brazzaville" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Brazzaville" SelfReg="false" NextFile="Bujumbura"/>
<ROW File="Brisbane" Component_="ACT" FileName="Brisbane" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Brisbane" SelfReg="false" NextFile="Broken_Hill"/>
<ROW File="Broken_Hill" Component_="ACT" FileName="BROKEN~1|Broken_Hill" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Broken_Hill" SelfReg="false" NextFile="Canberra"/>
<ROW File="Brunei" Component_="Aden" FileName="Brunei" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Brunei" SelfReg="false" NextFile="Calcutta"/>
<ROW File="Brussels" Component_="Amsterdam" FileName="Brussels" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Brussels" SelfReg="false" NextFile="Bucharest"/>
<ROW File="Bucharest" Component_="Amsterdam" FileName="BUCHAR~1|Bucharest" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Bucharest" SelfReg="false" NextFile="Budapest"/>
<ROW File="Budapest" Component_="Amsterdam" FileName="Budapest" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Budapest" SelfReg="false" NextFile="Busingen"/>
<ROW File="Buenos_Aires" Component_="Buenos_Aires" FileName="BUENOS~1|Buenos_Aires" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\Buenos_Aires" SelfReg="false" NextFile="Catamarca"/>
<ROW File="Buenos_Aires_1" Component_="Adak" FileName="BUENOS~1|Buenos_Aires" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Buenos_Aires" SelfReg="false" NextFile="Cambridge_Bay"/>
<ROW File="Bujumbura" Component_="Abidjan" FileName="BUJUMB~1|Bujumbura" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Bujumbura" SelfReg="false" NextFile="Cairo"/>
<ROW File="Busingen" Component_="Amsterdam" FileName="Busingen" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Busingen" SelfReg="false" NextFile="Chisinau"/>
<ROW File="CET" Component_="CET" FileName="CET" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\CET" SelfReg="false" NextFile="Continental"/>
<ROW File="COPYRIGHT.TXT" Component_="cmb10.ttf" FileName="COPYRI~1.TXT|COPYRIGHT.TXT" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\COPYRIGHT.TXT" SelfReg="false" NextFile="LICENSE_STIX"/>
<ROW File="CST6" Component_="AST4" FileName="CST6" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\CST6" SelfReg="false" NextFile="CST6CDT_1"/>
<ROW File="CST6CDT" Component_="CET" FileName="CST6CDT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\CST6CDT" SelfReg="false" NextFile="Cuba"/>
<ROW File="CST6CDT_1" Component_="AST4" FileName="CST6CDT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\CST6CDT" SelfReg="false" NextFile="EST5"/>
<ROW File="Cairo" Component_="Abidjan" FileName="Cairo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Cairo" SelfReg="false" NextFile="Casablanca"/>
<ROW File="Calcutta" Component_="Aden" FileName="Calcutta" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Calcutta" SelfReg="false" NextFile="Choibalsan"/>
<ROW File="Cambridge_Bay" Component_="Adak" FileName="CAMBRI~1|Cambridge_Bay" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Cambridge_Bay" SelfReg="false" NextFile="Campo_Grande"/>
<ROW File="Campo_Grande" Component_="Adak" FileName="CAMPO_~1|Campo_Grande" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Campo_Grande" SelfReg="false" NextFile="Cancun"/>
<ROW File="Canary" Component_="Azores" FileName="Canary" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\Canary" SelfReg="false" NextFile="Cape_Verde"/>
<ROW File="Canberra" Component_="ACT" FileName="Canberra" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Canberra" SelfReg="false" NextFile="Currie"/>
<ROW File="Cancun" Component_="Adak" FileName="Cancun" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Cancun" SelfReg="false" NextFile="Caracas"/>
<ROW File="Cape_Verde" Component_="Azores" FileName="CAPE_V~1|Cape_Verde" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\Cape_Verde" SelfReg="false" NextFile="Faeroe"/>
<ROW File="Caracas" Component_="Adak" FileName="Caracas" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Caracas" SelfReg="false" NextFile="Catamarca_1"/>
<ROW File="Casablanca" Component_="Abidjan" FileName="CASABL~1|Casablanca" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Casablanca" SelfReg="false" NextFile="Ceuta"/>
<ROW File="Casey" Component_="Casey" FileName="Casey" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Antarctica\Casey" SelfReg="false" NextFile="Davis"/>
<ROW File="Catamarca" Component_="Buenos_Aires" FileName="CATAMA~1|Catamarca" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\Catamarca" SelfReg="false" NextFile="ComodRivadavia"/>
<ROW File="Catamarca_1" Component_="Adak" FileName="CATAMA~1|Catamarca" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Catamarca" SelfReg="false" NextFile="Cayenne"/>
<ROW File="Cayenne" Component_="Adak" FileName="Cayenne" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Cayenne" SelfReg="false" NextFile="Cayman"/>
<ROW File="Cayman" Component_="Adak" FileName="Cayman" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Cayman" SelfReg="false" NextFile="Chicago"/>
<ROW File="Center" Component_="Beulah" FileName="Center" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\North_Dakota\Center" SelfReg="false" NextFile="New_Salem"/>
<ROW File="Central" Component_="Atlantic" FileName="Central" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Canada\Central" SelfReg="false" NextFile="EastSaskatchewan"/>
<ROW File="Central_1" Component_="Alaska" FileName="Central" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Central" SelfReg="false" NextFile="EastIndiana"/>
<ROW File="Ceuta" Component_="Abidjan" FileName="Ceuta" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Ceuta" SelfReg="false" NextFile="Conakry"/>
<ROW File="Chagos" Component_="Antananarivo" FileName="Chagos" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Indian\Chagos" SelfReg="false" NextFile="Christmas"/>
<ROW File="Chatham" Component_="Apia" FileName="Chatham" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Chatham" SelfReg="false" NextFile="Chuuk"/>
<ROW File="Chicago" Component_="Adak" FileName="Chicago" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Chicago" SelfReg="false" NextFile="Chihuahua"/>
<ROW File="Chihuahua" Component_="Adak" FileName="CHIHUA~1|Chihuahua" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Chihuahua" SelfReg="false" NextFile="Coral_Harbour"/>
<ROW File="Chisinau" Component_="Amsterdam" FileName="Chisinau" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Chisinau" SelfReg="false" NextFile="Copenhagen"/>
<ROW File="Choibalsan" Component_="Aden" FileName="CHOIBA~1|Choibalsan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Choibalsan" SelfReg="false" NextFile="Chongqing"/>
<ROW File="Chongqing" Component_="Aden" FileName="CHONGQ~1|Chongqing" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Chongqing" SelfReg="false" NextFile="Chungking"/>
<ROW File="Christmas" Component_="Antananarivo" FileName="CHRIST~1|Christmas" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Indian\Christmas" SelfReg="false" NextFile="Cocos"/>
<ROW File="Chungking" Component_="Aden" FileName="CHUNGK~1|Chungking" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Chungking" SelfReg="false" NextFile="Colombo"/>
<ROW File="Chuuk" Component_="Apia" FileName="Chuuk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Chuuk" SelfReg="false" NextFile="Easter"/>
<ROW File="Cocos" Component_="Antananarivo" FileName="Cocos" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Indian\Cocos" SelfReg="false" NextFile="Comoro"/>
<ROW File="Code" Component_="Code" FileName="Code" Attributes="0" SourcePath="AutoFP\dist\prf2origin\prf2origin\origin\script\Code" SelfReg="false" NextFile="prf_one.cpp"/>
<ROW File="Colombo" Component_="Aden" FileName="Colombo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Colombo" SelfReg="false" NextFile="Dacca"/>
<ROW File="ComodRivadavia" Component_="Buenos_Aires" FileName="COMODR~1|ComodRivadavia" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\ComodRivadavia" SelfReg="false" NextFile="Cordoba"/>
<ROW File="Comoro" Component_="Antananarivo" FileName="Comoro" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Indian\Comoro" SelfReg="false" NextFile="Kerguelen"/>
<ROW File="Conakry" Component_="Abidjan" FileName="Conakry" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Conakry" SelfReg="false" NextFile="Dakar"/>
<ROW File="Continental" Component_="Continental" FileName="CONTIN~1|Continental" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Chile\Continental" SelfReg="false" NextFile="EasterIsland"/>
<ROW File="Copenhagen" Component_="Amsterdam" FileName="COPENH~1|Copenhagen" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Copenhagen" SelfReg="false" NextFile="Dublin"/>
<ROW File="Coral_Harbour" Component_="Adak" FileName="CORAL_~1|Coral_Harbour" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Coral_Harbour" SelfReg="false" NextFile="Cordoba_1"/>
<ROW File="Cordoba" Component_="Buenos_Aires" FileName="Cordoba" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\Cordoba" SelfReg="false" NextFile="Jujuy"/>
<ROW File="Cordoba_1" Component_="Adak" FileName="Cordoba" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Cordoba" SelfReg="false" NextFile="Costa_Rica"/>
<ROW File="Costa_Rica" Component_="Adak" FileName="COSTA_~1|Costa_Rica" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Costa_Rica" SelfReg="false" NextFile="Creston"/>
<ROW File="Courier.afm" Component_="CourierBold.afm" FileName="Courier.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Courier.afm" SelfReg="false" NextFile="HelveticaBold.afm"/>
<ROW File="CourierBold.afm" Component_="CourierBold.afm" FileName="COURIE~1.AFM|Courier-Bold.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Courier-Bold.afm" SelfReg="false" NextFile="CourierBoldOblique.afm"/>
<ROW File="CourierBoldOblique.afm" Component_="CourierBold.afm" FileName="COURIE~2.AFM|Courier-BoldOblique.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Courier-BoldOblique.afm" SelfReg="false" NextFile="CourierOblique.afm"/>
<ROW File="CourierOblique.afm" Component_="CourierBold.afm" FileName="COURIE~3.AFM|Courier-Oblique.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Courier-Oblique.afm" SelfReg="false" NextFile="Courier.afm"/>
<ROW File="Creston" Component_="Adak" FileName="Creston" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Creston" SelfReg="false" NextFile="Cuiaba"/>
<ROW File="Cuba" Component_="CET" FileName="Cuba" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Cuba" SelfReg="false" NextFile="EET"/>
<ROW File="Cuiaba" Component_="Adak" FileName="Cuiaba" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Cuiaba" SelfReg="false" NextFile="Curacao"/>
<ROW File="Curacao" Component_="Adak" FileName="Curacao" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Curacao" SelfReg="false" NextFile="Danmarkshavn"/>
<ROW File="Currie" Component_="ACT" FileName="Currie" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Currie" SelfReg="false" NextFile="Darwin"/>
<ROW File="Dacca" Component_="Aden" FileName="Dacca" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Dacca" SelfReg="false" NextFile="Damascus"/>
<ROW File="Dakar" Component_="Abidjan" FileName="Dakar" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Dakar" SelfReg="false" NextFile="Dar_es_Salaam"/>
<ROW File="Damascus" Component_="Aden" FileName="Damascus" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Damascus" SelfReg="false" NextFile="Dhaka"/>
<ROW File="Danmarkshavn" Component_="Adak" FileName="DANMAR~1|Danmarkshavn" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Danmarkshavn" SelfReg="false" NextFile="Dawson"/>
<ROW File="Dar_es_Salaam" Component_="Abidjan" FileName="DAR_ES~1|Dar_es_Salaam" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Dar_es_Salaam" SelfReg="false" NextFile="Djibouti"/>
<ROW File="Darwin" Component_="ACT" FileName="Darwin" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Darwin" SelfReg="false" NextFile="Eucla"/>
<ROW File="Davis" Component_="Casey" FileName="Davis" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Antarctica\Davis" SelfReg="false" NextFile="DumontDUrville"/>
<ROW File="Dawson" Component_="Adak" FileName="Dawson" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Dawson" SelfReg="false" NextFile="Dawson_Creek"/>
<ROW File="Dawson_Creek" Component_="Adak" FileName="DAWSON~1|Dawson_Creek" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Dawson_Creek" SelfReg="false" NextFile="Denver"/>
<ROW File="DeNoronha" Component_="Acre" FileName="DENORO~1|DeNoronha" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Brazil\DeNoronha" SelfReg="false" NextFile="East"/>
<ROW File="Denver" Component_="Adak" FileName="Denver" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Denver" SelfReg="false" NextFile="Detroit"/>
<ROW File="Detroit" Component_="Adak" FileName="Detroit" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Detroit" SelfReg="false" NextFile="Dominica"/>
<ROW File="Dhaka" Component_="Aden" FileName="Dhaka" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Dhaka" SelfReg="false" NextFile="Dili"/>
<ROW File="Dili" Component_="Aden" FileName="Dili" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Dili" SelfReg="false" NextFile="Dubai"/>
<ROW File="Djibouti" Component_="Abidjan" FileName="Djibouti" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Djibouti" SelfReg="false" NextFile="Douala"/>
<ROW File="Dominica" Component_="Adak" FileName="Dominica" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Dominica" SelfReg="false" NextFile="Edmonton"/>
<ROW File="Douala" Component_="Abidjan" FileName="Douala" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Douala" SelfReg="false" NextFile="El_Aaiun"/>
<ROW File="Dubai" Component_="Aden" FileName="Dubai" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Dubai" SelfReg="false" NextFile="Dushanbe"/>
<ROW File="Dublin" Component_="Amsterdam" FileName="Dublin" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Dublin" SelfReg="false" NextFile="Gibraltar"/>
<ROW File="DumontDUrville" Component_="Casey" FileName="DUMONT~1|DumontDUrville" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Antarctica\DumontDUrville" SelfReg="false" NextFile="Macquarie"/>
<ROW File="Dushanbe" Component_="Aden" FileName="Dushanbe" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Dushanbe" SelfReg="false" NextFile="Gaza"/>
<ROW File="EET" Component_="CET" FileName="EET" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\EET" SelfReg="false" NextFile="Egypt"/>
<ROW File="EST" Component_="CET" FileName="EST" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\EST" SelfReg="false" NextFile="EST5EDT"/>
<ROW File="EST5" Component_="AST4" FileName="EST5" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\EST5" SelfReg="false" NextFile="EST5EDT_1"/>
<ROW File="EST5EDT" Component_="CET" FileName="EST5EDT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\EST5EDT" SelfReg="false" NextFile="GMT"/>
<ROW File="EST5EDT_1" Component_="AST4" FileName="EST5EDT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\EST5EDT" SelfReg="false" NextFile="HST10"/>
<ROW File="East" Component_="Acre" FileName="East" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Brazil\East" SelfReg="false" NextFile="West_1"/>
<ROW File="EastIndiana" Component_="Alaska" FileName="EAST-I~1|East-Indiana" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\East-Indiana" SelfReg="false" NextFile="Eastern_1"/>
<ROW File="EastSaskatchewan" Component_="Atlantic" FileName="EAST-S~1|East-Saskatchewan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Canada\East-Saskatchewan" SelfReg="false" NextFile="Eastern"/>
<ROW File="Easter" Component_="Apia" FileName="Easter" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Easter" SelfReg="false" NextFile="Efate"/>
<ROW File="EasterIsland" Component_="Continental" FileName="EASTER~1|EasterIsland" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Chile\EasterIsland" SelfReg="false" NextFile="CST6CDT"/>
<ROW File="Eastern" Component_="Atlantic" FileName="Eastern" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Canada\Eastern" SelfReg="false" NextFile="Mountain"/>
<ROW File="Eastern_1" Component_="Alaska" FileName="Eastern" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Eastern" SelfReg="false" NextFile="Hawaii"/>
<ROW File="Edmonton" Component_="Adak" FileName="Edmonton" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Edmonton" SelfReg="false" NextFile="Eirunepe"/>
<ROW File="Efate" Component_="Apia" FileName="Efate" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Efate" SelfReg="false" NextFile="Enderbury"/>
<ROW File="Egypt" Component_="CET" FileName="Egypt" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Egypt" SelfReg="false" NextFile="Eire"/>
<ROW File="Eire" Component_="CET" FileName="Eire" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Eire" SelfReg="false" NextFile="EST"/>
<ROW File="Eirunepe" Component_="Adak" FileName="Eirunepe" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Eirunepe" SelfReg="false" NextFile="El_Salvador"/>
<ROW File="El_Aaiun" Component_="Abidjan" FileName="El_Aaiun" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\El_Aaiun" SelfReg="false" NextFile="Freetown"/>
<ROW File="El_Salvador" Component_="Adak" FileName="EL_SAL~1|El_Salvador" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\El_Salvador" SelfReg="false" NextFile="Ensenada"/>
<ROW File="Enderbury" Component_="Apia" FileName="ENDERB~1|Enderbury" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Enderbury" SelfReg="false" NextFile="Fakaofo"/>
<ROW File="Ensenada" Component_="Adak" FileName="Ensenada" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Ensenada" SelfReg="false" NextFile="Fortaleza"/>
<ROW File="Eucla" Component_="ACT" FileName="Eucla" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Eucla" SelfReg="false" NextFile="Hobart"/>
<ROW File="Faeroe" Component_="Azores" FileName="Faeroe" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\Faeroe" SelfReg="false" NextFile="Faroe"/>
<ROW File="Fakaofo" Component_="Apia" FileName="Fakaofo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Fakaofo" SelfReg="false" NextFile="Fiji"/>
<ROW File="Faroe" Component_="Azores" FileName="Faroe" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\Faroe" SelfReg="false" NextFile="Jan_Mayen"/>
<ROW File="Fiji" Component_="Apia" FileName="Fiji" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Fiji" SelfReg="false" NextFile="Funafuti"/>
<ROW File="Fort_Wayne" Component_="Adak" FileName="FORT_W~1|Fort_Wayne" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Fort_Wayne" SelfReg="false" NextFile="Glace_Bay"/>
<ROW File="Fortaleza" Component_="Adak" FileName="FORTAL~1|Fortaleza" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Fortaleza" SelfReg="false" NextFile="Fort_Wayne"/>
<ROW File="Freetown" Component_="Abidjan" FileName="Freetown" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Freetown" SelfReg="false" NextFile="Gaborone"/>
<ROW File="Funafuti" Component_="Apia" FileName="Funafuti" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Funafuti" SelfReg="false" NextFile="Galapagos"/>
<ROW File="GB" Component_="CET" FileName="GB" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\GB" SelfReg="false" NextFile="GBEire"/>
<ROW File="GBEire" Component_="CET" FileName="GB-Eire" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\GB-Eire" SelfReg="false" NextFile="GMT_1"/>
<ROW File="GMT" Component_="GMT" FileName="GMT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT" SelfReg="false" NextFile="GMT0"/>
<ROW File="GMT0" Component_="GMT" FileName="GMT_0~1|GMT+0" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+0" SelfReg="false" NextFile="GMT1"/>
<ROW File="GMT0_1" Component_="GMT" FileName="GMT-0" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-0" SelfReg="false" NextFile="GMT1_1"/>
<ROW File="GMT0_2" Component_="GMT" FileName="GMT0" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT0" SelfReg="false" NextFile="Greenwich"/>
<ROW File="GMT0_3" Component_="CET" FileName="GMT_0~1|GMT+0" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\GMT+0" SelfReg="false" NextFile="GMT0_4"/>
<ROW File="GMT0_4" Component_="CET" FileName="GMT-0" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\GMT-0" SelfReg="false" NextFile="GMT0_5"/>
<ROW File="GMT0_5" Component_="CET" FileName="GMT0" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\GMT0" SelfReg="false" NextFile="Greenwich_1"/>
<ROW File="GMT1" Component_="GMT" FileName="GMT_1~1|GMT+1" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+1" SelfReg="false" NextFile="GMT10"/>
<ROW File="GMT10" Component_="GMT" FileName="GMT_10~1|GMT+10" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+10" SelfReg="false" NextFile="GMT11"/>
<ROW File="GMT10_1" Component_="GMT" FileName="GMT-10" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-10" SelfReg="false" NextFile="GMT11_1"/>
<ROW File="GMT11" Component_="GMT" FileName="GMT_11~1|GMT+11" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+11" SelfReg="false" NextFile="GMT12"/>
<ROW File="GMT11_1" Component_="GMT" FileName="GMT-11" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-11" SelfReg="false" NextFile="GMT12_1"/>
<ROW File="GMT12" Component_="GMT" FileName="GMT_12~1|GMT+12" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+12" SelfReg="false" NextFile="GMT2"/>
<ROW File="GMT12_1" Component_="GMT" FileName="GMT-12" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-12" SelfReg="false" NextFile="GMT13"/>
<ROW File="GMT13" Component_="GMT" FileName="GMT-13" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-13" SelfReg="false" NextFile="GMT14"/>
<ROW File="GMT14" Component_="GMT" FileName="GMT-14" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-14" SelfReg="false" NextFile="GMT2_1"/>
<ROW File="GMT1_1" Component_="GMT" FileName="GMT-1" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-1" SelfReg="false" NextFile="GMT10_1"/>
<ROW File="GMT2" Component_="GMT" FileName="GMT_2~1|GMT+2" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+2" SelfReg="false" NextFile="GMT3"/>
<ROW File="GMT2_1" Component_="GMT" FileName="GMT-2" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-2" SelfReg="false" NextFile="GMT3_1"/>
<ROW File="GMT3" Component_="GMT" FileName="GMT_3~1|GMT+3" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+3" SelfReg="false" NextFile="GMT4"/>
<ROW File="GMT3_1" Component_="GMT" FileName="GMT-3" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-3" SelfReg="false" NextFile="GMT4_1"/>
<ROW File="GMT4" Component_="GMT" FileName="GMT_4~1|GMT+4" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+4" SelfReg="false" NextFile="GMT5"/>
<ROW File="GMT4_1" Component_="GMT" FileName="GMT-4" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-4" SelfReg="false" NextFile="GMT5_1"/>
<ROW File="GMT5" Component_="GMT" FileName="GMT_5~1|GMT+5" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+5" SelfReg="false" NextFile="GMT6"/>
<ROW File="GMT5_1" Component_="GMT" FileName="GMT-5" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-5" SelfReg="false" NextFile="GMT6_1"/>
<ROW File="GMT6" Component_="GMT" FileName="GMT_6~1|GMT+6" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+6" SelfReg="false" NextFile="GMT7"/>
<ROW File="GMT6_1" Component_="GMT" FileName="GMT-6" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-6" SelfReg="false" NextFile="GMT7_1"/>
<ROW File="GMT7" Component_="GMT" FileName="GMT_7~1|GMT+7" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+7" SelfReg="false" NextFile="GMT8"/>
<ROW File="GMT7_1" Component_="GMT" FileName="GMT-7" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-7" SelfReg="false" NextFile="GMT8_1"/>
<ROW File="GMT8" Component_="GMT" FileName="GMT_8~1|GMT+8" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+8" SelfReg="false" NextFile="GMT9"/>
<ROW File="GMT8_1" Component_="GMT" FileName="GMT-8" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-8" SelfReg="false" NextFile="GMT9_1"/>
<ROW File="GMT9" Component_="GMT" FileName="GMT_9~1|GMT+9" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT+9" SelfReg="false" NextFile="GMT0_1"/>
<ROW File="GMT9_1" Component_="GMT" FileName="GMT-9" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\GMT-9" SelfReg="false" NextFile="GMT0_2"/>
<ROW File="GMT_1" Component_="CET" FileName="GMT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\GMT" SelfReg="false" NextFile="GMT0_3"/>
<ROW File="Gaborone" Component_="Abidjan" FileName="Gaborone" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Gaborone" SelfReg="false" NextFile="Harare"/>
<ROW File="Galapagos" Component_="Apia" FileName="GALAPA~1|Galapagos" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Galapagos" SelfReg="false" NextFile="Gambier"/>
<ROW File="Gambier" Component_="Apia" FileName="Gambier" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Gambier" SelfReg="false" NextFile="Guadalcanal"/>
<ROW File="Gaza" Component_="Aden" FileName="Gaza" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Gaza" SelfReg="false" NextFile="Harbin"/>
<ROW File="General" Component_="BajaNorte" FileName="General" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Mexico\General" SelfReg="false" NextFile="MST"/>
<ROW File="Gibraltar" Component_="Amsterdam" FileName="GIBRAL~1|Gibraltar" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Gibraltar" SelfReg="false" NextFile="Guernsey"/>
<ROW File="Glace_Bay" Component_="Adak" FileName="GLACE_~1|Glace_Bay" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Glace_Bay" SelfReg="false" NextFile="Godthab"/>
<ROW File="Godthab" Component_="Adak" FileName="Godthab" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Godthab" SelfReg="false" NextFile="Goose_Bay"/>
<ROW File="Goose_Bay" Component_="Adak" FileName="GOOSE_~1|Goose_Bay" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Goose_Bay" SelfReg="false" NextFile="Grand_Turk"/>
<ROW File="Grand_Turk" Component_="Adak" FileName="GRAND_~1|Grand_Turk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Grand_Turk" SelfReg="false" NextFile="Grenada"/>
<ROW File="Greenwich" Component_="GMT" FileName="GREENW~1|Greenwich" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\Greenwich" SelfReg="false" NextFile="UCT"/>
<ROW File="Greenwich_1" Component_="CET" FileName="GREENW~1|Greenwich" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Greenwich" SelfReg="false" NextFile="Hongkong"/>
<ROW File="Grenada" Component_="Adak" FileName="Grenada" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Grenada" SelfReg="false" NextFile="Guadeloupe"/>
<ROW File="Guadalcanal" Component_="Apia" FileName="GUADAL~1|Guadalcanal" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Guadalcanal" SelfReg="false" NextFile="Guam"/>
<ROW File="Guadeloupe" Component_="Adak" FileName="GUADEL~1|Guadeloupe" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Guadeloupe" SelfReg="false" NextFile="Guatemala"/>
<ROW File="Guam" Component_="Apia" FileName="Guam" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Guam" SelfReg="false" NextFile="Honolulu"/>
<ROW File="Guatemala" Component_="Adak" FileName="GUATEM~1|Guatemala" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Guatemala" SelfReg="false" NextFile="Guayaquil"/>
<ROW File="Guayaquil" Component_="Adak" FileName="GUAYAQ~1|Guayaquil" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Guayaquil" SelfReg="false" NextFile="Guyana"/>
<ROW File="Guernsey" Component_="Amsterdam" FileName="Guernsey" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Guernsey" SelfReg="false" NextFile="Helsinki"/>
<ROW File="Guyana" Component_="Adak" FileName="Guyana" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Guyana" SelfReg="false" NextFile="Halifax"/>
<ROW File="HST" Component_="CET" FileName="HST" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\HST" SelfReg="false" NextFile="Iceland"/>
<ROW File="HST10" Component_="AST4" FileName="HST10" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\HST10" SelfReg="false" NextFile="MST7"/>
<ROW File="Halifax" Component_="Adak" FileName="Halifax" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Halifax" SelfReg="false" NextFile="Havana"/>
<ROW File="Harare" Component_="Abidjan" FileName="Harare" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Harare" SelfReg="false" NextFile="Johannesburg"/>
<ROW File="Harbin" Component_="Aden" FileName="Harbin" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Harbin" SelfReg="false" NextFile="Hebron"/>
<ROW File="Havana" Component_="Adak" FileName="Havana" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Havana" SelfReg="false" NextFile="Hermosillo"/>
<ROW File="Hawaii" Component_="Alaska" FileName="Hawaii" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Hawaii" SelfReg="false" NextFile="IndianaStarke"/>
<ROW File="Hebron" Component_="Aden" FileName="Hebron" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Hebron" SelfReg="false" NextFile="Hong_Kong"/>
<ROW File="Helsinki" Component_="Amsterdam" FileName="Helsinki" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Helsinki" SelfReg="false" NextFile="Isle_of_Man"/>
<ROW File="Helvetica.afm" Component_="CourierBold.afm" FileName="HELVET~4.AFM|Helvetica.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Helvetica.afm" SelfReg="false" NextFile="readme.txt"/>
<ROW File="HelveticaBold.afm" Component_="CourierBold.afm" FileName="HELVET~1.AFM|Helvetica-Bold.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Helvetica-Bold.afm" SelfReg="false" NextFile="HelveticaBoldOblique.afm"/>
<ROW File="HelveticaBoldOblique.afm" Component_="CourierBold.afm" FileName="HELVET~2.AFM|Helvetica-BoldOblique.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Helvetica-BoldOblique.afm" SelfReg="false" NextFile="HelveticaOblique.afm"/>
<ROW File="HelveticaOblique.afm" Component_="CourierBold.afm" FileName="HELVET~3.AFM|Helvetica-Oblique.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Helvetica-Oblique.afm" SelfReg="false" NextFile="Helvetica.afm"/>
<ROW File="Hermosillo" Component_="Adak" FileName="HERMOS~1|Hermosillo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Hermosillo" SelfReg="false" NextFile="Indianapolis"/>
<ROW File="Ho_Chi_Minh" Component_="Aden" FileName="HO_CHI~1|Ho_Chi_Minh" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Ho_Chi_Minh" SelfReg="false" NextFile="Irkutsk"/>
<ROW File="Hobart" Component_="ACT" FileName="Hobart" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Hobart" SelfReg="false" NextFile="LHI"/>
<ROW File="Hong_Kong" Component_="Aden" FileName="HONG_K~1|Hong_Kong" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Hong_Kong" SelfReg="false" NextFile="Hovd"/>
<ROW File="Hongkong" Component_="CET" FileName="Hongkong" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Hongkong" SelfReg="false" NextFile="HST"/>
<ROW File="Honolulu" Component_="Apia" FileName="Honolulu" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Honolulu" SelfReg="false" NextFile="Johnston"/>
<ROW File="Hovd" Component_="Aden" FileName="Hovd" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Hovd" SelfReg="false" NextFile="Ho_Chi_Minh"/>
<ROW File="Iceland" Component_="CET" FileName="Iceland" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Iceland" SelfReg="false" NextFile="Antananarivo"/>
<ROW File="IndianaStarke" Component_="Alaska" FileName="INDIAN~1|Indiana-Starke" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Indiana-Starke" SelfReg="false" NextFile="Michigan"/>
<ROW File="Indianapolis" Component_="Indianapolis" FileName="INDIAN~1|Indianapolis" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Indiana\Indianapolis" SelfReg="false" NextFile="Knox"/>
<ROW File="Indianapolis_1" Component_="Adak" FileName="INDIAN~1|Indianapolis" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Indianapolis" SelfReg="false" NextFile="Inuvik"/>
<ROW File="Inuvik" Component_="Adak" FileName="Inuvik" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Inuvik" SelfReg="false" NextFile="Iqaluit"/>
<ROW File="Iqaluit" Component_="Adak" FileName="Iqaluit" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Iqaluit" SelfReg="false" NextFile="Jamaica"/>
<ROW File="Iran" Component_="CET" FileName="Iran" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Iran" SelfReg="false" NextFile="Israel"/>
<ROW File="Irkutsk" Component_="Aden" FileName="Irkutsk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Irkutsk" SelfReg="false" NextFile="Istanbul"/>
<ROW File="Isle_of_Man" Component_="Amsterdam" FileName="ISLE_O~1|Isle_of_Man" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Isle_of_Man" SelfReg="false" NextFile="Istanbul_1"/>
<ROW File="Israel" Component_="CET" FileName="Israel" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Israel" SelfReg="false" NextFile="Jamaica_1"/>
<ROW File="Istanbul" Component_="Aden" FileName="Istanbul" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Istanbul" SelfReg="false" NextFile="Jakarta"/>
<ROW File="Istanbul_1" Component_="Amsterdam" FileName="Istanbul" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Istanbul" SelfReg="false" NextFile="Jersey"/>
<ROW File="Jakarta" Component_="Aden" FileName="Jakarta" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Jakarta" SelfReg="false" NextFile="Jayapura"/>
<ROW File="Jamaica" Component_="Adak" FileName="Jamaica" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Jamaica" SelfReg="false" NextFile="Jujuy_1"/>
<ROW File="Jamaica_1" Component_="CET" FileName="Jamaica" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Jamaica" SelfReg="false" NextFile="Japan"/>
<ROW File="Jan_Mayen" Component_="Azores" FileName="JAN_MA~1|Jan_Mayen" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\Jan_Mayen" SelfReg="false" NextFile="Madeira"/>
<ROW File="Japan" Component_="CET" FileName="Japan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Japan" SelfReg="false" NextFile="Kwajalein"/>
<ROW File="Jayapura" Component_="Aden" FileName="Jayapura" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Jayapura" SelfReg="false" NextFile="Jerusalem"/>
<ROW File="Jersey" Component_="Amsterdam" FileName="Jersey" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Jersey" SelfReg="false" NextFile="Kaliningrad"/>
<ROW File="Jerusalem" Component_="Aden" FileName="JERUSA~1|Jerusalem" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Jerusalem" SelfReg="false" NextFile="Kabul"/>
<ROW File="Johannesburg" Component_="Abidjan" FileName="JOHANN~1|Johannesburg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Johannesburg" SelfReg="false" NextFile="Juba"/>
<ROW File="Johnston" Component_="Apia" FileName="Johnston" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Johnston" SelfReg="false" NextFile="Kiritimati"/>
<ROW File="Juba" Component_="Abidjan" FileName="Juba" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Juba" SelfReg="false" NextFile="Kampala"/>
<ROW File="Jujuy" Component_="Buenos_Aires" FileName="Jujuy" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\Jujuy" SelfReg="false" NextFile="La_Rioja"/>
<ROW File="Jujuy_1" Component_="Adak" FileName="Jujuy" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Jujuy" SelfReg="false" NextFile="Juneau"/>
<ROW File="Juneau" Component_="Adak" FileName="Juneau" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Juneau" SelfReg="false" NextFile="Louisville"/>
<ROW File="Kabul" Component_="Aden" FileName="Kabul" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Kabul" SelfReg="false" NextFile="Kamchatka"/>
<ROW File="Kaliningrad" Component_="Amsterdam" FileName="KALINI~1|Kaliningrad" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Kaliningrad" SelfReg="false" NextFile="Kiev"/>
<ROW File="Kamchatka" Component_="Aden" FileName="KAMCHA~1|Kamchatka" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Kamchatka" SelfReg="false" NextFile="Karachi"/>
<ROW File="Kampala" Component_="Abidjan" FileName="Kampala" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Kampala" SelfReg="false" NextFile="Khartoum"/>
<ROW File="Karachi" Component_="Aden" FileName="Karachi" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Karachi" SelfReg="false" NextFile="Kashgar"/>
<ROW File="Kashgar" Component_="Aden" FileName="Kashgar" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Kashgar" SelfReg="false" NextFile="Kathmandu"/>
<ROW File="Kathmandu" Component_="Aden" FileName="KATHMA~1|Kathmandu" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Kathmandu" SelfReg="false" NextFile="Katmandu"/>
<ROW File="Katmandu" Component_="Aden" FileName="Katmandu" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Katmandu" SelfReg="false" NextFile="Khandyga"/>
<ROW File="Kerguelen" Component_="Antananarivo" FileName="KERGUE~1|Kerguelen" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Indian\Kerguelen" SelfReg="false" NextFile="Mahe"/>
<ROW File="Khandyga" Component_="Aden" FileName="Khandyga" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Khandyga" SelfReg="false" NextFile="Kolkata"/>
<ROW File="Khartoum" Component_="Abidjan" FileName="Khartoum" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Khartoum" SelfReg="false" NextFile="Kigali"/>
<ROW File="Kiev" Component_="Amsterdam" FileName="Kiev" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Kiev" SelfReg="false" NextFile="Lisbon"/>
<ROW File="Kigali" Component_="Abidjan" FileName="Kigali" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Kigali" SelfReg="false" NextFile="Kinshasa"/>
<ROW File="Kinshasa" Component_="Abidjan" FileName="Kinshasa" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Kinshasa" SelfReg="false" NextFile="Lagos"/>
<ROW File="Kiritimati" Component_="Apia" FileName="KIRITI~1|Kiritimati" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Kiritimati" SelfReg="false" NextFile="Kosrae"/>
<ROW File="Knox" Component_="Indianapolis" FileName="Knox" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Indiana\Knox" SelfReg="false" NextFile="Marengo"/>
<ROW File="Knox_IN" Component_="Adak" FileName="Knox_IN" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Knox_IN" SelfReg="false" NextFile="Kralendijk"/>
<ROW File="Kolkata" Component_="Aden" FileName="Kolkata" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Kolkata" SelfReg="false" NextFile="Krasnoyarsk"/>
<ROW File="Kosrae" Component_="Apia" FileName="Kosrae" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Kosrae" SelfReg="false" NextFile="Kwajalein_1"/>
<ROW File="Kralendijk" Component_="Adak" FileName="KRALEN~1|Kralendijk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Kralendijk" SelfReg="false" NextFile="La_Paz"/>
<ROW File="Krasnoyarsk" Component_="Aden" FileName="KRASNO~1|Krasnoyarsk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Krasnoyarsk" SelfReg="false" NextFile="Kuala_Lumpur"/>
<ROW File="Kuala_Lumpur" Component_="Aden" FileName="KUALA_~1|Kuala_Lumpur" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Kuala_Lumpur" SelfReg="false" NextFile="Kuching"/>
<ROW File="Kuching" Component_="Aden" FileName="Kuching" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Kuching" SelfReg="false" NextFile="Kuwait"/>
<ROW File="Kuwait" Component_="Aden" FileName="Kuwait" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Kuwait" SelfReg="false" NextFile="Macao"/>
<ROW File="Kwajalein" Component_="CET" FileName="KWAJAL~1|Kwajalein" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Kwajalein" SelfReg="false" NextFile="Libya"/>
<ROW File="Kwajalein_1" Component_="Apia" FileName="KWAJAL~1|Kwajalein" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Kwajalein" SelfReg="false" NextFile="Majuro"/>
<ROW File="LHI" Component_="ACT" FileName="LHI" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\LHI" SelfReg="false" NextFile="Lindeman"/>
<ROW File="LICENSE" Component_="readme.txt" FileName="LICENSE" Attributes="0" SourcePath="AutoFP\LICENSE" SelfReg="false" NextFile="qgif4.dll"/>
<ROW File="LICENSE_STIX" Component_="cmb10.ttf" FileName="LICENS~1|LICENSE_STIX" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\LICENSE_STIX" SelfReg="false" NextFile="README.TXT_1"/>
<ROW File="La_Paz" Component_="Adak" FileName="La_Paz" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\La_Paz" SelfReg="false" NextFile="Lima"/>
<ROW File="La_Rioja" Component_="Buenos_Aires" FileName="La_Rioja" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\La_Rioja" SelfReg="false" NextFile="Mendoza"/>
<ROW File="Lagos" Component_="Abidjan" FileName="Lagos" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Lagos" SelfReg="false" NextFile="Libreville"/>
<ROW File="Libreville" Component_="Abidjan" FileName="LIBREV~1|Libreville" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Libreville" SelfReg="false" NextFile="Lome"/>
<ROW File="Libya" Component_="CET" FileName="Libya" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Libya" SelfReg="false" NextFile="MET"/>
<ROW File="Lima" Component_="Adak" FileName="Lima" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Lima" SelfReg="false" NextFile="Los_Angeles"/>
<ROW File="Lindeman" Component_="ACT" FileName="Lindeman" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Lindeman" SelfReg="false" NextFile="Lord_Howe"/>
<ROW File="Lisbon" Component_="Amsterdam" FileName="Lisbon" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Lisbon" SelfReg="false" NextFile="Ljubljana"/>
<ROW File="Ljubljana" Component_="Amsterdam" FileName="LJUBLJ~1|Ljubljana" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Ljubljana" SelfReg="false" NextFile="London"/>
<ROW File="Lome" Component_="Abidjan" FileName="Lome" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Lome" SelfReg="false" NextFile="Luanda"/>
<ROW File="London" Component_="Amsterdam" FileName="London" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\London" SelfReg="false" NextFile="Luxembourg"/>
<ROW File="Longyearbyen" Component_="Longyearbyen" FileName="LONGYE~1|Longyearbyen" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Arctic\Longyearbyen" SelfReg="false" NextFile="Aden"/>
<ROW File="Lord_Howe" Component_="ACT" FileName="LORD_H~1|Lord_Howe" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Lord_Howe" SelfReg="false" NextFile="Melbourne"/>
<ROW File="Los_Angeles" Component_="Adak" FileName="LOS_AN~1|Los_Angeles" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Los_Angeles" SelfReg="false" NextFile="Louisville_1"/>
<ROW File="Louisville" Component_="Louisville" FileName="LOUISV~1|Louisville" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Kentucky\Louisville" SelfReg="false" NextFile="Monticello"/>
<ROW File="Louisville_1" Component_="Adak" FileName="LOUISV~1|Louisville" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Louisville" SelfReg="false" NextFile="Lower_Princes"/>
<ROW File="Lower_Princes" Component_="Adak" FileName="LOWER_~1|Lower_Princes" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Lower_Princes" SelfReg="false" NextFile="Maceio"/>
<ROW File="Luanda" Component_="Abidjan" FileName="Luanda" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Luanda" SelfReg="false" NextFile="Lubumbashi"/>
<ROW File="Lubumbashi" Component_="Abidjan" FileName="LUBUMB~1|Lubumbashi" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Lubumbashi" SelfReg="false" NextFile="Lusaka"/>
<ROW File="Lusaka" Component_="Abidjan" FileName="Lusaka" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Lusaka" SelfReg="false" NextFile="Malabo"/>
<ROW File="Luxembourg" Component_="Amsterdam" FileName="LUXEMB~1|Luxembourg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Luxembourg" SelfReg="false" NextFile="Madrid"/>
<ROW File="MET" Component_="CET" FileName="MET" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\MET" SelfReg="false" NextFile="BajaNorte"/>
<ROW File="MST" Component_="CET" FileName="MST" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\MST" SelfReg="false" NextFile="MST7MDT"/>
<ROW File="MST7" Component_="AST4" FileName="MST7" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\MST7" SelfReg="false" NextFile="MST7MDT_1"/>
<ROW File="MST7MDT" Component_="CET" FileName="MST7MDT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\MST7MDT" SelfReg="false" NextFile="Navajo"/>
<ROW File="MST7MDT_1" Component_="AST4" FileName="MST7MDT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\MST7MDT" SelfReg="false" NextFile="PST8"/>
<ROW File="Macao" Component_="Aden" FileName="Macao" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Macao" SelfReg="false" NextFile="Macau"/>
<ROW File="Macau" Component_="Aden" FileName="Macau" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Macau" SelfReg="false" NextFile="Magadan"/>
<ROW File="Maceio" Component_="Adak" FileName="Maceio" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Maceio" SelfReg="false" NextFile="Managua"/>
<ROW File="Macquarie" Component_="Casey" FileName="MACQUA~1|Macquarie" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Antarctica\Macquarie" SelfReg="false" NextFile="Mawson"/>
<ROW File="Madeira" Component_="Azores" FileName="Madeira" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\Madeira" SelfReg="false" NextFile="Reykjavik"/>
<ROW File="Madrid" Component_="Amsterdam" FileName="Madrid" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Madrid" SelfReg="false" NextFile="Malta"/>
<ROW File="Magadan" Component_="Aden" FileName="Magadan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Magadan" SelfReg="false" NextFile="Makassar"/>
<ROW File="Mahe" Component_="Antananarivo" FileName="Mahe" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Indian\Mahe" SelfReg="false" NextFile="Maldives"/>
<ROW File="Majuro" Component_="Apia" FileName="Majuro" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Majuro" SelfReg="false" NextFile="Marquesas"/>
<ROW File="Makassar" Component_="Aden" FileName="Makassar" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Makassar" SelfReg="false" NextFile="Manila"/>
<ROW File="Malabo" Component_="Abidjan" FileName="Malabo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Malabo" SelfReg="false" NextFile="Maputo"/>
<ROW File="Maldives" Component_="Antananarivo" FileName="Maldives" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Indian\Maldives" SelfReg="false" NextFile="Mauritius"/>
<ROW File="Malta" Component_="Amsterdam" FileName="Malta" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Malta" SelfReg="false" NextFile="Mariehamn"/>
<ROW File="Managua" Component_="Adak" FileName="Managua" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Managua" SelfReg="false" NextFile="Manaus"/>
<ROW File="Manaus" Component_="Adak" FileName="Manaus" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Manaus" SelfReg="false" NextFile="Marigot"/>
<ROW File="Manila" Component_="Aden" FileName="Manila" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Manila" SelfReg="false" NextFile="Muscat"/>
<ROW File="Maputo" Component_="Abidjan" FileName="Maputo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Maputo" SelfReg="false" NextFile="Maseru"/>
<ROW File="Marengo" Component_="Indianapolis" FileName="Marengo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Indiana\Marengo" SelfReg="false" NextFile="Petersburg"/>
<ROW File="Mariehamn" Component_="Amsterdam" FileName="MARIEH~1|Mariehamn" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Mariehamn" SelfReg="false" NextFile="Minsk"/>
<ROW File="Marigot" Component_="Adak" FileName="Marigot" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Marigot" SelfReg="false" NextFile="Martinique"/>
<ROW File="Marquesas" Component_="Apia" FileName="MARQUE~1|Marquesas" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Marquesas" SelfReg="false" NextFile="Midway"/>
<ROW File="Martinique" Component_="Adak" FileName="MARTIN~1|Martinique" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Martinique" SelfReg="false" NextFile="Matamoros"/>
<ROW File="Maseru" Component_="Abidjan" FileName="Maseru" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Maseru" SelfReg="false" NextFile="Mbabane"/>
<ROW File="Matamoros" Component_="Adak" FileName="MATAMO~1|Matamoros" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Matamoros" SelfReg="false" NextFile="Mazatlan"/>
<ROW File="Mauritius" Component_="Antananarivo" FileName="MAURIT~1|Mauritius" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Indian\Mauritius" SelfReg="false" NextFile="Mayotte"/>
<ROW File="Mawson" Component_="Casey" FileName="Mawson" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Antarctica\Mawson" SelfReg="false" NextFile="McMurdo"/>
<ROW File="Mayotte" Component_="Antananarivo" FileName="Mayotte" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Indian\Mayotte" SelfReg="false" NextFile="Reunion"/>
<ROW File="Mazatlan" Component_="Adak" FileName="Mazatlan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Mazatlan" SelfReg="false" NextFile="Mendoza_1"/>
<ROW File="Mbabane" Component_="Abidjan" FileName="Mbabane" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Mbabane" SelfReg="false" NextFile="Mogadishu"/>
<ROW File="McMurdo" Component_="Casey" FileName="McMurdo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Antarctica\McMurdo" SelfReg="false" NextFile="Palmer"/>
<ROW File="Melbourne" Component_="ACT" FileName="MELBOU~1|Melbourne" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Melbourne" SelfReg="false" NextFile="North"/>
<ROW File="Mendoza" Component_="Buenos_Aires" FileName="Mendoza" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\Mendoza" SelfReg="false" NextFile="Rio_Gallegos"/>
<ROW File="Mendoza_1" Component_="Adak" FileName="Mendoza" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Mendoza" SelfReg="false" NextFile="Menominee"/>
<ROW File="Menominee" Component_="Adak" FileName="MENOMI~1|Menominee" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Menominee" SelfReg="false" NextFile="Merida"/>
<ROW File="Merida" Component_="Adak" FileName="Merida" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Merida" SelfReg="false" NextFile="Metlakatla"/>
<ROW File="Metlakatla" Component_="Adak" FileName="METLAK~1|Metlakatla" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Metlakatla" SelfReg="false" NextFile="Mexico_City"/>
<ROW File="Mexico_City" Component_="Adak" FileName="MEXICO~1|Mexico_City" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Mexico_City" SelfReg="false" NextFile="Miquelon"/>
<ROW File="Michigan" Component_="Alaska" FileName="Michigan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Michigan" SelfReg="false" NextFile="Mountain_1"/>
<ROW File="Midway" Component_="Apia" FileName="Midway" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Midway" SelfReg="false" NextFile="Nauru"/>
<ROW File="Minsk" Component_="Amsterdam" FileName="Minsk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Minsk" SelfReg="false" NextFile="Monaco"/>
<ROW File="Miquelon" Component_="Adak" FileName="Miquelon" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Miquelon" SelfReg="false" NextFile="Moncton"/>
<ROW File="Mogadishu" Component_="Abidjan" FileName="MOGADI~1|Mogadishu" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Mogadishu" SelfReg="false" NextFile="Monrovia"/>
<ROW File="Monaco" Component_="Amsterdam" FileName="Monaco" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Monaco" SelfReg="false" NextFile="Moscow"/>
<ROW File="Moncton" Component_="Adak" FileName="Moncton" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Moncton" SelfReg="false" NextFile="Monterrey"/>
<ROW File="Monrovia" Component_="Abidjan" FileName="Monrovia" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Monrovia" SelfReg="false" NextFile="Nairobi"/>
<ROW File="Monterrey" Component_="Adak" FileName="MONTER~1|Monterrey" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Monterrey" SelfReg="false" NextFile="Montevideo"/>
<ROW File="Montevideo" Component_="Adak" FileName="MONTEV~1|Montevideo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Montevideo" SelfReg="false" NextFile="Montreal"/>
<ROW File="Monticello" Component_="Louisville" FileName="MONTIC~1|Monticello" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Kentucky\Monticello" SelfReg="false" NextFile="Knox_IN"/>
<ROW File="Montreal" Component_="Adak" FileName="Montreal" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Montreal" SelfReg="false" NextFile="Montserrat"/>
<ROW File="Montserrat" Component_="Adak" FileName="MONTSE~1|Montserrat" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Montserrat" SelfReg="false" NextFile="Nassau"/>
<ROW File="Moscow" Component_="Amsterdam" FileName="Moscow" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Moscow" SelfReg="false" NextFile="Nicosia_1"/>
<ROW File="Mountain" Component_="Atlantic" FileName="Mountain" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Canada\Mountain" SelfReg="false" NextFile="Newfoundland"/>
<ROW File="Mountain_1" Component_="Alaska" FileName="Mountain" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Mountain" SelfReg="false" NextFile="Pacific_1"/>
<ROW File="Muscat" Component_="Aden" FileName="Muscat" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Muscat" SelfReg="false" NextFile="Nicosia"/>
<ROW File="NSW" Component_="ACT" FileName="NSW" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\NSW" SelfReg="false" NextFile="Perth"/>
<ROW File="NZ" Component_="CET" FileName="NZ" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\NZ" SelfReg="false" NextFile="NZCHAT"/>
<ROW File="NZCHAT" Component_="CET" FileName="NZ-CHAT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\NZ-CHAT" SelfReg="false" NextFile="Apia"/>
<ROW File="Nairobi" Component_="Abidjan" FileName="Nairobi" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Nairobi" SelfReg="false" NextFile="Ndjamena"/>
<ROW File="Nassau" Component_="Adak" FileName="Nassau" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Nassau" SelfReg="false" NextFile="New_York"/>
<ROW File="Nauru" Component_="Apia" FileName="Nauru" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Nauru" SelfReg="false" NextFile="Niue"/>
<ROW File="Navajo" Component_="CET" FileName="Navajo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Navajo" SelfReg="false" NextFile="NZ"/>
<ROW File="Ndjamena" Component_="Abidjan" FileName="Ndjamena" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Ndjamena" SelfReg="false" NextFile="Niamey"/>
<ROW File="New_Salem" Component_="Beulah" FileName="NEW_SA~1|New_Salem" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\North_Dakota\New_Salem" SelfReg="false" NextFile="Ojinaga"/>
<ROW File="New_York" Component_="Adak" FileName="New_York" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\New_York" SelfReg="false" NextFile="Nipigon"/>
<ROW File="Newfoundland" Component_="Atlantic" FileName="NEWFOU~1|Newfoundland" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Canada\Newfoundland" SelfReg="false" NextFile="Pacific"/>
<ROW File="Niamey" Component_="Abidjan" FileName="Niamey" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Niamey" SelfReg="false" NextFile="Nouakchott"/>
<ROW File="Nicosia" Component_="Aden" FileName="Nicosia" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Nicosia" SelfReg="false" NextFile="Novokuznetsk"/>
<ROW File="Nicosia_1" Component_="Amsterdam" FileName="Nicosia" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Nicosia" SelfReg="false" NextFile="Oslo"/>
<ROW File="Nipigon" Component_="Adak" FileName="Nipigon" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Nipigon" SelfReg="false" NextFile="Nome"/>
<ROW File="Niue" Component_="Apia" FileName="Niue" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Niue" SelfReg="false" NextFile="Norfolk"/>
<ROW File="Nome" Component_="Adak" FileName="Nome" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Nome" SelfReg="false" NextFile="Noronha"/>
<ROW File="Norfolk" Component_="Apia" FileName="Norfolk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Norfolk" SelfReg="false" NextFile="Noumea"/>
<ROW File="Noronha" Component_="Adak" FileName="Noronha" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Noronha" SelfReg="false" NextFile="Beulah"/>
<ROW File="North" Component_="ACT" FileName="North" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\North" SelfReg="false" NextFile="NSW"/>
<ROW File="Nouakchott" Component_="Abidjan" FileName="NOUAKC~1|Nouakchott" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Nouakchott" SelfReg="false" NextFile="Ouagadougou"/>
<ROW File="Noumea" Component_="Apia" FileName="Noumea" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Noumea" SelfReg="false" NextFile="Pago_Pago"/>
<ROW File="Novokuznetsk" Component_="Aden" FileName="NOVOKU~1|Novokuznetsk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Novokuznetsk" SelfReg="false" NextFile="Novosibirsk"/>
<ROW File="Novosibirsk" Component_="Aden" FileName="NOVOSI~1|Novosibirsk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Novosibirsk" SelfReg="false" NextFile="Omsk"/>
<ROW File="Ojinaga" Component_="Adak" FileName="Ojinaga" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Ojinaga" SelfReg="false" NextFile="Panama"/>
<ROW File="Omsk" Component_="Aden" FileName="Omsk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Omsk" SelfReg="false" NextFile="Oral"/>
<ROW File="Oral" Component_="Aden" FileName="Oral" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Oral" SelfReg="false" NextFile="Phnom_Penh"/>
<ROW File="Oslo" Component_="Amsterdam" FileName="Oslo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Oslo" SelfReg="false" NextFile="Paris"/>
<ROW File="Ouagadougou" Component_="Abidjan" FileName="OUAGAD~1|Ouagadougou" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Ouagadougou" SelfReg="false" NextFile="PortoNovo"/>
<ROW File="PRC" Component_="CET" FileName="PRC" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\PRC" SelfReg="false" NextFile="PST8PDT"/>
<ROW File="PRF.otw" Component_="prf.opj" FileName="PRF.otw" Attributes="0" SourcePath="AutoFP\dist\prf2origin\prf2origin\origin\template\PRF.otw" SelfReg="false" NextFile="PRF_IMG.emf"/>
<ROW File="PRF_IMG.emf" Component_="prf.opj" FileName="PRF_IMG.emf" Attributes="0" SourcePath="AutoFP\dist\prf2origin\prf2origin\origin\template\PRF_IMG.emf" SelfReg="false" NextFile="PRF_IMG.otp"/>
<ROW File="PRF_IMG.otp" Component_="prf.opj" FileName="PRF_IMG.otp" Attributes="0" SourcePath="AutoFP\dist\prf2origin\prf2origin\origin\template\PRF_IMG.otp" SelfReg="false" NextFile="pyexpat.pyd"/>
<ROW File="PST8" Component_="AST4" FileName="PST8" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\PST8" SelfReg="false" NextFile="PST8PDT_1"/>
<ROW File="PST8PDT" Component_="CET" FileName="PST8PDT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\PST8PDT" SelfReg="false" NextFile="ROC"/>
<ROW File="PST8PDT_1" Component_="AST4" FileName="PST8PDT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\PST8PDT" SelfReg="false" NextFile="YST9"/>
<ROW File="Pacific" Component_="Atlantic" FileName="Pacific" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Canada\Pacific" SelfReg="false" NextFile="Saskatchewan"/>
<ROW File="PacificNew" Component_="Alaska" FileName="PACIFI~1|Pacific-New" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Pacific-New" SelfReg="false" NextFile="Samoa_1"/>
<ROW File="Pacific_1" Component_="Alaska" FileName="Pacific" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Pacific" SelfReg="false" NextFile="PacificNew"/>
<ROW File="Pago_Pago" Component_="Apia" FileName="PAGO_P~1|Pago_Pago" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Pago_Pago" SelfReg="false" NextFile="Palau"/>
<ROW File="Palau" Component_="Apia" FileName="Palau" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Palau" SelfReg="false" NextFile="Pitcairn"/>
<ROW File="Palmer" Component_="Casey" FileName="Palmer" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Antarctica\Palmer" SelfReg="false" NextFile="Rothera"/>
<ROW File="Panama" Component_="Adak" FileName="Panama" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Panama" SelfReg="false" NextFile="Pangnirtung"/>
<ROW File="Pangnirtung" Component_="Adak" FileName="PANGNI~1|Pangnirtung" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Pangnirtung" SelfReg="false" NextFile="Paramaribo"/>
<ROW File="Paramaribo" Component_="Adak" FileName="PARAMA~1|Paramaribo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Paramaribo" SelfReg="false" NextFile="Phoenix"/>
<ROW File="Paris" Component_="Amsterdam" FileName="Paris" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Paris" SelfReg="false" NextFile="Podgorica"/>
<ROW File="Perth" Component_="ACT" FileName="Perth" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Perth" SelfReg="false" NextFile="Queensland"/>
<ROW File="Petersburg" Component_="Indianapolis" FileName="PETERS~1|Petersburg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Indiana\Petersburg" SelfReg="false" NextFile="Tell_City"/>
<ROW File="Phnom_Penh" Component_="Aden" FileName="PHNOM_~1|Phnom_Penh" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Phnom_Penh" SelfReg="false" NextFile="Pontianak"/>
<ROW File="Phoenix" Component_="Adak" FileName="Phoenix" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Phoenix" SelfReg="false" NextFile="PortauPrince"/>
<ROW File="Pitcairn" Component_="Apia" FileName="Pitcairn" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Pitcairn" SelfReg="false" NextFile="Pohnpei"/>
<ROW File="Podgorica" Component_="Amsterdam" FileName="PODGOR~1|Podgorica" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Podgorica" SelfReg="false" NextFile="Prague"/>
<ROW File="Pohnpei" Component_="Apia" FileName="Pohnpei" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Pohnpei" SelfReg="false" NextFile="Ponape"/>
<ROW File="Poland" Component_="CET" FileName="Poland" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Poland" SelfReg="false" NextFile="Portugal"/>
<ROW File="Ponape" Component_="Apia" FileName="Ponape" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Ponape" SelfReg="false" NextFile="Port_Moresby"/>
<ROW File="Pontianak" Component_="Aden" FileName="PONTIA~1|Pontianak" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Pontianak" SelfReg="false" NextFile="Pyongyang"/>
<ROW File="Port_Moresby" Component_="Apia" FileName="PORT_M~1|Port_Moresby" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Port_Moresby" SelfReg="false" NextFile="Rarotonga"/>
<ROW File="Port_of_Spain" Component_="Adak" FileName="PORT_O~1|Port_of_Spain" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Port_of_Spain" SelfReg="false" NextFile="Puerto_Rico"/>
<ROW File="PortauPrince" Component_="Adak" FileName="PORT-A~1|Port-au-Prince" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Port-au-Prince" SelfReg="false" NextFile="Porto_Acre"/>
<ROW File="PortoNovo" Component_="Abidjan" FileName="PORTO-~1|Porto-Novo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Porto-Novo" SelfReg="false" NextFile="Sao_Tome"/>
<ROW File="Porto_Acre" Component_="Adak" FileName="PORTO_~1|Porto_Acre" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Porto_Acre" SelfReg="false" NextFile="Porto_Velho"/>
<ROW File="Porto_Velho" Component_="Adak" FileName="PORTO_~2|Porto_Velho" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Porto_Velho" SelfReg="false" NextFile="Port_of_Spain"/>
<ROW File="Portugal" Component_="CET" FileName="Portugal" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Portugal" SelfReg="false" NextFile="PRC"/>
<ROW File="Prague" Component_="Amsterdam" FileName="Prague" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Prague" SelfReg="false" NextFile="Riga"/>
<ROW File="Puerto_Rico" Component_="Adak" FileName="PUERTO~1|Puerto_Rico" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Puerto_Rico" SelfReg="false" NextFile="Rainy_River"/>
<ROW File="PyQt4.QtCore.pyd" Component_="autofp.ico" FileName="PYQT4Q~1.PYD|PyQt4.QtCore.pyd" Attributes="0" SourcePath="AutoFP\dist\PyQt4.QtCore.pyd" SelfReg="false" NextFile="PyQt4.QtGui.pyd"/>
<ROW File="PyQt4.QtGui.pyd" Component_="autofp.ico" FileName="PYQT4Q~2.PYD|PyQt4.QtGui.pyd" Attributes="0" SourcePath="AutoFP\dist\PyQt4.QtGui.pyd" SelfReg="false" NextFile="python27.dll"/>
<ROW File="Pyongyang" Component_="Aden" FileName="PYONGY~1|Pyongyang" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Pyongyang" SelfReg="false" NextFile="Qatar"/>
<ROW File="Qatar" Component_="Aden" FileName="Qatar" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Qatar" SelfReg="false" NextFile="Qyzylorda"/>
<ROW File="QtCore4.dll" Component_="QtCore4.dll" FileName="QtCore4.dll" Attributes="0" SourcePath="AutoFP\dist\QtCore4.dll" SelfReg="false" NextFile="QtGui4.dll"/>
<ROW File="QtGui4.dll" Component_="QtGui4.dll" FileName="QtGui4.dll" Attributes="0" SourcePath="AutoFP\dist\QtGui4.dll" SelfReg="false" NextFile="select.pyd"/>
<ROW File="Queensland" Component_="ACT" FileName="QUEENS~1|Queensland" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Queensland" SelfReg="false" NextFile="South"/>
<ROW File="Qyzylorda" Component_="Aden" FileName="QYZYLO~1|Qyzylorda" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Qyzylorda" SelfReg="false" NextFile="Rangoon"/>
<ROW File="README" Component_="anilabel.tcl" FileName="README" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\README" SelfReg="false" NextFile="rmt"/>
<ROW File="README.TXT_1" Component_="cmb10.ttf" FileName="README.TXT" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\README.TXT" SelfReg="false" NextFile="RELEASENOTES.TXT"/>
<ROW File="README_1" Component_="logo.eps" FileName="README" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\images\README" SelfReg="false" NextFile="taiku.gif"/>
<ROW File="RELEASENOTES.TXT" Component_="cmb10.ttf" FileName="RELEAS~1.TXT|RELEASENOTES.TXT" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\RELEASENOTES.TXT" SelfReg="false" NextFile="STIXGeneral.ttf"/>
<ROW File="ROC" Component_="CET" FileName="ROC" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\ROC" SelfReg="false" NextFile="ROK"/>
<ROW File="ROK" Component_="CET" FileName="ROK" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\ROK" SelfReg="false" NextFile="Singapore_1"/>
<ROW File="Rainy_River" Component_="Adak" FileName="RAINY_~1|Rainy_River" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Rainy_River" SelfReg="false" NextFile="Rankin_Inlet"/>
<ROW File="Rangoon" Component_="Aden" FileName="Rangoon" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Rangoon" SelfReg="false" NextFile="Riyadh"/>
<ROW File="Rankin_Inlet" Component_="Adak" FileName="RANKIN~1|Rankin_Inlet" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Rankin_Inlet" SelfReg="false" NextFile="Recife"/>
<ROW File="Rarotonga" Component_="Apia" FileName="RAROTO~1|Rarotonga" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Rarotonga" SelfReg="false" NextFile="Saipan"/>
<ROW File="Recife" Component_="Adak" FileName="Recife" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Recife" SelfReg="false" NextFile="Regina"/>
<ROW File="Regina" Component_="Adak" FileName="Regina" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Regina" SelfReg="false" NextFile="Resolute"/>
<ROW File="Resolute" Component_="Adak" FileName="Resolute" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Resolute" SelfReg="false" NextFile="Rio_Branco"/>
<ROW File="Reunion" Component_="Antananarivo" FileName="Reunion" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Indian\Reunion" SelfReg="false" NextFile="Iran"/>
<ROW File="Reykjavik" Component_="Azores" FileName="REYKJA~1|Reykjavik" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\Reykjavik" SelfReg="false" NextFile="South_Georgia"/>
<ROW File="Riga" Component_="Amsterdam" FileName="Riga" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Riga" SelfReg="false" NextFile="Rome"/>
<ROW File="Rio_Branco" Component_="Adak" FileName="RIO_BR~1|Rio_Branco" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Rio_Branco" SelfReg="false" NextFile="Rosario"/>
<ROW File="Rio_Gallegos" Component_="Buenos_Aires" FileName="RIO_GA~1|Rio_Gallegos" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\Rio_Gallegos" SelfReg="false" NextFile="Salta"/>
<ROW File="Riyadh" Component_="Aden" FileName="Riyadh" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Riyadh" SelfReg="false" NextFile="Saigon"/>
<ROW File="Rome" Component_="Amsterdam" FileName="Rome" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Rome" SelfReg="false" NextFile="Samara"/>
<ROW File="Rosario" Component_="Adak" FileName="Rosario" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Rosario" SelfReg="false" NextFile="Santarem"/>
<ROW File="Rothera" Component_="Casey" FileName="Rothera" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Antarctica\Rothera" SelfReg="false" NextFile="South_Pole"/>
<ROW File="STIXGeneral.ttf" Component_="cmb10.ttf" FileName="STIXGE~1.TTF|STIXGeneral.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXGeneral.ttf" SelfReg="false" NextFile="STIXGeneralBol.ttf"/>
<ROW File="STIXGeneralBol.ttf" Component_="cmb10.ttf" FileName="STIXGE~2.TTF|STIXGeneralBol.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXGeneralBol.ttf" SelfReg="false" NextFile="STIXGeneralBolIta.ttf"/>
<ROW File="STIXGeneralBolIta.ttf" Component_="cmb10.ttf" FileName="STIXGE~3.TTF|STIXGeneralBolIta.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXGeneralBolIta.ttf" SelfReg="false" NextFile="STIXGeneralItalic.ttf"/>
<ROW File="STIXGeneralItalic.ttf" Component_="cmb10.ttf" FileName="STIXGE~4.TTF|STIXGeneralItalic.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXGeneralItalic.ttf" SelfReg="false" NextFile="STIXNonUni.ttf"/>
<ROW File="STIXNonUni.ttf" Component_="cmb10.ttf" FileName="STIXNO~1.TTF|STIXNonUni.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXNonUni.ttf" SelfReg="false" NextFile="STIXNonUniBol.ttf"/>
<ROW File="STIXNonUniBol.ttf" Component_="cmb10.ttf" FileName="STIXNO~2.TTF|STIXNonUniBol.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXNonUniBol.ttf" SelfReg="false" NextFile="STIXNonUniBolIta.ttf"/>
<ROW File="STIXNonUniBolIta.ttf" Component_="cmb10.ttf" FileName="STIXNO~3.TTF|STIXNonUniBolIta.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXNonUniBolIta.ttf" SelfReg="false" NextFile="STIXNonUniIta.ttf"/>
<ROW File="STIXNonUniIta.ttf" Component_="cmb10.ttf" FileName="STIXNO~4.TTF|STIXNonUniIta.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXNonUniIta.ttf" SelfReg="false" NextFile="STIXSizFiveSymReg.ttf"/>
<ROW File="STIXSizFiveSymReg.ttf" Component_="cmb10.ttf" FileName="STIXSI~1.TTF|STIXSizFiveSymReg.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXSizFiveSymReg.ttf" SelfReg="false" NextFile="STIXSizFourSymBol.ttf"/>
<ROW File="STIXSizFourSymBol.ttf" Component_="cmb10.ttf" FileName="STIXSI~2.TTF|STIXSizFourSymBol.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXSizFourSymBol.ttf" SelfReg="false" NextFile="STIXSizFourSymReg.ttf"/>
<ROW File="STIXSizFourSymReg.ttf" Component_="cmb10.ttf" FileName="STIXSI~3.TTF|STIXSizFourSymReg.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXSizFourSymReg.ttf" SelfReg="false" NextFile="STIXSizOneSymBol.ttf"/>
<ROW File="STIXSizOneSymBol.ttf" Component_="cmb10.ttf" FileName="STIXSI~4.TTF|STIXSizOneSymBol.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXSizOneSymBol.ttf" SelfReg="false" NextFile="STIXSizOneSymReg.ttf"/>
<ROW File="STIXSizOneSymReg.ttf" Component_="cmb10.ttf" FileName="STIXSI~5.TTF|STIXSizOneSymReg.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXSizOneSymReg.ttf" SelfReg="false" NextFile="STIXSizThreeSymBol.ttf"/>
<ROW File="STIXSizThreeSymBol.ttf" Component_="cmb10.ttf" FileName="STIXSI~6.TTF|STIXSizThreeSymBol.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXSizThreeSymBol.ttf" SelfReg="false" NextFile="STIXSizThreeSymReg.ttf"/>
<ROW File="STIXSizThreeSymReg.ttf" Component_="cmb10.ttf" FileName="STIXSI~7.TTF|STIXSizThreeSymReg.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXSizThreeSymReg.ttf" SelfReg="false" NextFile="STIXSizTwoSymBol.ttf"/>
<ROW File="STIXSizTwoSymBol.ttf" Component_="cmb10.ttf" FileName="STIXSI~8.TTF|STIXSizTwoSymBol.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXSizTwoSymBol.ttf" SelfReg="false" NextFile="STIXSizTwoSymReg.ttf"/>
<ROW File="STIXSizTwoSymReg.ttf" Component_="cmb10.ttf" FileName="STIXSI~9.TTF|STIXSizTwoSymReg.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\STIXSizTwoSymReg.ttf" SelfReg="false" NextFile="Vera.ttf"/>
<ROW File="Saigon" Component_="Aden" FileName="Saigon" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Saigon" SelfReg="false" NextFile="Sakhalin"/>
<ROW File="Saipan" Component_="Apia" FileName="Saipan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Saipan" SelfReg="false" NextFile="Samoa"/>
<ROW File="Sakhalin" Component_="Aden" FileName="Sakhalin" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Sakhalin" SelfReg="false" NextFile="Samarkand"/>
<ROW File="Salta" Component_="Buenos_Aires" FileName="Salta" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\Salta" SelfReg="false" NextFile="San_Juan"/>
<ROW File="Samara" Component_="Amsterdam" FileName="Samara" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Samara" SelfReg="false" NextFile="San_Marino"/>
<ROW File="Samarkand" Component_="Aden" FileName="SAMARK~1|Samarkand" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Samarkand" SelfReg="false" NextFile="Seoul"/>
<ROW File="Samoa" Component_="Apia" FileName="Samoa" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Samoa" SelfReg="false" NextFile="Tahiti"/>
<ROW File="Samoa_1" Component_="Alaska" FileName="Samoa" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\US\Samoa" SelfReg="false" NextFile="UTC_1"/>
<ROW File="San_Juan" Component_="Buenos_Aires" FileName="San_Juan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\San_Juan" SelfReg="false" NextFile="San_Luis"/>
<ROW File="San_Luis" Component_="Buenos_Aires" FileName="San_Luis" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\San_Luis" SelfReg="false" NextFile="Tucuman"/>
<ROW File="San_Marino" Component_="Amsterdam" FileName="SAN_MA~1|San_Marino" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\San_Marino" SelfReg="false" NextFile="Sarajevo"/>
<ROW File="Santa_Isabel" Component_="Adak" FileName="SANTA_~1|Santa_Isabel" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Santa_Isabel" SelfReg="false" NextFile="Santiago"/>
<ROW File="Santarem" Component_="Adak" FileName="Santarem" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Santarem" SelfReg="false" NextFile="Santa_Isabel"/>
<ROW File="Santiago" Component_="Adak" FileName="Santiago" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Santiago" SelfReg="false" NextFile="Santo_Domingo"/>
<ROW File="Santo_Domingo" Component_="Adak" FileName="SANTO_~1|Santo_Domingo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Santo_Domingo" SelfReg="false" NextFile="Sao_Paulo"/>
<ROW File="Sao_Paulo" Component_="Adak" FileName="SAO_PA~1|Sao_Paulo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Sao_Paulo" SelfReg="false" NextFile="Scoresbysund"/>
<ROW File="Sao_Tome" Component_="Abidjan" FileName="Sao_Tome" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Sao_Tome" SelfReg="false" NextFile="Timbuktu"/>
<ROW File="Sarajevo" Component_="Amsterdam" FileName="Sarajevo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Sarajevo" SelfReg="false" NextFile="Simferopol"/>
<ROW File="Saskatchewan" Component_="Atlantic" FileName="SASKAT~1|Saskatchewan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Canada\Saskatchewan" SelfReg="false" NextFile="Yukon"/>
<ROW File="Scoresbysund" Component_="Adak" FileName="SCORES~1|Scoresbysund" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Scoresbysund" SelfReg="false" NextFile="Shiprock"/>
<ROW File="Seoul" Component_="Aden" FileName="Seoul" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Seoul" SelfReg="false" NextFile="Shanghai"/>
<ROW File="Shanghai" Component_="Aden" FileName="Shanghai" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Shanghai" SelfReg="false" NextFile="Singapore"/>
<ROW File="Shiprock" Component_="Adak" FileName="Shiprock" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Shiprock" SelfReg="false" NextFile="Sitka"/>
<ROW File="Simferopol" Component_="Amsterdam" FileName="SIMFER~1|Simferopol" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Simferopol" SelfReg="false" NextFile="Skopje"/>
<ROW File="Singapore" Component_="Aden" FileName="SINGAP~1|Singapore" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Singapore" SelfReg="false" NextFile="Taipei"/>
<ROW File="Singapore_1" Component_="CET" FileName="SINGAP~1|Singapore" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Singapore" SelfReg="false" NextFile="AST4"/>
<ROW File="Sitka" Component_="Adak" FileName="Sitka" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Sitka" SelfReg="false" NextFile="St_Barthelemy"/>
<ROW File="Skopje" Component_="Amsterdam" FileName="Skopje" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Skopje" SelfReg="false" NextFile="Sofia"/>
<ROW File="Sofia" Component_="Amsterdam" FileName="Sofia" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Sofia" SelfReg="false" NextFile="Stockholm"/>
<ROW File="South" Component_="ACT" FileName="South" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\South" SelfReg="false" NextFile="Sydney"/>
<ROW File="South_Georgia" Component_="Azores" FileName="SOUTH_~1|South_Georgia" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\South_Georgia" SelfReg="false" NextFile="Stanley"/>
<ROW File="South_Pole" Component_="Casey" FileName="SOUTH_~1|South_Pole" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Antarctica\South_Pole" SelfReg="false" NextFile="Syowa"/>
<ROW File="St_Barthelemy" Component_="Adak" FileName="ST_BAR~1|St_Barthelemy" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\St_Barthelemy" SelfReg="false" NextFile="St_Johns"/>
<ROW File="St_Helena" Component_="Azores" FileName="ST_HEL~1|St_Helena" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\St_Helena" SelfReg="false" NextFile="ACT"/>
<ROW File="St_Johns" Component_="Adak" FileName="St_Johns" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\St_Johns" SelfReg="false" NextFile="St_Kitts"/>
<ROW File="St_Kitts" Component_="Adak" FileName="St_Kitts" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\St_Kitts" SelfReg="false" NextFile="St_Lucia"/>
<ROW File="St_Lucia" Component_="Adak" FileName="St_Lucia" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\St_Lucia" SelfReg="false" NextFile="St_Thomas"/>
<ROW File="St_Thomas" Component_="Adak" FileName="ST_THO~1|St_Thomas" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\St_Thomas" SelfReg="false" NextFile="St_Vincent"/>
<ROW File="St_Vincent" Component_="Adak" FileName="ST_VIN~1|St_Vincent" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\St_Vincent" SelfReg="false" NextFile="Swift_Current"/>
<ROW File="Stanley" Component_="Azores" FileName="Stanley" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Atlantic\Stanley" SelfReg="false" NextFile="St_Helena"/>
<ROW File="Stockholm" Component_="Amsterdam" FileName="STOCKH~1|Stockholm" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Stockholm" SelfReg="false" NextFile="Tallinn"/>
<ROW File="Swift_Current" Component_="Adak" FileName="SWIFT_~1|Swift_Current" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Swift_Current" SelfReg="false" NextFile="Tegucigalpa"/>
<ROW File="Sydney" Component_="ACT" FileName="Sydney" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Sydney" SelfReg="false" NextFile="Tasmania"/>
<ROW File="Symbol.afm" Component_="CourierBold.afm" FileName="Symbol.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Symbol.afm" SelfReg="false" NextFile="TimesBold.afm"/>
<ROW File="Syowa" Component_="Casey" FileName="Syowa" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Antarctica\Syowa" SelfReg="false" NextFile="Vostok"/>
<ROW File="Tahiti" Component_="Apia" FileName="Tahiti" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Tahiti" SelfReg="false" NextFile="Tarawa"/>
<ROW File="Taipei" Component_="Aden" FileName="Taipei" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Taipei" SelfReg="false" NextFile="Tashkent"/>
<ROW File="Tallinn" Component_="Amsterdam" FileName="Tallinn" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Tallinn" SelfReg="false" NextFile="Tirane"/>
<ROW File="Tarawa" Component_="Apia" FileName="Tarawa" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Tarawa" SelfReg="false" NextFile="Tongatapu"/>
<ROW File="Tashkent" Component_="Aden" FileName="Tashkent" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Tashkent" SelfReg="false" NextFile="Tbilisi"/>
<ROW File="Tasmania" Component_="ACT" FileName="Tasmania" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Tasmania" SelfReg="false" NextFile="Victoria"/>
<ROW File="Tbilisi" Component_="Aden" FileName="Tbilisi" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Tbilisi" SelfReg="false" NextFile="Tehran"/>
<ROW File="Tegucigalpa" Component_="Adak" FileName="TEGUCI~1|Tegucigalpa" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Tegucigalpa" SelfReg="false" NextFile="Thule"/>
<ROW File="Tehran" Component_="Aden" FileName="Tehran" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Tehran" SelfReg="false" NextFile="Tel_Aviv"/>
<ROW File="Tel_Aviv" Component_="Aden" FileName="Tel_Aviv" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Tel_Aviv" SelfReg="false" NextFile="Thimbu"/>
<ROW File="Tell_City" Component_="Indianapolis" FileName="TELL_C~1|Tell_City" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Indiana\Tell_City" SelfReg="false" NextFile="Vevay"/>
<ROW File="Thimbu" Component_="Aden" FileName="Thimbu" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Thimbu" SelfReg="false" NextFile="Thimphu"/>
<ROW File="Thimphu" Component_="Aden" FileName="Thimphu" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Thimphu" SelfReg="false" NextFile="Tokyo"/>
<ROW File="Thule" Component_="Adak" FileName="Thule" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Thule" SelfReg="false" NextFile="Thunder_Bay"/>
<ROW File="Thunder_Bay" Component_="Adak" FileName="THUNDE~1|Thunder_Bay" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Thunder_Bay" SelfReg="false" NextFile="Tijuana"/>
<ROW File="Tijuana" Component_="Adak" FileName="Tijuana" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Tijuana" SelfReg="false" NextFile="Toronto"/>
<ROW File="Timbuktu" Component_="Abidjan" FileName="Timbuktu" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Timbuktu" SelfReg="false" NextFile="Tripoli"/>
<ROW File="TimesBold.afm" Component_="CourierBold.afm" FileName="TIMES-~1.AFM|Times-Bold.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Times-Bold.afm" SelfReg="false" NextFile="TimesBoldItalic.afm"/>
<ROW File="TimesBoldItalic.afm" Component_="CourierBold.afm" FileName="TIMES-~2.AFM|Times-BoldItalic.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Times-BoldItalic.afm" SelfReg="false" NextFile="TimesItalic.afm"/>
<ROW File="TimesItalic.afm" Component_="CourierBold.afm" FileName="TIMES-~3.AFM|Times-Italic.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Times-Italic.afm" SelfReg="false" NextFile="TimesRoman.afm"/>
<ROW File="TimesRoman.afm" Component_="CourierBold.afm" FileName="TIMES-~4.AFM|Times-Roman.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\Times-Roman.afm" SelfReg="false" NextFile="ZapfDingbats.afm"/>
<ROW File="Tirane" Component_="Amsterdam" FileName="Tirane" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Tirane" SelfReg="false" NextFile="Tiraspol"/>
<ROW File="Tiraspol" Component_="Amsterdam" FileName="Tiraspol" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Tiraspol" SelfReg="false" NextFile="Uzhgorod"/>
<ROW File="Tokyo" Component_="Aden" FileName="Tokyo" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Tokyo" SelfReg="false" NextFile="Ujung_Pandang"/>
<ROW File="Tongatapu" Component_="Apia" FileName="TONGAT~1|Tongatapu" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Tongatapu" SelfReg="false" NextFile="Truk"/>
<ROW File="Toronto" Component_="Adak" FileName="Toronto" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Toronto" SelfReg="false" NextFile="Tortola"/>
<ROW File="Tortola" Component_="Adak" FileName="Tortola" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Tortola" SelfReg="false" NextFile="Vancouver"/>
<ROW File="Tripoli" Component_="Abidjan" FileName="Tripoli" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Tripoli" SelfReg="false" NextFile="Tunis"/>
<ROW File="Truk" Component_="Apia" FileName="Truk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Truk" SelfReg="false" NextFile="Wake"/>
<ROW File="Tucuman" Component_="Buenos_Aires" FileName="Tucuman" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\Tucuman" SelfReg="false" NextFile="Ushuaia"/>
<ROW File="Tunis" Component_="Abidjan" FileName="Tunis" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Tunis" SelfReg="false" NextFile="Windhoek"/>
<ROW File="Turkey" Component_="CET" FileName="Turkey" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Turkey" SelfReg="false" NextFile="UCT_1"/>
<ROW File="UCT" Component_="GMT" FileName="UCT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\UCT" SelfReg="false" NextFile="Universal"/>
<ROW File="UCT_1" Component_="CET" FileName="UCT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\UCT" SelfReg="false" NextFile="Universal_1"/>
<ROW File="UTC" Component_="GMT" FileName="UTC" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\UTC" SelfReg="false" NextFile="Zulu"/>
<ROW File="UTC_1" Component_="CET" FileName="UTC" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\UTC" SelfReg="false" NextFile="WSU"/>
<ROW File="Ujung_Pandang" Component_="Aden" FileName="UJUNG_~1|Ujung_Pandang" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Ujung_Pandang" SelfReg="false" NextFile="Ulaanbaatar"/>
<ROW File="Ulaanbaatar" Component_="Aden" FileName="ULAANB~1|Ulaanbaatar" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Ulaanbaatar" SelfReg="false" NextFile="Ulan_Bator"/>
<ROW File="Ulan_Bator" Component_="Aden" FileName="ULAN_B~1|Ulan_Bator" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Ulan_Bator" SelfReg="false" NextFile="Urumqi"/>
<ROW File="Universal" Component_="GMT" FileName="UNIVER~1|Universal" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\Universal" SelfReg="false" NextFile="UTC"/>
<ROW File="Universal_1" Component_="CET" FileName="UNIVER~1|Universal" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Universal" SelfReg="false" NextFile="Alaska"/>
<ROW File="Urumqi" Component_="Aden" FileName="Urumqi" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Urumqi" SelfReg="false" NextFile="UstNera"/>
<ROW File="Ushuaia" Component_="Buenos_Aires" FileName="Ushuaia" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Argentina\Ushuaia" SelfReg="false" NextFile="Aruba"/>
<ROW File="UstNera" Component_="Aden" FileName="Ust-Nera" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Ust-Nera" SelfReg="false" NextFile="Vientiane"/>
<ROW File="Uzhgorod" Component_="Amsterdam" FileName="Uzhgorod" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Uzhgorod" SelfReg="false" NextFile="Vaduz"/>
<ROW File="Vaduz" Component_="Amsterdam" FileName="Vaduz" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Vaduz" SelfReg="false" NextFile="Vatican"/>
<ROW File="Vancouver" Component_="Adak" FileName="VANCOU~1|Vancouver" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Vancouver" SelfReg="false" NextFile="Virgin"/>
<ROW File="Vatican" Component_="Amsterdam" FileName="Vatican" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Vatican" SelfReg="false" NextFile="Vienna"/>
<ROW File="Vera.ttf" Component_="cmb10.ttf" FileName="Vera.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\Vera.ttf" SelfReg="false" NextFile="VeraBd.ttf"/>
<ROW File="VeraBI.ttf" Component_="cmb10.ttf" FileName="VeraBI.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\VeraBI.ttf" SelfReg="false" NextFile="VeraIt.ttf"/>
<ROW File="VeraBd.ttf" Component_="cmb10.ttf" FileName="VeraBd.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\VeraBd.ttf" SelfReg="false" NextFile="VeraBI.ttf"/>
<ROW File="VeraIt.ttf" Component_="cmb10.ttf" FileName="VeraIt.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\VeraIt.ttf" SelfReg="false" NextFile="VeraMoBd.ttf"/>
<ROW File="VeraMoBI.ttf" Component_="cmb10.ttf" FileName="VeraMoBI.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\VeraMoBI.ttf" SelfReg="false" NextFile="VeraMoIt.ttf"/>
<ROW File="VeraMoBd.ttf" Component_="cmb10.ttf" FileName="VeraMoBd.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\VeraMoBd.ttf" SelfReg="false" NextFile="VeraMoBI.ttf"/>
<ROW File="VeraMoIt.ttf" Component_="cmb10.ttf" FileName="VeraMoIt.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\VeraMoIt.ttf" SelfReg="false" NextFile="VeraMono.ttf"/>
<ROW File="VeraMono.ttf" Component_="cmb10.ttf" FileName="VeraMono.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\VeraMono.ttf" SelfReg="false" NextFile="VeraSe.ttf"/>
<ROW File="VeraSe.ttf" Component_="cmb10.ttf" FileName="VeraSe.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\VeraSe.ttf" SelfReg="false" NextFile="VeraSeBd.ttf"/>
<ROW File="VeraSeBd.ttf" Component_="cmb10.ttf" FileName="VeraSeBd.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\VeraSeBd.ttf" SelfReg="false" NextFile="back.png"/>
<ROW File="Vevay" Component_="Indianapolis" FileName="Vevay" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Indiana\Vevay" SelfReg="false" NextFile="Vincennes"/>
<ROW File="Victoria" Component_="ACT" FileName="Victoria" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Victoria" SelfReg="false" NextFile="West"/>
<ROW File="Vienna" Component_="Amsterdam" FileName="Vienna" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Vienna" SelfReg="false" NextFile="Vilnius"/>
<ROW File="Vientiane" Component_="Aden" FileName="VIENTI~1|Vientiane" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Vientiane" SelfReg="false" NextFile="Vladivostok"/>
<ROW File="Vilnius" Component_="Amsterdam" FileName="Vilnius" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Vilnius" SelfReg="false" NextFile="Volgograd"/>
<ROW File="Vincennes" Component_="Indianapolis" FileName="VINCEN~1|Vincennes" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Indiana\Vincennes" SelfReg="false" NextFile="Winamac"/>
<ROW File="Virgin" Component_="Adak" FileName="Virgin" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Virgin" SelfReg="false" NextFile="Whitehorse"/>
<ROW File="Vladivostok" Component_="Aden" FileName="VLADIV~1|Vladivostok" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Vladivostok" SelfReg="false" NextFile="Yakutsk"/>
<ROW File="Volgograd" Component_="Amsterdam" FileName="VOLGOG~1|Volgograd" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Volgograd" SelfReg="false" NextFile="Warsaw"/>
<ROW File="Vostok" Component_="Casey" FileName="Vostok" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Antarctica\Vostok" SelfReg="false" NextFile="Longyearbyen"/>
<ROW File="WET" Component_="CET" FileName="WET" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\WET" SelfReg="false" NextFile="Zulu_1"/>
<ROW File="WSU" Component_="CET" FileName="W-SU" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\W-SU" SelfReg="false" NextFile="WET"/>
<ROW File="Wake" Component_="Apia" FileName="Wake" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Wake" SelfReg="false" NextFile="Wallis"/>
<ROW File="Wallis" Component_="Apia" FileName="Wallis" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Wallis" SelfReg="false" NextFile="Yap"/>
<ROW File="Warsaw" Component_="Amsterdam" FileName="Warsaw" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Warsaw" SelfReg="false" NextFile="Zagreb"/>
<ROW File="West" Component_="ACT" FileName="West" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\West" SelfReg="false" NextFile="Yancowinna"/>
<ROW File="West_1" Component_="Acre" FileName="West" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Brazil\West" SelfReg="false" NextFile="Atlantic"/>
<ROW File="Whitehorse" Component_="Adak" FileName="WHITEH~1|Whitehorse" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Whitehorse" SelfReg="false" NextFile="Winnipeg"/>
<ROW File="Winamac" Component_="Indianapolis" FileName="Winamac" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Indiana\Winamac" SelfReg="false" NextFile="Indianapolis_1"/>
<ROW File="Windhoek" Component_="Abidjan" FileName="Windhoek" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Africa\Windhoek" SelfReg="false" NextFile="Adak"/>
<ROW File="Winnipeg" Component_="Adak" FileName="Winnipeg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Winnipeg" SelfReg="false" NextFile="Yakutat"/>
<ROW File="YST9" Component_="AST4" FileName="YST9" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\YST9" SelfReg="false" NextFile="YST9YDT"/>
<ROW File="YST9YDT" Component_="AST4" FileName="YST9YDT" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\SystemV\YST9YDT" SelfReg="false" NextFile="Turkey"/>
<ROW File="Yakutat" Component_="Adak" FileName="Yakutat" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Yakutat" SelfReg="false" NextFile="Yellowknife"/>
<ROW File="Yakutsk" Component_="Aden" FileName="Yakutsk" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Yakutsk" SelfReg="false" NextFile="Yekaterinburg"/>
<ROW File="Yancowinna" Component_="ACT" FileName="YANCOW~1|Yancowinna" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Australia\Yancowinna" SelfReg="false" NextFile="Acre"/>
<ROW File="Yap" Component_="Apia" FileName="Yap" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Pacific\Yap" SelfReg="false" NextFile="Poland"/>
<ROW File="Yekaterinburg" Component_="Aden" FileName="YEKATE~1|Yekaterinburg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Yekaterinburg" SelfReg="false" NextFile="Yerevan"/>
<ROW File="Yellowknife" Component_="Adak" FileName="YELLOW~1|Yellowknife" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\America\Yellowknife" SelfReg="false" NextFile="Casey"/>
<ROW File="Yerevan" Component_="Aden" FileName="Yerevan" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Asia\Yerevan" SelfReg="false" NextFile="Azores"/>
<ROW File="Yukon" Component_="Atlantic" FileName="Yukon" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Canada\Yukon" SelfReg="false" NextFile="CET"/>
<ROW File="Zagreb" Component_="Amsterdam" FileName="Zagreb" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Zagreb" SelfReg="false" NextFile="Zaporozhye"/>
<ROW File="ZapfDingbats.afm" Component_="CourierBold.afm" FileName="ZAPFDI~1.AFM|ZapfDingbats.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\pdfcorefonts\ZapfDingbats.afm" SelfReg="false" NextFile="cmb10.ttf"/>
<ROW File="Zaporozhye" Component_="Amsterdam" FileName="ZAPORO~1|Zaporozhye" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Zaporozhye" SelfReg="false" NextFile="Zurich"/>
<ROW File="Zulu" Component_="GMT" FileName="Zulu" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Etc\Zulu" SelfReg="false" NextFile="Amsterdam"/>
<ROW File="Zulu_1" Component_="CET" FileName="Zulu" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Zulu" SelfReg="false" NextFile="word.tcl"/>
<ROW File="Zurich" Component_="Amsterdam" FileName="Zurich" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\tzdata\Europe\Zurich" SelfReg="false" NextFile="GB"/>
<ROW File="_ctypes.pyd" Component_="autofp.ico" FileName="_ctypes.pyd" Attributes="0" SourcePath="AutoFP\dist\_ctypes.pyd" SelfReg="false" NextFile="_hashlib.pyd"/>
<ROW File="_hashlib.pyd" Component_="autofp.ico" FileName="_hashlib.pyd" Attributes="0" SourcePath="AutoFP\dist\_hashlib.pyd" SelfReg="false" NextFile="_multiprocessing.pyd"/>
<ROW File="_multiprocessing.pyd" Component_="autofp.ico" FileName="_MULTI~1.PYD|_multiprocessing.pyd" Attributes="0" SourcePath="AutoFP\dist\_multiprocessing.pyd" SelfReg="false" NextFile="_socket.pyd"/>
<ROW File="_socket.pyd" Component_="autofp.ico" FileName="_socket.pyd" Attributes="0" SourcePath="AutoFP\dist\_socket.pyd" SelfReg="false" NextFile="_ssl.pyd"/>
<ROW File="_ssl.pyd" Component_="autofp.ico" FileName="_ssl.pyd" Attributes="0" SourcePath="AutoFP\dist\_ssl.pyd" SelfReg="false" NextFile="_tkinter.pyd"/>
<ROW File="_tkinter.pyd" Component_="autofp.ico" FileName="_tkinter.pyd" Attributes="0" SourcePath="AutoFP\dist\_tkinter.pyd" SelfReg="false"/>
<ROW File="af.msg" Component_="af.msg" FileName="af.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\af.msg" SelfReg="false" NextFile="af_za.msg"/>
<ROW File="af_za.msg" Component_="af.msg" FileName="af_za.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\af_za.msg" SelfReg="false" NextFile="ar.msg"/>
<ROW File="altTheme.tcl" Component_="altTheme.tcl" FileName="altTheme.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\ttk\altTheme.tcl" SelfReg="false" NextFile="aquaTheme.tcl"/>
<ROW File="anilabel.tcl" Component_="anilabel.tcl" FileName="anilabel.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\anilabel.tcl" SelfReg="false" NextFile="aniwave.tcl"/>
<ROW File="aniwave.tcl" Component_="anilabel.tcl" FileName="aniwave.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\aniwave.tcl" SelfReg="false" NextFile="arrow.tcl"/>
<ROW File="aquaTheme.tcl" Component_="altTheme.tcl" FileName="AQUATH~1.TCL|aquaTheme.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\ttk\aquaTheme.tcl" SelfReg="false" NextFile="button.tcl_2"/>
<ROW File="ar.msg" Component_="af.msg" FileName="ar.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\ar.msg" SelfReg="false" NextFile="ar_in.msg"/>
<ROW File="ar_in.msg" Component_="af.msg" FileName="ar_in.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\ar_in.msg" SelfReg="false" NextFile="ar_jo.msg"/>
<ROW File="ar_jo.msg" Component_="af.msg" FileName="ar_jo.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\ar_jo.msg" SelfReg="false" NextFile="ar_lb.msg"/>
<ROW File="ar_lb.msg" Component_="af.msg" FileName="ar_lb.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\ar_lb.msg" SelfReg="false" NextFile="ar_sy.msg"/>
<ROW File="ar_sy.msg" Component_="af.msg" FileName="ar_sy.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\ar_sy.msg" SelfReg="false" NextFile="be.msg"/>
<ROW File="arrow.tcl" Component_="anilabel.tcl" FileName="arrow.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\arrow.tcl" SelfReg="false" NextFile="bind.tcl"/>
<ROW File="ascii.enc" Component_="ascii.enc" FileName="ascii.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\ascii.enc" SelfReg="false" NextFile="big5.enc"/>
<ROW File="auto.tcl" Component_="auto.tcl" FileName="auto.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\auto.tcl" SelfReg="false" NextFile="clock.tcl"/>
<ROW File="autofp.bat" Component_="autofp.bat" FileName="autofp.bat" Attributes="0" SourcePath="shell\autofp.bat" SelfReg="false" NextFile="LICENSE"/>
<ROW File="autofp.exe" Component_="autofp.exe" FileName="AutoFP.exe" Attributes="0" SourcePath="AutoFP\dist\autofp.exe" SelfReg="false" NextFile="autofp.ico" DigSign="true"/>
<ROW File="autofp.ico" Component_="autofp.ico" FileName="AutoFP.ico" Attributes="0" SourcePath="AutoFP\dist\AutoFP.ico" SelfReg="false" NextFile="convert.exe"/>
<ROW File="back.png" Component_="back.png" FileName="back.png" Attributes="0" SourcePath="AutoFP\dist\mpl-data\images\back.png" SelfReg="false" NextFile="back.ppm"/>
<ROW File="back.ppm" Component_="back.png" FileName="back.ppm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\images\back.ppm" SelfReg="false" NextFile="back.svg"/>
<ROW File="back.svg" Component_="back.png" FileName="back.svg" Attributes="0" SourcePath="AutoFP\dist\mpl-data\images\back.svg" SelfReg="false" NextFile="back.xpm"/>
<ROW File="back.xpm" Component_="back.png" FileName="back.xpm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\images\back.xpm" SelfReg="false" NextFile="filesave.png"/>
<ROW File="be.msg" Component_="af.msg" FileName="be.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\be.msg" SelfReg="false" NextFile="bg.msg"/>
<ROW File="bg.msg" Component_="af.msg" FileName="bg.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\bg.msg" SelfReg="false" NextFile="bn.msg"/>
<ROW File="bgerror.tcl" Component_="bgerror.tcl" FileName="bgerror.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\bgerror.tcl" SelfReg="false" NextFile="button.tcl"/>
<ROW File="big5.enc" Component_="ascii.enc" FileName="big5.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\big5.enc" SelfReg="false" NextFile="cp1250.enc"/>
<ROW File="bind.tcl" Component_="anilabel.tcl" FileName="bind.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\bind.tcl" SelfReg="false" NextFile="bitmap.tcl"/>
<ROW File="bitmap.tcl" Component_="anilabel.tcl" FileName="bitmap.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\bitmap.tcl" SelfReg="false" NextFile="browse"/>
<ROW File="bmh.mplstyle" Component_="bmh.mplstyle" FileName="BMH~1.MPL|bmh.mplstyle" Attributes="0" SourcePath="AutoFP\dist\mpl-data\stylelib\bmh.mplstyle" SelfReg="false" NextFile="dark_background.mplstyle"/>
<ROW File="bn.msg" Component_="af.msg" FileName="bn.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\bn.msg" SelfReg="false" NextFile="bn_in.msg"/>
<ROW File="bn_in.msg" Component_="af.msg" FileName="bn_in.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\bn_in.msg" SelfReg="false" NextFile="ca.msg"/>
<ROW File="browse" Component_="anilabel.tcl" FileName="browse" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\browse" SelfReg="false" NextFile="button.tcl_1"/>
<ROW File="button.tcl" Component_="bgerror.tcl" FileName="button.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\button.tcl" SelfReg="false" NextFile="choosedir.tcl"/>
<ROW File="button.tcl_1" Component_="anilabel.tcl" FileName="button.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\button.tcl" SelfReg="false" NextFile="check.tcl"/>
<ROW File="button.tcl_2" Component_="altTheme.tcl" FileName="button.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\ttk\button.tcl" SelfReg="false" NextFile="clamTheme.tcl"/>
<ROW File="bz2.pyd" Component_="autofp.ico" FileName="bz2.pyd" Attributes="0" SourcePath="AutoFP\dist\bz2.pyd" SelfReg="false" NextFile="library.zip"/>
<ROW File="ca.msg" Component_="af.msg" FileName="ca.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\ca.msg" SelfReg="false" NextFile="cs.msg"/>
<ROW File="check.tcl" Component_="anilabel.tcl" FileName="check.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\check.tcl" SelfReg="false" NextFile="clrpick.tcl_1"/>
<ROW File="choosedir.tcl" Component_="bgerror.tcl" FileName="CHOOSE~1.TCL|choosedir.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\choosedir.tcl" SelfReg="false" NextFile="clrpick.tcl"/>
<ROW File="clamTheme.tcl" Component_="altTheme.tcl" FileName="CLAMTH~1.TCL|clamTheme.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\ttk\clamTheme.tcl" SelfReg="false" NextFile="classicTheme.tcl"/>
<ROW File="classicTheme.tcl" Component_="altTheme.tcl" FileName="CLASSI~1.TCL|classicTheme.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\ttk\classicTheme.tcl" SelfReg="false" NextFile="combobox.tcl"/>
<ROW File="clock.tcl" Component_="auto.tcl" FileName="clock.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\clock.tcl" SelfReg="false" NextFile="ascii.enc"/>
<ROW File="clrpick.tcl" Component_="bgerror.tcl" FileName="clrpick.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\clrpick.tcl" SelfReg="false" NextFile="comdlg.tcl"/>
<ROW File="clrpick.tcl_1" Component_="anilabel.tcl" FileName="clrpick.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\clrpick.tcl" SelfReg="false" NextFile="colors.tcl"/>
<ROW File="cmb10.ttf" Component_="cmb10.ttf" FileName="cmb10.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\cmb10.ttf" SelfReg="false" NextFile="cmex10.ttf"/>
<ROW File="cmex10.afm" Component_="cmex10.afm" FileName="cmex10.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\afm\cmex10.afm" SelfReg="false" NextFile="cmmi10.afm"/>
<ROW File="cmex10.ttf" Component_="cmb10.ttf" FileName="cmex10.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\cmex10.ttf" SelfReg="false" NextFile="cmmi10.ttf"/>
<ROW File="cmmi10.afm" Component_="cmex10.afm" FileName="cmmi10.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\afm\cmmi10.afm" SelfReg="false" NextFile="cmr10.afm"/>
<ROW File="cmmi10.ttf" Component_="cmb10.ttf" FileName="cmmi10.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\cmmi10.ttf" SelfReg="false" NextFile="cmr10.ttf"/>
<ROW File="cmr10.afm" Component_="cmex10.afm" FileName="cmr10.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\afm\cmr10.afm" SelfReg="false" NextFile="cmsy10.afm"/>
<ROW File="cmr10.ttf" Component_="cmb10.ttf" FileName="cmr10.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\cmr10.ttf" SelfReg="false" NextFile="cmss10.ttf"/>
<ROW File="cmss10.ttf" Component_="cmb10.ttf" FileName="cmss10.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\cmss10.ttf" SelfReg="false" NextFile="cmsy10.ttf"/>
<ROW File="cmsy10.afm" Component_="cmex10.afm" FileName="cmsy10.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\afm\cmsy10.afm" SelfReg="false" NextFile="cmtt10.afm"/>
<ROW File="cmsy10.ttf" Component_="cmb10.ttf" FileName="cmsy10.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\cmsy10.ttf" SelfReg="false" NextFile="cmtt10.ttf"/>
<ROW File="cmtt10.afm" Component_="cmex10.afm" FileName="cmtt10.afm" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\afm\cmtt10.afm" SelfReg="false" NextFile="pagd8a.afm"/>
<ROW File="cmtt10.ttf" Component_="cmb10.ttf" FileName="cmtt10.ttf" Attributes="0" SourcePath="AutoFP\dist\mpl-data\fonts\ttf\cmtt10.ttf" SelfReg="false" NextFile="COPYRIGHT.TXT"/>
<ROW File="colors.tcl" Component_="anilabel.tcl" FileName="colors.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\colors.tcl" SelfReg="false" NextFile="combo.tcl"/>
<ROW File="combo.tcl" Component_="anilabel.tcl" FileName="combo.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\combo.tcl" SelfReg="false" NextFile="cscroll.tcl"/>
<ROW File="combobox.tcl" Component_="altTheme.tcl" FileName="combobox.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\ttk\combobox.tcl" SelfReg="false" NextFile="cursors.tcl"/>
<ROW File="comdlg.tcl" Component_="bgerror.tcl" FileName="comdlg.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\comdlg.tcl" SelfReg="false" NextFile="console.tcl"/>
<ROW File="console.tcl" Component_="bgerror.tcl" FileName="console.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\console.tcl" SelfReg="false" NextFile="anilabel.tcl"/>
<ROW File="convert.exe" Component_="convert.exe" FileName="convert.exe" Attributes="0" SourcePath="AutoFP\dist\convert.exe" SelfReg="false" NextFile="ffmpeg.exe" DigSign="true"/>
<ROW File="cp1250.enc" Component_="ascii.enc" FileName="cp1250.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp1250.enc" SelfReg="false" NextFile="cp1251.enc"/>
<ROW File="cp1251.enc" Component_="ascii.enc" FileName="cp1251.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp1251.enc" SelfReg="false" NextFile="cp1252.enc"/>
<ROW File="cp1252.enc" Component_="ascii.enc" FileName="cp1252.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp1252.enc" SelfReg="false" NextFile="cp1253.enc"/>
<ROW File="cp1253.enc" Component_="ascii.enc" FileName="cp1253.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp1253.enc" SelfReg="false" NextFile="cp1254.enc"/>
<ROW File="cp1254.enc" Component_="ascii.enc" FileName="cp1254.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp1254.enc" SelfReg="false" NextFile="cp1255.enc"/>
<ROW File="cp1255.enc" Component_="ascii.enc" FileName="cp1255.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp1255.enc" SelfReg="false" NextFile="cp1256.enc"/>
<ROW File="cp1256.enc" Component_="ascii.enc" FileName="cp1256.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp1256.enc" SelfReg="false" NextFile="cp1257.enc"/>
<ROW File="cp1257.enc" Component_="ascii.enc" FileName="cp1257.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp1257.enc" SelfReg="false" NextFile="cp1258.enc"/>
<ROW File="cp1258.enc" Component_="ascii.enc" FileName="cp1258.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp1258.enc" SelfReg="false" NextFile="cp437.enc"/>
<ROW File="cp437.enc" Component_="ascii.enc" FileName="cp437.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp437.enc" SelfReg="false" NextFile="cp737.enc"/>
<ROW File="cp737.enc" Component_="ascii.enc" FileName="cp737.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp737.enc" SelfReg="false" NextFile="cp775.enc"/>
<ROW File="cp775.enc" Component_="ascii.enc" FileName="cp775.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp775.enc" SelfReg="false" NextFile="cp850.enc"/>
<ROW File="cp850.enc" Component_="ascii.enc" FileName="cp850.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp850.enc" SelfReg="false" NextFile="cp852.enc"/>
<ROW File="cp852.enc" Component_="ascii.enc" FileName="cp852.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp852.enc" SelfReg="false" NextFile="cp855.enc"/>
<ROW File="cp855.enc" Component_="ascii.enc" FileName="cp855.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp855.enc" SelfReg="false" NextFile="cp857.enc"/>
<ROW File="cp857.enc" Component_="ascii.enc" FileName="cp857.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp857.enc" SelfReg="false" NextFile="cp860.enc"/>
<ROW File="cp860.enc" Component_="ascii.enc" FileName="cp860.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp860.enc" SelfReg="false" NextFile="cp861.enc"/>
<ROW File="cp861.enc" Component_="ascii.enc" FileName="cp861.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp861.enc" SelfReg="false" NextFile="cp862.enc"/>
<ROW File="cp862.enc" Component_="ascii.enc" FileName="cp862.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp862.enc" SelfReg="false" NextFile="cp863.enc"/>
<ROW File="cp863.enc" Component_="ascii.enc" FileName="cp863.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp863.enc" SelfReg="false" NextFile="cp864.enc"/>
<ROW File="cp864.enc" Component_="ascii.enc" FileName="cp864.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp864.enc" SelfReg="false" NextFile="cp865.enc"/>
<ROW File="cp865.enc" Component_="ascii.enc" FileName="cp865.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp865.enc" SelfReg="false" NextFile="cp866.enc"/>
<ROW File="cp866.enc" Component_="ascii.enc" FileName="cp866.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp866.enc" SelfReg="false" NextFile="cp869.enc"/>
<ROW File="cp869.enc" Component_="ascii.enc" FileName="cp869.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp869.enc" SelfReg="false" NextFile="cp874.enc"/>
<ROW File="cp874.enc" Component_="ascii.enc" FileName="cp874.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp874.enc" SelfReg="false" NextFile="cp932.enc"/>
<ROW File="cp932.enc" Component_="ascii.enc" FileName="cp932.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp932.enc" SelfReg="false" NextFile="cp936.enc"/>
<ROW File="cp936.enc" Component_="ascii.enc" FileName="cp936.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp936.enc" SelfReg="false" NextFile="cp949.enc"/>
<ROW File="cp949.enc" Component_="ascii.enc" FileName="cp949.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp949.enc" SelfReg="false" NextFile="cp950.enc"/>
<ROW File="cp950.enc" Component_="ascii.enc" FileName="cp950.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\cp950.enc" SelfReg="false" NextFile="dingbats.enc"/>
<ROW File="cs.msg" Component_="af.msg" FileName="cs.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\cs.msg" SelfReg="false" NextFile="da.msg"/>
<ROW File="cs.msg_1" Component_="cs.msg" FileName="cs.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\msgs\cs.msg" SelfReg="false" NextFile="da.msg_1"/>
<ROW File="cscroll.tcl" Component_="anilabel.tcl" FileName="cscroll.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\cscroll.tcl" SelfReg="false" NextFile="ctext.tcl"/>
<ROW File="ctext.tcl" Component_="anilabel.tcl" FileName="ctext.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\ctext.tcl" SelfReg="false" NextFile="dialog1.tcl"/>
<ROW File="cursors.tcl" Component_="altTheme.tcl" FileName="cursors.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\ttk\cursors.tcl" SelfReg="false" NextFile="defaults.tcl"/>
<ROW File="da.msg" Component_="af.msg" FileName="da.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\da.msg" SelfReg="false" NextFile="de.msg"/>
<ROW File="da.msg_1" Component_="cs.msg" FileName="da.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\msgs\da.msg" SelfReg="false" NextFile="de.msg_1"/>
<ROW File="dark_background.mplstyle" Component_="bmh.mplstyle" FileName="DARK_B~1.MPL|dark_background.mplstyle" Attributes="0" SourcePath="AutoFP\dist\mpl-data\stylelib\dark_background.mplstyle" SelfReg="false" NextFile="fivethirtyeight.mplstyle"/>
<ROW File="de.msg" Component_="af.msg" FileName="de.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\de.msg" SelfReg="false" NextFile="de_at.msg"/>
<ROW File="de.msg_1" Component_="cs.msg" FileName="de.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\msgs\de.msg" SelfReg="false" NextFile="el.msg_1"/>
<ROW File="de_at.msg" Component_="af.msg" FileName="de_at.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\de_at.msg" SelfReg="false" NextFile="de_be.msg"/>
<ROW File="de_be.msg" Component_="af.msg" FileName="de_be.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\de_be.msg" SelfReg="false" NextFile="el.msg"/>
<ROW File="defaults.tcl" Component_="altTheme.tcl" FileName="defaults.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\ttk\defaults.tcl" SelfReg="false" NextFile="entry.tcl_1"/>
<ROW File="dialog.tcl" Component_="bgerror.tcl" FileName="dialog.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\dialog.tcl" SelfReg="false" NextFile="entry.tcl"/>
<ROW File="dialog1.tcl" Component_="anilabel.tcl" FileName="dialog1.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\dialog1.tcl" SelfReg="false" NextFile="dialog2.tcl"/>
<ROW File="dialog2.tcl" Component_="anilabel.tcl" FileName="dialog2.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\dialog2.tcl" SelfReg="false" NextFile="en.msg"/>
<ROW File="dingbats.enc" Component_="ascii.enc" FileName="dingbats.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\dingbats.enc" SelfReg="false" NextFile="ebcdic.enc"/>
<ROW File="earth.gif" Component_="earth.gif" FileName="earth.gif" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\images\earth.gif" SelfReg="false" NextFile="earthris.gif"/>
<ROW File="earthris.gif" Component_="earth.gif" FileName="earthris.gif" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\images\earthris.gif" SelfReg="false" NextFile="face.xbm"/>
<ROW File="ebcdic.enc" Component_="ascii.enc" FileName="ebcdic.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\ebcdic.enc" SelfReg="false" NextFile="euccn.enc"/>
<ROW File="el.msg" Component_="af.msg" FileName="el.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\el.msg" SelfReg="false" NextFile="en_au.msg"/>
<ROW File="el.msg_1" Component_="cs.msg" FileName="el.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\msgs\el.msg" SelfReg="false" NextFile="en.msg_1"/>
<ROW File="en.msg" Component_="anilabel.tcl" FileName="en.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\en.msg" SelfReg="false" NextFile="entry1.tcl"/>
<ROW File="en.msg_1" Component_="cs.msg" FileName="en.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\msgs\en.msg" SelfReg="false" NextFile="en_gb.msg_1"/>
<ROW File="en_au.msg" Component_="af.msg" FileName="en_au.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_au.msg" SelfReg="false" NextFile="en_be.msg"/>
<ROW File="en_be.msg" Component_="af.msg" FileName="en_be.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_be.msg" SelfReg="false" NextFile="en_bw.msg"/>
<ROW File="en_bw.msg" Component_="af.msg" FileName="en_bw.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_bw.msg" SelfReg="false" NextFile="en_ca.msg"/>
<ROW File="en_ca.msg" Component_="af.msg" FileName="en_ca.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_ca.msg" SelfReg="false" NextFile="en_gb.msg"/>
<ROW File="en_gb.msg" Component_="af.msg" FileName="en_gb.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_gb.msg" SelfReg="false" NextFile="en_hk.msg"/>
<ROW File="en_gb.msg_1" Component_="cs.msg" FileName="en_gb.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\msgs\en_gb.msg" SelfReg="false" NextFile="eo.msg_1"/>
<ROW File="en_hk.msg" Component_="af.msg" FileName="en_hk.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_hk.msg" SelfReg="false" NextFile="en_ie.msg"/>
<ROW File="en_ie.msg" Component_="af.msg" FileName="en_ie.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_ie.msg" SelfReg="false" NextFile="en_in.msg"/>
<ROW File="en_in.msg" Component_="af.msg" FileName="en_in.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_in.msg" SelfReg="false" NextFile="en_nz.msg"/>
<ROW File="en_nz.msg" Component_="af.msg" FileName="en_nz.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_nz.msg" SelfReg="false" NextFile="en_ph.msg"/>
<ROW File="en_ph.msg" Component_="af.msg" FileName="en_ph.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_ph.msg" SelfReg="false" NextFile="en_sg.msg"/>
<ROW File="en_sg.msg" Component_="af.msg" FileName="en_sg.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_sg.msg" SelfReg="false" NextFile="en_za.msg"/>
<ROW File="en_za.msg" Component_="af.msg" FileName="en_za.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_za.msg" SelfReg="false" NextFile="en_zw.msg"/>
<ROW File="en_zw.msg" Component_="af.msg" FileName="en_zw.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\en_zw.msg" SelfReg="false" NextFile="eo.msg"/>
<ROW File="entry.tcl" Component_="bgerror.tcl" FileName="entry.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\entry.tcl" SelfReg="false" NextFile="focus.tcl"/>
<ROW File="entry.tcl_1" Component_="altTheme.tcl" FileName="entry.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\ttk\entry.tcl" SelfReg="false" NextFile="fonts.tcl"/>
<ROW File="entry1.tcl" Component_="anilabel.tcl" FileName="entry1.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\entry1.tcl" SelfReg="false" NextFile="entry2.tcl"/>
<ROW File="entry2.tcl" Component_="anilabel.tcl" FileName="entry2.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\entry2.tcl" SelfReg="false" NextFile="entry3.tcl"/>
<ROW File="entry3.tcl" Component_="anilabel.tcl" FileName="entry3.tcl" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\entry3.tcl" SelfReg="false" NextFile="filebox.tcl"/>
<ROW File="eo.msg" Component_="af.msg" FileName="eo.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\eo.msg" SelfReg="false" NextFile="es.msg"/>
<ROW File="eo.msg_1" Component_="cs.msg" FileName="eo.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\msgs\eo.msg" SelfReg="false" NextFile="es.msg_1"/>
<ROW File="es.msg" Component_="af.msg" FileName="es.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es.msg" SelfReg="false" NextFile="es_ar.msg"/>
<ROW File="es.msg_1" Component_="cs.msg" FileName="es.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\msgs\es.msg" SelfReg="false" NextFile="fr.msg_1"/>
<ROW File="es_ar.msg" Component_="af.msg" FileName="es_ar.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_ar.msg" SelfReg="false" NextFile="es_bo.msg"/>
<ROW File="es_bo.msg" Component_="af.msg" FileName="es_bo.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_bo.msg" SelfReg="false" NextFile="es_cl.msg"/>
<ROW File="es_cl.msg" Component_="af.msg" FileName="es_cl.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_cl.msg" SelfReg="false" NextFile="es_co.msg"/>
<ROW File="es_co.msg" Component_="af.msg" FileName="es_co.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_co.msg" SelfReg="false" NextFile="es_cr.msg"/>
<ROW File="es_cr.msg" Component_="af.msg" FileName="es_cr.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_cr.msg" SelfReg="false" NextFile="es_do.msg"/>
<ROW File="es_do.msg" Component_="af.msg" FileName="es_do.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_do.msg" SelfReg="false" NextFile="es_ec.msg"/>
<ROW File="es_ec.msg" Component_="af.msg" FileName="es_ec.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_ec.msg" SelfReg="false" NextFile="es_gt.msg"/>
<ROW File="es_gt.msg" Component_="af.msg" FileName="es_gt.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_gt.msg" SelfReg="false" NextFile="es_hn.msg"/>
<ROW File="es_hn.msg" Component_="af.msg" FileName="es_hn.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_hn.msg" SelfReg="false" NextFile="es_mx.msg"/>
<ROW File="es_mx.msg" Component_="af.msg" FileName="es_mx.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_mx.msg" SelfReg="false" NextFile="es_ni.msg"/>
<ROW File="es_ni.msg" Component_="af.msg" FileName="es_ni.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_ni.msg" SelfReg="false" NextFile="es_pa.msg"/>
<ROW File="es_pa.msg" Component_="af.msg" FileName="es_pa.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_pa.msg" SelfReg="false" NextFile="es_pe.msg"/>
<ROW File="es_pe.msg" Component_="af.msg" FileName="es_pe.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_pe.msg" SelfReg="false" NextFile="es_pr.msg"/>
<ROW File="es_pr.msg" Component_="af.msg" FileName="es_pr.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_pr.msg" SelfReg="false" NextFile="es_py.msg"/>
<ROW File="es_py.msg" Component_="af.msg" FileName="es_py.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_py.msg" SelfReg="false" NextFile="es_sv.msg"/>
<ROW File="es_sv.msg" Component_="af.msg" FileName="es_sv.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_sv.msg" SelfReg="false" NextFile="es_uy.msg"/>
<ROW File="es_uy.msg" Component_="af.msg" FileName="es_uy.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_uy.msg" SelfReg="false" NextFile="es_ve.msg"/>
<ROW File="es_ve.msg" Component_="af.msg" FileName="es_ve.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\es_ve.msg" SelfReg="false" NextFile="et.msg"/>
<ROW File="et.msg" Component_="af.msg" FileName="et.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\et.msg" SelfReg="false" NextFile="eu.msg"/>
<ROW File="eu.msg" Component_="af.msg" FileName="eu.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\eu.msg" SelfReg="false" NextFile="eu_es.msg"/>
<ROW File="eu_es.msg" Component_="af.msg" FileName="eu_es.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\eu_es.msg" SelfReg="false" NextFile="fa.msg"/>
<ROW File="euccn.enc" Component_="ascii.enc" FileName="euc-cn.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\euc-cn.enc" SelfReg="false" NextFile="eucjp.enc"/>
<ROW File="eucjp.enc" Component_="ascii.enc" FileName="euc-jp.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\euc-jp.enc" SelfReg="false" NextFile="euckr.enc"/>
<ROW File="euckr.enc" Component_="ascii.enc" FileName="euc-kr.enc" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\encoding\euc-kr.enc" SelfReg="false" NextFile="gb12345.enc"/>
<ROW File="example.zip" Component_="readme.txt" FileName="example.zip" Attributes="0" SourcePath="AutoFP\example.zip" SelfReg="false" NextFile="fp2k.exe"/>
<ROW File="fa.msg" Component_="af.msg" FileName="fa.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\fa.msg" SelfReg="false" NextFile="fa_in.msg"/>
<ROW File="fa_in.msg" Component_="af.msg" FileName="fa_in.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\fa_in.msg" SelfReg="false" NextFile="fa_ir.msg"/>
<ROW File="fa_ir.msg" Component_="af.msg" FileName="fa_ir.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\fa_ir.msg" SelfReg="false" NextFile="fi.msg"/>
<ROW File="face.xbm" Component_="earth.gif" FileName="face.xbm" Attributes="0" SourcePath="AutoFP\dist\tcl\tk8.5\demos\images\face.xbm" SelfReg="false" NextFile="flagdown.xbm"/>
<ROW File="ffmpeg.exe" Component_="ffmpeg.exe" FileName="ffmpeg.exe" Attributes="0" SourcePath="AutoFP\dist\ffmpeg.exe" SelfReg="false" NextFile="w9xpopen.exe" DigSign="true"/>
<ROW File="fi.msg" Component_="af.msg" FileName="fi.msg" Attributes="0" SourcePath="AutoFP\dist\tcl\tcl8.5\msgs\fi.msg" SelfReg="false" NextFile="fo.msg"/>