Embed Icon MEL script

As much as I love MEL, I've always been annoyed by the distribution method for scripts that include custom images. For many users, installing the script itself is hassle enough, and asking them to keep track of images only increases the liklihood of something getting lost or misplaced.

I created a script that will embed bitmap data into a given MEL script by parsing the binary content of the bitmap file and writing it to the MEL script as an integer array. The script also adds functions to the target script that can be used to re-constitute the added image(s) at startup.
I never released this script, since it can also be used to embed (and reconstitute) arbitrary binary data, included compiled programs. I was able to successfully use the script to embed a compiled C++ app into a script and trigger it on script startup. It was a harmless program, but could have been malicious, so I reserve the script for private use.