Viewing the file with whitespace visible in vim shows that there are strange combinations of tabs and spaces at the end of each line.

inview-01

inview-01

Assuming there’s more to whitespace than meets the eye, we search for all non-whitespace characters:

inview-02

inview-02

…and remove them. We also delete every other line, which contains nothing more than a single tab.

inview-04

inview-04

Converting each space to a zero and each tab to a one reveals:

inview-05

inview-05

Now we just view the data as ASCII!

inview-06

inview-06

Flag: WhitespaceProgrammingIsHard