[
  {
    "Id": "215557",
    "ThreadId": "63392",
    "Html": "<p>Hey,</p>\r\n<p>I'm a little new to the zip process so bear with me.&nbsp; I had some code that was not compatible with large .zip files so I was looking around for something to handle it.&nbsp; Came across this and decided to try it.&nbsp; Unlike other packages this one would open and start extracting the files so&nbsp;thought problem solved.&nbsp; However, just before it completed, got an &quot;Oversubscribed dynamic bit lengths tree&quot; error.&nbsp;</p>\r\n<p>The .zip file was&nbsp;created by WinZip 12 and is&nbsp;slightly over 4.3 GB.&nbsp; The file extracts fine with WinZip&nbsp;but using the DotNetZip library it throws the foremention error raised from the zlib library.&nbsp; It always throws this error&nbsp;on the same file when going through it.&nbsp; I have looked at the file details in&nbsp;WinZip and it has the Zip64 markings so it should be a valid file for this size.&nbsp; However the file&nbsp;that is has issues with is the first file where the&nbsp;&quot;relative offset&nbsp; of local header&quot; exceeds&nbsp;0xFFFFFFFF (got this for the WinZip details of the file).&nbsp; I tried&nbsp;skipping pass this file but every file after that throws the error as well.&nbsp;</p>\r\n<p>Is there&nbsp;some setting I'm&nbsp;missing in the DotNetZip for Zip64 (already tried setting Zip64Option.Always)?&nbsp; Could it be the .zip file? Does anyone know the issue and/or solution to this error?&nbsp; Any help would be greatly appreciated.&nbsp; Thanks.</p>\r\n<p>-Wayne</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>",
    "PostedDate": "2009-07-23T18:33:07.477-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215583",
    "ThreadId": "63392",
    "Html": "<p>ah,,, hm, I gotta say, I think you're in trouble.&nbsp; &quot;Oversubscribed dynamic bit lengths tree&quot; is an error I cannot explain.&nbsp; It happens in the ZLIB layer, which I did not write.&nbsp; I also don't understand the error enough to explain it to you.&nbsp;</p>\r\n<p>If it happens with every entry in the ZIP file, then maybe it is</p>\r\n<ul>\r\n<li>a corrupted zip file. Can you open it in WinZip12?&nbsp;&nbsp; </li>\r\n<li>an unsupported compression method.&nbsp; Is it using DEFLATE64 ?&nbsp;&nbsp; DEFLATE64 is not the same as ZIP64. DotNetZip does ZIP64, not DEFLATE64. </li>\r\n</ul>\r\n<p>Is it just one file you are trying to decompress?&nbsp; Then why not use the tool you used to compress it?&nbsp; If it is more than one file, then why not use the same thing on both ends - either WinZip or DotNetZip.</p>\r\n<p>ps: The Zip64Option applies only when saving a file.&nbsp; You don't need to set it when reading a file.</p>",
    "PostedDate": "2009-07-23T21:02:22.847-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215603",
    "ThreadId": "63392",
    "Html": "<p>Thanks for the quick response.&nbsp; How can you tell if it using Deflate64?&nbsp; There is approximately 31,500 files in the .zip.&nbsp; DotNetZip works for the first 31,200 files and then gets the error.&nbsp; When looking at the details in WinZip, the exact file where it first has problems is the first file where the &quot;relative offset&nbsp;of local header&quot; field that WinZip outputs exceeds 0xFFFFFFFF.&nbsp; All the rest of the files from that point on list the &quot;relative offset&nbsp;of local header&quot; as 0xFFFFFFFF as well.&nbsp; I have no idea what the field means but guessing that it is related to the zlib error.</p>\r\n<p>Unfortunately, we are not creating the .zip files, just receiving them.&nbsp; In this case they gave us a .zip with a password so we had to extract it first with the password and then compress it back without a password so it would go through our system.&nbsp;</p>",
    "PostedDate": "2009-07-23T22:37:37.22-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215667",
    "ThreadId": "63392",
    "Html": "<p>Ok, well then if you are just receiving them, why not use WinZip&nbsp;to read the zip file?&nbsp; All the other tools seem to fail opening it.&nbsp; So use the thing that created it, to open it.&nbsp; You apparently have WinZip, because you are using it to examine the file.&nbsp; I don't understand why you don't just extract it with WinZip.&nbsp; Or ask your sender to re-pack that file differently.</p>\r\n<p>Deflate64 is defined in the appnote from PKWare <a href=\"http://www.pkware.com/documents/casestudies/APPNOTE.TXT\">http://www.pkware.com/documents/casestudies/APPNOTE.TXT</a>&nbsp;as compression level 9.&nbsp; Looking at the code it's pretty clear that DotNetZip would throw a specific exception if there was an unsupported compression level.&nbsp; You're not getting that exception so I don't think it's using Deflate64.</p>\r\n<p>The &quot;relative offset&nbsp;of local header&quot; is a reference to the location in the zip file where the zipentry data begins.&nbsp; For entries that appear prior to the 4.2gb mark in the zip file, the 32-bit quantity suffices.&nbsp; For entries beyond that point, ROLH would be higher than 0xffffffff.&nbsp; According to the zip64 extension, in that case the archiving tool should put a value of 0xffffffff in the place where ROLH is stored normally, and then store the actual offset elsewhere, in a 64-bit quantity.&nbsp;&nbsp; So what you are seeing is, for the last few files in that archive, the offset within the zip archive itself is beyond 0xffffffff.</p>\r\n<p>In looking at the tests for DotNetZip, they cover the case where WinZip12 unzips a ZIP64 archive that DotNetZip produces, but not the converse.&nbsp; That test succeeds - WinZip can extract a ZIP64-archive larger than 4.2gb that is produced by DotNetZip.&nbsp; I'll build another test for the other case, and we'll see if it works.</p>",
    "PostedDate": "2009-07-24T03:03:28.32-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215672",
    "ThreadId": "63392",
    "Html": "<p>Also, &quot;oversusbcribed dynamic bit lengths tree&quot; generally indicates corruption.&nbsp; Have you got a secure hash on that file?&nbsp;&nbsp; Something that would allow you to verify that the zip file had not been corrupted or damaged between the time it was produced and the time you got it?</p>\r\n<p>If you want to learn more about the &quot;oversubscribed dynamic bit lengths tree&quot; error - you can read these resources:</p>\r\n<ul>\r\n<li><a href=\"http://www.zlib.net/feldspar.html\">Feldspar's article</a></li>\r\n<li><a href=\"http://en.wikipedia.org/wiki/Huffman_coding\">Huffman coding</a></li>\r\n<li><a href=\"http://en.wikipedia.org/wiki/Canonical_Huffman_code\">Canonical_Huffman_code</a></li>\r\n<li>the ZLIB source</li>\r\n</ul>\r\n<p>&nbsp;</p>",
    "PostedDate": "2009-07-24T03:35:54.84-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215845",
    "ThreadId": "63392",
    "Html": "<p>I think I have seen something similar to this before and I have a theory as to what causes it.&nbsp; I think it is due to the way that DotNetZip parses the Zip64 extra field.</p>\r\n<p>The case where I have seen it (which sounds similar to what the original poster here described) is where the Zip file itself is over 4GB but none of the individual files have an uncompressed or compressed size over 4GB.&nbsp; In this case, when creating the Zip file, WinZip just puts the relative offset of local header in the Zip64 field.&nbsp; The field is therefore just 8 bytes in length.&nbsp; However, when reading the file with DotNetZip, this piece of code in ProcessExtraField appears to be assuming that if it expects to find the relative offset in the Zip64 field, then the uncompressed and compressed size will be there too.&nbsp; If the length of the field is less than 24 it won't read the relative offset.</p>\r\n<p>&nbsp;</p>\r\n<div style=\"color:Black;background-color:White\">\r\n<pre><span style=\"color:Blue\">if</span> (<span style=\"color:Blue\">this</span>._UncompressedSize == 0xFFFFFFFF &amp;&amp; DataSize &gt;= 8)\r\n{\r\n    <span style=\"color:Blue\">this</span>._UncompressedSize = BitConverter.ToInt64(Buffer, j);\r\n    j += 8;\r\n}\r\n<span style=\"color:Blue\">if</span> (<span style=\"color:Blue\">this</span>._CompressedSize == 0xFFFFFFFF &amp;&amp; DataSize &gt;= 16)\r\n{\r\n    <span style=\"color:Blue\">this</span>._CompressedSize = BitConverter.ToInt64(Buffer, j);\r\n    j += 8;\r\n}\r\n<span style=\"color:Blue\">if</span> (<span style=\"color:Blue\">this</span>._RelativeOffsetOfLocalHeader == 0xFFFFFFFF &amp;&amp; DataSize &gt;= 24)\r\n{\r\n    <span style=\"color:Blue\">this</span>._RelativeOffsetOfLocalHeader = BitConverter.ToInt64(Buffer, j);\r\n    j += 8;\r\n}\r\n</pre>\r\n</div>\r\n<p>As far as I understand it, the Zip spec says that any of the uncompressed size, compressed size, relative offset and disk number can be present in the Zip64 field but that they will always appear in the same order.&nbsp; So I think DotNetZip needs to cater for the case where just the relative offset is present.</p>\r\n<p>My guess as to what is causing the error is that the relative offset gets incorrectly set to 0xFFFFFFFF and it tries to decompress the data at that point in the file.&nbsp; This causes a problem with ZLib because it is not valid deflated data.</p>\r\n<p>&nbsp;</p>",
    "PostedDate": "2009-07-24T12:59:44.983-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215870",
    "ThreadId": "63392",
    "Html": "<p>I think you are on to something. &nbsp;Looking at the .zip detail again in WinZip 12, the extact file where the relative offset reports 0xFFFFFFFF, there is a Zip64 tag on the file showing up. &nbsp;The length of the file is only 8 bits but appears to hold the RelativeOffset. &nbsp;</p>\r\n<p>I copy in the .zip entries of files</p>\r\n<p><span style=\"white-space:pre\"> </span>31303 (last file before the relative offset exceeds 0xFFFFFFFF),</p>\r\n<p><span style=\"white-space:pre\"> </span>31304 (a directory entry and relative offset set to&nbsp;0xFFFFFFFF)</p>\r\n<p><span style=\"white-space:pre\"> </span>31305 (a file entry with relative offset set to 0xFFFFFFFF)</p>\r\n<p>Note: the filename were changed to due to the sensitive of the information&nbsp;</p>\r\n<p>Thanks for your help.</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><span style=\"color:#76923c;font-size:medium\"><span><span style=\"color:#000000;font-size:small\"><span>&nbsp;</span></span></span></span></p>\r\n<p><span style=\"color:#76923c;font-size:medium\"></span></p>\r\n<p><span style=\"color:#76923c;font-size:medium\"><span style=\"color:#000000;font-size:small\">\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">Central directory entry PK0102 (4+42): #31303</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">======================================</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;part number in which file begins (0000): &nbsp; &nbsp; &nbsp; &nbsp;1</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;relative offset of local header: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;4294430697 (0xfff7cfe9) bytes</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;version made by operating system (00): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;MS-DOS, OS/2, NT FAT</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;version made by zip software (20): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2.0</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;operat. system version needed to extract (00): &nbsp;MS-DOS, OS/2, NT FAT</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;unzip software version needed to extract (20): &nbsp;2.0</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;general purpose bit flag (0x0002) (bit 15..0): &nbsp;0000.0000 0000.0010</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;file security status &nbsp;(bit 0): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;not encrypted</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;extended local header (bit 3): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;no</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;compression method (08): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;deflated</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;compression sub-type (deflation): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; maximum</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;file last modified on (0x0000395b 0x0000baa7): &nbsp;2008-10-27 23:21:14</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;32-bit CRC value: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0xaea49b0e</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;compressed size: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;725291 bytes</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;uncompressed size: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1001275 bytes</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;length of filename: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 104 characters</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;length of extra field: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;36 bytes</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;length of file comment: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 characters</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;internal file attributes: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0x0001</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;apparent file type: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; text</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;external file attributes: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0x00000020</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;non-MSDOS external file attributes: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0x000000</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;MS-DOS file attributes (0x20): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;arc</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">Current Location part 1 offset 4338824867</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;filename:ups2002@hotmail.com\\9\\7e765e71-21a6-47d9-8501-789ae3aa3894\\7e765e71-21a6-47d9-8501-789ae3aa3894_mime.txt</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">Current Location part 1 offset 4338824971</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;extra field 0x000a (PKWARE Win32 Filetimes), 4 header and 32 data bytes:</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;00 00 00 00 01 00 18 00 00 19 3c 9d b4 38 c9 01 ..........&lt;..8..</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;00 19 3c 9d b4 38 c9 01 00 19 3c 9d b4 38 c9 01 ..&lt;..8....&lt;..8..</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;The Extended Timestamps are:</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;Creation Date: &nbsp; &nbsp; &nbsp; 2008-10-27 23:21:14</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;Last Modified Date: &nbsp;2008-10-27 23:21:14</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;Last Accessed Date: &nbsp;2008-10-27 23:21:14</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">Current Location part 1 offset 4338825007</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">Central directory entry PK0102 (4+42): #31304</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">======================================</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;part number in which file begins (0000): &nbsp; &nbsp; &nbsp; &nbsp;1</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;relative offset of local header: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;4294967295 (0xffffffff) bytes</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;version made by operating system (00): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;MS-DOS, OS/2, NT FAT</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;version made by zip software (45): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;4.5</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;operat. system version needed to extract (00): &nbsp;MS-DOS, OS/2, NT FAT</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;unzip software version needed to extract (45): &nbsp;4.5</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;general purpose bit flag (0x0000) (bit 15..0): &nbsp;0000.0000 0000.0000</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;file security status &nbsp;(bit 0): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;not encrypted</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;extended local header (bit 3): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;no</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;compression method (00): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;none (stored)</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;file last modified on (0x00003ae7 0x00005509): &nbsp;2009-07-07 10:40:18</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;32-bit CRC value: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0x00000000</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;compressed size: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0 bytes</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;uncompressed size: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0 bytes</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;length of filename: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 59 characters</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;length of extra field: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;48 bytes</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;length of file comment: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 characters</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;internal file attributes: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0x0000</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;apparent file type: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; binary</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;external file attributes: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0x00000010</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;non-MSDOS external file attributes: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0x000000</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;MS-DOS file attributes (0x10): &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;dir</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">Current Location part 1 offset 4338825053</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;filename:ups2002@hotmail.com\\9\\8105cdf2-8469-4add-a2a2-2f95b86110f5\\</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">Current Location part 1 offset 4338825112</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;extra field 0x000a (PKWARE Win32 Filetimes), 4 header and 32 data bytes:</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;00 00 00 00 01 00 18 00 90 65 96 3a 19 ff c9 01 .........e.:....</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;50 0f e1 71 19 ff c9 01 00 54 7f 81 42 39 c9 01 P..q.....T.B9..</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;The Extended Timestamps are:</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;Creation Date: &nbsp; &nbsp; &nbsp; 2008-10-28 16:16:56</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;Last Modified Date: &nbsp;2009-07-07 10:40:18</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;Last Accessed Date: &nbsp;2009-07-07 10:41:52</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;extra field 0x0001 (ZIP64 Tag), 4 header and 8 data bytes:</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;9a e1 02 00 01 00 00 00 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp;ZIP64 Tag Value(s):</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">&nbsp;&nbsp; &nbsp; &nbsp;Value #1: 4295156122</div>\r\n<div id=\"_mcePaste\" style=\"left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden\">Current Location part 1 offset 4338825160</div>\r\n<p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-family:'Courier New';color:#76923c;font-size:small\"><span>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">Central directory entry PK0102 (4+42): #31303</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">======================================</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>part number in which file begins (0000):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>relative offset of local header:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4294430697 (0xfff7cfe9) bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>version made by operating system (00):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>MS-DOS, OS/2, NT FAT</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>version made by zip software (20):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2.0</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>operat. system version needed to extract (00):<span style=\"\">&nbsp; </span>MS-DOS, OS/2, NT FAT</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>unzip software version needed to extract (20):<span style=\"\">&nbsp; </span>2.0</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>general purpose bit flag (0x0002) (bit 15..0):<span style=\"\">&nbsp; </span>0000.0000 0000.0010</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>file security status<span style=\"\">&nbsp; </span>(bit 0):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>not encrypted</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>extended local header (bit 3):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>no</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>compression method (08):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>deflated</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>compression sub-type (deflation):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>maximum</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>file last modified on (0x0000395b 0x0000baa7):<span style=\"\">&nbsp; </span>2008-10-27 23:21:14</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>32-bit CRC value:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0xaea49b0e</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>compressed size:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>725291 bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp; </span><span style=\"\">&nbsp;&nbsp;</span>uncompressed size:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1001275 bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>length of filename:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>104 characters</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>length of extra field:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>36 bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>length of file comment:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0 characters</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span></span><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE>internal file attributes:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0x0001</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>apparent file type:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>text</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp; </span>external file attributes:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0x00000020</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>non-MSDOS external file attributes:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0x000000</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>MS-DOS file attributes (0x20):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>arc</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE>Current Location part 1 offset 4338824867</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp; </span>filename:&lt;FILENAME&gt;.txt</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE>Current Location part 1 offset 4338824971</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp; </span></span><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">extra field 0x000a (PKWARE Win32 Filetimes), 4 header and 32 data bytes:</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>00 00 00 00 01 00 18 00 00 19 3c 9d b4 38 c9 01 ..........&lt;..8..</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>00 19 3c 9d b4 38 c9 01 00 19 3c 9d b4 38 c9 01 ..&lt;..8....&lt;..8..</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>The Extended Timestamps are:</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Creation Date:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2008-10-27 23:21:14</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Last Modified Date:<span style=\"\">&nbsp; </span>2008-10-27 23:21:14</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Last Accessed Date:<span style=\"\">&nbsp; </span>2008-10-27 23:21:14</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">Current Location part 1 offset 4338825007</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">Central directory entry PK0102 (4+42): #31304</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">======================================</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>part number in which file begins (0000):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>relative offset of local header:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4294967295 (0xffffffff) bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>version made by operating system (00):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>MS-DOS, OS/2, NT FAT</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>version made by zip software (45):<span style=\"\">&nbsp;&nbsp; </span><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>4.5</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>operat. system version needed to extract (00):<span style=\"\">&nbsp; </span>MS-DOS, OS/2, NT FAT</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>unzip software version needed to extract (45):<span style=\"\">&nbsp; </span>4.5</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>general purpose bit flag (0x0000) (bit 15..0):<span style=\"\">&nbsp; </span>0000.0000 0000.0000</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>file security status<span style=\"\">&nbsp; </span>(bit 0):<span style=\"\">&nbsp;&nbsp;&nbsp; </span><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>not encrypted</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>extended local header (bit 3):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>no</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>compression method (00):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>none (stored)</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>file last modified on (0x00003ae7 0x00005509):<span style=\"\">&nbsp; </span>2009-07-07 10:40:18</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>32-bit CRC value:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0x00000000</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>compressed size:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0 bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>uncompressed size:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0 bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>length of filename:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>59 characters</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>length of extra field:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>48 bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>length of file comment:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0 characters</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span></span><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE>internal file attributes:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0x0000</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>apparent file type:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>binary</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp; </span>external file attributes:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0x00000010</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>non-MSDOS external file attributes:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0x000000</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>MS-DOS file attributes (0x10):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>dir</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">Current Location part 1 offset 4338825053</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>filename:&lt;DIRECTORY&gt;</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">Current Location part 1 offset 4338825112</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>extra field 0x000a (PKWARE Win32 Filetimes), 4 header and 32 data bytes:</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span></span><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=IT>00 00 00 00 01 00 18 00 90 65 96 3a 19 ff c9 01 .........e.:....</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=IT><span style=\"\">&nbsp;&nbsp;&nbsp; </span>50 0f e1 71 19 ff c9 01 00 54 7f 81 42 39 c9 01 P..q.....T.B9..</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=IT><span style=\"\">&nbsp;&nbsp;&nbsp; </span></span><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">The Extended Timestamps are:</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Creation Date:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2008-10-28 16:16:56</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Last Modified Date:<span style=\"\">&nbsp; </span>2009-07-07 10:40:18</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Last Accessed Date:<span style=\"\">&nbsp; </span>2009-07-07 10:41:52</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>extra field 0x0001 (ZIP64 Tag), 4 header and 8 data bytes:</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>9a e1 02 00 01 00 00 00<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>........</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>ZIP64 Tag Value(s):</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Value #1: 4295156122</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">Current Location part 1 offset 4338825160</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">Central directory entry PK0102 (4+42): #31305</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">======================================</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>part number in which file begins (0000):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>relative offset of local header:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4294967295 (0xffffffff) bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>version made by operating system (00):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>MS-DOS, OS/2, NT FAT</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>version made by zip software (45):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>4.5</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>operat. system version needed to extract (00):<span style=\"\">&nbsp; </span>MS-DOS, OS/2, NT FAT</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>unzip software version needed to extract (45):<span style=\"\">&nbsp; </span>4.5</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>general purpose bit flag (0x0002) (bit 15..0):<span style=\"\">&nbsp; </span>0000.0000 0000.0010</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>file security status<span style=\"\">&nbsp; </span>(bit 0):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>not encrypted</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>extended local header (bit 3):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>no</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>compression method (08):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>deflated</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>compression sub-type (deflation):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>maximum</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>file last modified on (0x0000395b 0x0000baab):<span style=\"\">&nbsp; </span>2008-10-27 23:21:22</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>32-bit CRC value:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0xe7ac4931</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>compressed size:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>367 bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>uncompressed size:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>635 bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>length of filename:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>99 characters</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>length of extra field:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>48 bytes</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>length of file comment:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0 characters</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span></span><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE>internal file attributes:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0x0001</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>apparent file type:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>text</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp; </span>external file attributes:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0x00000020</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>non-MSDOS external file attributes:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0x000000</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>MS-DOS file attributes (0x20):<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>arc</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE>Current Location part 1 offset 4338825206</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp; </span>filename:&lt;FILENAME&gt;.txt</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE>Current Location part 1 offset 4338825305</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\" lang=FR-BE><span style=\"\">&nbsp;&nbsp;&nbsp; </span></span><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">extra field 0x000a (PKWARE Win32 Filetimes), 4 header and 32 data bytes:</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>00 00 00 00 01 00 18 00 00 cd 00 a2 b4 38 c9 01 .............8..</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>00 cd 00 a2 b4 38 c9 01 00 cd 00 a2 b4 38 c9 01 .....8.......8..</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>The Extended Timestamps are:</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Creation Date:<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2008-10-27 23:21:22</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Last Modified Date:<span style=\"\">&nbsp; </span>2008-10-27 23:21:22</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Last Accessed Date:<span style=\"\">&nbsp; </span>2008-10-27 23:21:22</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>extra field 0x0001 (ZIP64 Tag), 4 header and 8 data bytes:</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>f3 e1 02 00 01 00 00 00<span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>........</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp; </span>ZIP64 Tag Value(s):</span></p>\r\n<p style=\"margin-bottom:.0001pt;line-height:normal;text-autospace:none\"><span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\"><span style=\"\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Value #1: 4295156211</span></p>\r\n<span style=\"font-size:9.0pt;font-family:'Courier New';color:#76923c\">Current Location part 1 offset 4338825353</span></span></span></p>\r\n</p>\r\n</span></span></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>",
    "PostedDate": "2009-07-24T14:34:05.623-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215875",
    "ThreadId": "63392",
    "Html": "<p>RMLewin, good suggestion.&nbsp;</p>\r\n<blockquote>..ProcessExtraField appears to be assuming that if it expects to find the relative offset in the Zip64 field, then the uncompressed and compressed size will be there too.&nbsp; If the length of the field is less than 24 it won't read the relative offset..... As far as I understand it, the Zip spec says that any of the uncompressed size, compressed size, relative offset and disk number can be present in the Zip64 field but that they will always appear in the same order. So I think DotNetZip needs to cater for the case where just the relative offset is present.</blockquote>\r\n<p>You are correct, the ProcessExtraField assumes that both uncompressed and compressed sizes are in the extra field.&nbsp; I assume RelativeOffset *may* be present.&nbsp; Here's the part of the spec I am relying on, for that:</p>\r\n<pre>          Value      Size       Description\r\n          -----      ----       -----------\r\n  (ZIP64) 0x0001     2 bytes    Tag for this &quot;extra&quot; block type\r\n          Size       2 bytes    Size of this &quot;extra&quot; block\r\n          Original \r\n          Size       8 bytes    Original uncompressed file size\r\n          Compressed\r\n          Size       8 bytes    Size of compressed data\r\n          Relative Header\r\n          Offset     8 bytes    Offset of local header record\r\n          Disk Start\r\n          Number     4 bytes    Number of the disk on which\r\n                                this file starts \r\n\r\n          This entry in the Local header must include BOTH original\r\n          and compressed file size fields. If encrypting the \r\n          central directory and bit 13 of the general purpose bit\r\n          flag is set indicating masking, the value stored in the\r\n          Local Header for the original file size will be zero.\r\n\r\n</pre>\r\n<p>I have not yet examined a ZIP64 file generated by WinZip to see the ZIP64 extra field.</p>",
    "PostedDate": "2009-07-24T14:58:23.54-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215877",
    "ThreadId": "63392",
    "Html": "<p>I think the key&nbsp;phrase is&nbsp;&quot;The [ZIP64] <strong>entry in the Local Header</strong> must include both original and compressed file size fields.&quot;</p>\r\n<p>On the other hand, there is also an entry in the central directory record for the ZIP64 info.&nbsp; I have designed the code with the idea that the entry in the central directory will also include both original and compressed file size fields, but this is not correct.</p>\r\n<p>This is a bug.</p>",
    "PostedDate": "2009-07-24T15:03:35.82-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215878",
    "ThreadId": "63392",
    "Html": "<p>&nbsp;</p>\r\n<div style=\"color:Black;background-color:White\">\r\n<pre><span style=\"color:#0000ff\"><span style=\"color:#000000\">Changing the Datasize to just 8 in every condition should fix this.  I want to try this to test but am unable to compile the Zip Full DLL project stating error &quot;Unable to copy from the &quot;obj\\Debug\\Ionic.Zip.dll&quot; to &quot;bin\\Debug\\Ionic.Zip.dll&quot;&quot;</span></span></pre>\r\n<pre><span style=\"color:#0000ff\"><br></span></pre>\r\n<pre><span style=\"color:Blue\">if</span> (<span style=\"color:Blue\">this</span>._UncompressedSize == 0xFFFFFFFF &amp;&amp; DataSize &gt;= 8)\r\n{\r\n    <span style=\"color:Blue\">this</span>._UncompressedSize = BitConverter.ToInt64(Buffer, j);\r\n    j += 8;\r\n}\r\n<span style=\"color:Blue\">if</span> (<span style=\"color:Blue\">this</span>._CompressedSize == 0xFFFFFFFF &amp;&amp; DataSize &gt;= 8)\r\n{\r\n    <span style=\"color:Blue\">this</span>._CompressedSize = BitConverter.ToInt64(Buffer, j);\r\n    j += 8;\r\n}\r\n<span style=\"color:Blue\">if</span> (<span style=\"color:Blue\">this</span>._RelativeOffsetOfLocalHeader == 0xFFFFFFFF &amp;&amp; DataSize &gt;= 8)\r\n{\r\n    <span style=\"color:Blue\">this</span>._RelativeOffsetOfLocalHeader = BitConverter.ToInt64(Buffer, j);\r\n    j += 8;\r\n}</pre>\r\n</div>",
    "PostedDate": "2009-07-24T15:03:44.927-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215880",
    "ThreadId": "63392",
    "Html": "<table border=0 width=800>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>It's not as simple as that, I think.&nbsp; But you're right that it's a pretty simple fix. &nbsp;</p>\r\n<p>The problem with your code is that it does not handle the error case where DataSize==8, and more than one of {UncompressedSize, CompressedSize, RelativeOFfset} is 0xFFFFFFFF.&nbsp; In that case, DotNetZip must throw an error.&nbsp;</p>\r\n<p>I'm testing a fix now. But it will take me a while to create the 5gb zip file.</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>",
    "PostedDate": "2009-07-24T15:15:44.19-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215881",
    "ThreadId": "63392",
    "Html": "<p>This is the part of the spec that I was referring to:</p>\r\n<p>&quot;The order of the fields in the zip64 extended&nbsp; information record is fixed, but the fields will only appear if the corresponding Local or Central directory record field is set to 0xFFFF or 0xFFFFFFFF.&quot;</p>",
    "PostedDate": "2009-07-24T15:16:35.37-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215883",
    "ThreadId": "63392",
    "Html": "<table border=0 width=800>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>Yep, and I had that part covered&nbsp; - &quot;will only appear etc etc.&nbsp;&quot; is covered by the test for 0xFFFFFFFF.&nbsp; But the error was assuming that the statement that <em>the original and compressed file sizes MUST be present </em>applied to both the Local Header as well as the central directory header. It clearly applies to the local header. It apparently does not apply to the central directory.</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>",
    "PostedDate": "2009-07-24T15:35:37.837-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "215937",
    "ThreadId": "63392",
    "Html": "<p>ok I haven't run the tests yet, having some trouble with disk space.</p>\r\n<p>But there's a release v1.8.4.11 available, with the fix for the handling of the ZIP64 header.&nbsp; Try it and see if it works for your file.&nbsp; let me know.</p>",
    "PostedDate": "2009-07-24T20:53:53.457-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "216096",
    "ThreadId": "63392",
    "Html": "<p>All the tests I ran succeeded with these changes.</p>",
    "PostedDate": "2009-07-25T21:51:17.63-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "216437",
    "ThreadId": "63392",
    "Html": "<p>Thanks Cheeso. &nbsp;That fixed the problem I was having..... &nbsp; Its not easy, being cheesy....</p>",
    "PostedDate": "2009-07-27T09:47:22.81-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "216465",
    "ThreadId": "63392",
    "Html": "<p>Thanks for reporting it, and thanks for working through it with me.</p>\r\n<p>ps: there was a bug in my original fix, so you definitely want v1.8.4.12, not v1.8.4.11.</p>",
    "PostedDate": "2009-07-27T10:43:07.877-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  }
]