World Decentralizer

Results 2 issues of World Decentralizer

This PR fixes #82 ``` Attempted import error: 'uuid' does not contain a default export (imported as 'uuid'). ``` by updating `import uuid from 'uuid';` to `import * as uuid...

The 'uuid' package used by `utils/encryption.ts` has no default export. This produces the following error ``` Attempted import error: 'uuid' does not contain a default export (imported as 'uuid'). ```...