Hi @Matthew Binsfeld ,
I looked through the docx and besides the errors that the validator finds, there is invalid markup in header1.xml and header4.xml. If you look both of those files contain empty <w:sdtContent />
elements, but this is invalid. sdtContent must have at least one inline-level structure, such as a w:p
.
From ISO/IEC 29500 17.5.2.34 sdtContent (Block-Level Structured Document Tag Content)
"This element specifies the last known contents of a structured document tag around one or more block-level structures (paragraphs, tables, etc.)"
If you replace the self-closing <w:sdtContent />
with something simple like below and resolve the errors found by the validator, the file will open without needing repair.
<w:sdtContent>
<w:p>
<w:r>
<w:t></w:t>
</w:r>
</w:p>
</w:sdtContent>
Please give that a try and let me know if you can open the file. If it resolves your issue, please mark this as answered.