diff --git a/package.json b/package.json
index 2a50d587be7f271b7a5d879f5f4c6c89356a63d3..36a013ffa63d4eca608faf1fd03d8e59131e7ee9 100644
--- a/package.json
+++ b/package.json
@@ -96,13 +96,13 @@
     "redux-throttle": "0.1.1",
     "rimraf": "^2.6.1",
     "scratch-audio": "0.1.0-prerelease.20180625202813",
-    "scratch-blocks": "0.1.0-prerelease.1531409796",
-    "scratch-l10n": "3.0.20180703181510",
+    "scratch-blocks": "0.1.0-prerelease.1531439997",
+    "scratch-l10n": "3.0.20180712200642",
     "scratch-paint": "0.2.0-prerelease.20180712195436",
     "scratch-render": "0.1.0-prerelease.20180618173030",
     "scratch-storage": "0.5.1",
-    "scratch-svg-renderer": "0.2.0-prerelease.20180618172917",
-    "scratch-vm": "0.1.0-prerelease.1531340421",
+    "scratch-svg-renderer": "0.2.0-prerelease.20180712223402",
+    "scratch-vm": "0.1.0-prerelease.1531436232",
     "selenium-webdriver": "3.6.0",
     "startaudiocontext": "1.2.1",
     "style-loader": "^0.21.0",
diff --git a/src/components/connection-modal/connection-modal.css b/src/components/connection-modal/connection-modal.css
index ee0a0aae1e6ee354f7c3a2decd302f65b000644d..b636b4af9cdb5e1d4c44505a12b62f3b405d7ecb 100644
--- a/src/components/connection-modal/connection-modal.css
+++ b/src/components/connection-modal/connection-modal.css
@@ -183,6 +183,10 @@
     align-items: center;
 }
 
+.scratch-link-icon {
+    max-width: 150px;
+}
+
 .button-row {
     font-weight: bolder;
     text-align: center;
diff --git a/src/components/connection-modal/connection-modal.jsx b/src/components/connection-modal/connection-modal.jsx
index 5ddcb33e3b891aa5641cbf63d884688cc83c0183..9a77e92f56ebd4cb439f0c12cbf0cc0a7b46d09e 100644
--- a/src/components/connection-modal/connection-modal.jsx
+++ b/src/components/connection-modal/connection-modal.jsx
@@ -9,6 +9,7 @@ import ScanningStep from '../../containers/scanning-step.jsx';
 import ConnectingStep from './connecting-step.jsx';
 import ConnectedStep from './connected-step.jsx';
 import ErrorStep from './error-step.jsx';
+import UnavailableStep from './unavailable-step.jsx';
 
 import styles from './connection-modal.css';
 
@@ -16,7 +17,8 @@ const PHASES = keyMirror({
     scanning: null,
     connecting: null,
     connected: null,
-    error: null
+    error: null,
+    unavailable: null
 });
 
 const ConnectionModalComponent = props => (
@@ -32,6 +34,7 @@ const ConnectionModalComponent = props => (
             {props.phase === PHASES.connecting && <ConnectingStep {...props} />}
             {props.phase === PHASES.connected && <ConnectedStep {...props} />}
             {props.phase === PHASES.error && <ErrorStep {...props} />}
+            {props.phase === PHASES.unavailable && <UnavailableStep {...props} />}
         </Box>
     </Modal>
 );
diff --git a/src/components/connection-modal/icons/scratch-link.png b/src/components/connection-modal/icons/scratch-link.png
new file mode 100644
index 0000000000000000000000000000000000000000..af7ceed4baac35730f1b803bc9477aa1b4f208a9
Binary files /dev/null and b/src/components/connection-modal/icons/scratch-link.png differ
diff --git a/src/components/connection-modal/unavailable-step.jsx b/src/components/connection-modal/unavailable-step.jsx
new file mode 100644
index 0000000000000000000000000000000000000000..2f789cbdb0e1a1d070e0c7e4abbe4d93a6143b18
--- /dev/null
+++ b/src/components/connection-modal/unavailable-step.jsx
@@ -0,0 +1,76 @@
+import {FormattedMessage} from 'react-intl';
+import PropTypes from 'prop-types';
+import React from 'react';
+
+import Box from '../box/box.jsx';
+import Dots from './dots.jsx';
+import helpIcon from './icons/help.svg';
+import backIcon from './icons/back.svg';
+import scratchLinkIcon from './icons/scratch-link.png';
+
+import styles from './connection-modal.css';
+
+const UnavailableStep = props => (
+    <Box className={styles.body}>
+        <Box className={styles.activityArea}>
+            <Box className={styles.centeredRow}>
+                <div className={styles.deviceActivity}>
+                    <img
+                        className={styles.scratchLinkIcon}
+                        src={scratchLinkIcon}
+                    />
+                </div>
+            </Box>
+        </Box>
+        <Box className={styles.bottomArea}>
+            <div className={styles.instructions}>
+                <FormattedMessage
+                    defaultMessage="Please start Scratch Link and turn on Bluetooth."
+                    description="Scratch link is not installed message"
+                    id="gui.connection.unavailableMessage"
+                />
+            </div>
+            <Dots
+                error
+                total={3}
+            />
+            <Box className={styles.buttonRow}>
+                <button
+                    className={styles.connectionButton}
+                    onClick={props.onScanning}
+                >
+                    <img
+                        className={styles.buttonIconLeft}
+                        src={backIcon}
+                    />
+                    <FormattedMessage
+                        defaultMessage="Try again"
+                        description="Button to initiate trying the device connection again after an error"
+                        id="gui.connection.tryagainbutton"
+                    />
+                </button>
+                <button
+                    className={styles.connectionButton}
+                    onClick={props.onHelp}
+                >
+                    <img
+                        className={styles.buttonIconLeft}
+                        src={helpIcon}
+                    />
+                    <FormattedMessage
+                        defaultMessage="Help"
+                        description="Button to view help content"
+                        id="gui.connection.helpbutton"
+                    />
+                </button>
+            </Box>
+        </Box>
+    </Box>
+);
+
+UnavailableStep.propTypes = {
+    onHelp: PropTypes.func,
+    onScanning: PropTypes.func
+};
+
+export default UnavailableStep;
diff --git a/src/containers/connection-modal.jsx b/src/containers/connection-modal.jsx
index ffb5c6ddf5c3b4ec05d61d1cbca8b7c05ac13d3d..3b1a68b3adc72942123b1275b18484fa12623067 100644
--- a/src/containers/connection-modal.jsx
+++ b/src/containers/connection-modal.jsx
@@ -57,9 +57,17 @@ class ConnectionModal extends React.Component {
     }
     handleError () {
         this.props.onStatusButtonUpdate();
-        this.setState({
-            phase: PHASES.error
-        });
+        // Assume errors that come in during scanning phase are the result of not
+        // having scratch-link installed.
+        if (this.state.phase === PHASES.scanning || this.state.phase === PHASES.unavailable) {
+            this.setState({
+                phase: PHASES.unavailable
+            });
+        } else {
+            this.setState({
+                phase: PHASES.error
+            });
+        }
     }
     handleConnected () {
         this.props.onStatusButtonUpdate();
diff --git a/src/containers/costume-library.jsx b/src/containers/costume-library.jsx
index fdef46f07fe03192469f3e79583193f77de9d038..070c9f4b9421365aa2f308ea2c96b68818fcc4cf 100644
--- a/src/containers/costume-library.jsx
+++ b/src/containers/costume-library.jsx
@@ -26,10 +26,14 @@ class CostumeLibrary extends React.PureComponent {
         ]);
     }
     handleItemSelected (item) {
+        const split = item.md5.split('.');
+        const type = split.length > 1 ? split[1] : null;
+        const rotationCenterX = type === 'svg' ? item.info[0] : item.info[0] / 2;
+        const rotationCenterY = type === 'svg' ? item.info[1] : item.info[1] / 2;
         const vmCostume = {
             name: item.name,
-            rotationCenterX: item.info[0],
-            rotationCenterY: item.info[1],
+            rotationCenterX,
+            rotationCenterY,
             bitmapResolution: item.info.length > 2 ? item.info[2] : 1,
             skinId: null
         };
diff --git a/src/containers/costume-tab.jsx b/src/containers/costume-tab.jsx
index 248ce989be56d7767bd6866de858bfd17e968400..454c5ffcef7a203ac7a927bb4b6873cb4b0041f1 100644
--- a/src/containers/costume-tab.jsx
+++ b/src/containers/costume-tab.jsx
@@ -161,11 +161,15 @@ class CostumeTab extends React.Component {
     }
     handleSurpriseCostume () {
         const item = costumeLibraryContent[Math.floor(Math.random() * costumeLibraryContent.length)];
+        const split = item.md5.split('.');
+        const type = split.length > 1 ? split[1] : null;
+        const rotationCenterX = type === 'svg' ? item.info[0] : item.info[0] / 2;
+        const rotationCenterY = type === 'svg' ? item.info[1] : item.info[1] / 2;
         const vmCostume = {
             name: item.name,
             md5: item.md5,
-            rotationCenterX: item.info[0],
-            rotationCenterY: item.info[1],
+            rotationCenterX,
+            rotationCenterY,
             bitmapResolution: item.info.length > 2 ? item.info[2] : 1,
             skinId: null
         };
diff --git a/src/containers/stage.jsx b/src/containers/stage.jsx
index 01fc3ec7c72f668196496859159896292ae6d68f..0ff48ef0216f2482d0d01e340340b95c274be0f0 100644
--- a/src/containers/stage.jsx
+++ b/src/containers/stage.jsx
@@ -9,6 +9,7 @@ import {STAGE_DISPLAY_SIZES} from '../lib/layout-constants';
 import {getEventXY} from '../lib/touch-utils';
 import VideoProvider from '../lib/video/video-provider';
 import {SVGRenderer as V2SVGAdapter} from 'scratch-svg-renderer';
+import {BitmapAdapter as V2BitmapAdapter} from 'scratch-svg-renderer';
 
 import StageComponent from '../components/stage/stage.jsx';
 
@@ -60,6 +61,7 @@ class Stage extends React.Component {
             this.props.vm.attachRenderer(this.renderer);
         }
         this.props.vm.attachV2SVGAdapter(new V2SVGAdapter());
+        this.props.vm.attachV2BitmapAdapter(new V2BitmapAdapter());
         this.props.vm.setVideoProvider(new VideoProvider());
     }
     componentDidMount () {
diff --git a/src/lib/file-uploader.js b/src/lib/file-uploader.js
index d32f5cc1cdf4d055ba9d5078d7bc9589e2d8002b..53d0ab8f651442ebfe4e2d27e5484fe52fdeabbd 100644
--- a/src/lib/file-uploader.js
+++ b/src/lib/file-uploader.js
@@ -1,4 +1,4 @@
-import {importBitmap} from 'scratch-svg-renderer';
+import {BitmapAdapter} from 'scratch-svg-renderer';
 import log from './log.js';
 
 /**
@@ -79,7 +79,7 @@ const cacheAsset = function (storage, fileName, assetType, dataFormat, data) {
 
 /**
  * Handles loading a costume or a backdrop using the provided, context-relevant information.
- * @param {ArrayBuffer | string} fileData The costume data to load (this can be an image url
+ * @param {ArrayBuffer | string} fileData The costume data to load (this can be a base64 string
  * iff the image is a bitmap)
  * @param {string} fileType The MIME type of this file
  * @param {string} costumeName The user-readable name to use for the costume.
@@ -112,13 +112,15 @@ const costumeUpload = function (fileData, fileType, costumeName, storage, handle
         return;
     }
 
-    const addCostumeFromBuffer = function (error, costumeBuffer) {
-        if (error) {
-            log.warn(`An error occurred while trying to extract image data: ${error}`);
-            return;
-        }
-
-        const vmCostume = cacheAsset(storage, costumeName, assetType, costumeFormat, costumeBuffer);
+    const bitmapAdapter = new BitmapAdapter();
+    const addCostumeFromBuffer = function (dataBuffer) {
+        const vmCostume = cacheAsset(
+            storage,
+            costumeName,
+            assetType,
+            costumeFormat,
+            dataBuffer
+        );
         handleCostume(vmCostume);
     };
 
@@ -127,10 +129,13 @@ const costumeUpload = function (fileData, fileType, costumeName, storage, handle
         // passing in an array buffer causes the sprite/costume
         // thumbnails to not display because the data URI for the costume
         // is invalid
-        addCostumeFromBuffer(null, new Uint8Array(fileData));
+        addCostumeFromBuffer(new Uint8Array(fileData));
     } else {
         // otherwise it's a bitmap
-        importBitmap(fileData, addCostumeFromBuffer);
+        bitmapAdapter.importBitmap(fileData, fileType).then(addCostumeFromBuffer)
+            .catch(e => {
+                log.error(e);
+            });
     }
 };
 
diff --git a/src/lib/libraries/backdrops.json b/src/lib/libraries/backdrops.json
index 014568cf446d5d3742cbabc12faddccacd943575..14f82655b643c8d84de25d60d768a9115d7b1c62 100644
--- a/src/lib/libraries/backdrops.json
+++ b/src/lib/libraries/backdrops.json
@@ -1,7 +1,26 @@
 [
     {
-        "name": "Baseball",
-        "md5": "5d3a62635eacfbbe264fbba043207afe.svg",
+        "name": "Arctic",
+        "md5": "67e0db3305b3c8bac3a363b1c428892e.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "robert hunter"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Baseball 1",
+        "md5": "825d9b54682c406215d9d1f98a819449.svg",
         "type": "backdrop",
         "tags": [
             "baseball",
@@ -17,7 +36,7 @@
     },
     {
         "name": "Baseball 2",
-        "md5": "069f8901194ff75609689b4a0de10b4e.svg",
+        "md5": "7be1f5b3e682813dac1f297e52ff7dca.svg",
         "type": "backdrop",
         "tags": [
             "baseball",
@@ -32,11 +51,12 @@
         ]
     },
     {
-        "name": "Basketball",
+        "name": "Basketball 1",
         "md5": "e494c4f44897d94e0541f7036a302449.svg",
         "type": "backdrop",
         "tags": [
             "sports",
+            "outdoors",
             "basketball",
             "alex eben meyer"
         ],
@@ -47,13 +67,39 @@
         ]
     },
     {
-        "name": "Bedroom",
-        "md5": "e2f8b0dbd0a65d2ad8bfc21616662a6a.png",
+        "name": "Basketball 2",
+        "md5": "a5865738283613a2725b2c9dda6d8c78.png",
         "type": "backdrop",
         "tags": [
-            "indoors",
-            "home",
-            "house"
+            "outdoors",
+            "sports",
+            "basketball"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Beach Malibu",
+        "md5": "050615fe992a00d6af0e664e497ebf53.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Beach Rio",
+        "md5": "968f0ede6e70e1dbb763d6fd4c5003e0.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors"
         ],
         "info": [
             960,
@@ -63,12 +109,38 @@
     },
     {
         "name": "Bedroom 2",
+        "md5": "e2f8b0dbd0a65d2ad8bfc21616662a6a.png",
+        "type": "backdrop",
+        "tags": [
+            "indoors"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Bedroom 3",
         "md5": "8cc0b88d53345b3e337e8f028a32a4e7.png",
         "type": "backdrop",
         "tags": [
-            "indoors",
-            "home",
-            "house"
+            "indoors"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Bench With View",
+        "md5": "962201a2b712a302fb087f8f0dcb2076.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "hill",
+            "view"
         ],
         "info": [
             960,
@@ -91,39 +163,39 @@
         ]
     },
     {
-        "name": "Blue Sky 2",
-        "md5": "ba427e8c539997f6b7a598f2a78306ca.svg",
+        "name": "Boardwalk",
+        "md5": "de0e54cd11551566f044e7e6bc588b2c.png",
         "type": "backdrop",
         "tags": [
-            "outdoors"
+            "outdoors",
+            "ocean"
         ],
         "info": [
-            480,
-            360,
-            1
+            960,
+            720,
+            2
         ]
     },
     {
-        "name": "Blue Sky3",
-        "md5": "5a0159578408d7da9bac6d2379cabfe1.svg",
+        "name": "Canyon",
+        "md5": "c7c0b27b959193a0b570a9639cfe8158.png",
         "type": "backdrop",
         "tags": [
-            "outdoors"
+            "outdoors",
+            "nature"
         ],
         "info": [
-            480,
-            360,
-            1
+            960,
+            720,
+            2
         ]
     },
     {
-        "name": "Brick Wall",
-        "md5": "7e5327c68ff6ddabc48dbfe4717a04fe.png",
+        "name": "Castle 1",
+        "md5": "e1914ed7917267f1c2ef2b48004cade9.png",
         "type": "backdrop",
         "tags": [
-            "outdoors",
-            "music",
-            "dance"
+            "fantasy"
         ],
         "info": [
             960,
@@ -132,13 +204,51 @@
         ]
     },
     {
-        "name": "Brick Wall 2",
-        "md5": "82d867fcd9f1b5f49e29c2f853d55665.png",
+        "name": "Castle 2",
+        "md5": "951765ee7f7370f120c9df20b577c22f.png",
         "type": "backdrop",
         "tags": [
-            "outdoors",
-            "music",
-            "dance"
+            "fantasy"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Castle 3",
+        "md5": "76fa99f67569fcd39b4be74ed38c33f3.png",
+        "type": "backdrop",
+        "tags": [
+            "fantasy"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Castle 4",
+        "md5": "4f45f79af8e8dac3d41eb5a06ade61d4.png",
+        "type": "backdrop",
+        "tags": [
+            "fantasy"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Chalkboard",
+        "md5": "a8a24b5aa717bbef09dbe31368914427.png",
+        "type": "backdrop",
+        "tags": [
+            "indoors",
+            "school"
         ],
         "info": [
             960,
@@ -159,6 +269,20 @@
             1
         ]
     },
+    {
+        "name": "City With Water",
+        "md5": "1ef98019fc94ea65a1b55d5521285c7a.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "boston"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
     {
         "name": "Concert",
         "md5": "c8d90320d2966c08af8cdd1c6a7a93b5.png",
@@ -174,6 +298,51 @@
             2
         ]
     },
+    {
+        "name": "Farm",
+        "md5": "1e8a70bd07f1dcba3383883f3b948266.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "chicken",
+            "barn",
+            "coup",
+            "owen davey"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Field At Mit",
+        "md5": "5b0a970202b464915915260c03f05455.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "architecture"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Flowers",
+        "md5": "25a6ede51a96d4e55de2ffb81ae96f8c.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "nature"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
     {
         "name": "Galaxy",
         "md5": "5fab1922f254ae9fd150162c3e392bef.png",
@@ -190,13 +359,39 @@
         ]
     },
     {
-        "name": "Graffiti",
-        "md5": "4a876066505dc5ea3b72b390ca266769.png",
+        "name": "Greek Theater",
+        "md5": "93d71e8b8a96cc007b8d68f36acd338a.png",
         "type": "backdrop",
         "tags": [
             "outdoors",
-            "music",
-            "dance"
+            "theatre"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Hall",
+        "md5": "ea86ca30b346f27ca5faf1254f6a31e3.png",
+        "type": "backdrop",
+        "tags": [
+            "indoors"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Hay Field",
+        "md5": "da102a69d135973e0fc139131dec785a.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "farm"
         ],
         "info": [
             960,
@@ -205,7 +400,7 @@
         ]
     },
     {
-        "name": "Hearts1",
+        "name": "Hearts",
         "md5": "26d3418b2fbc1af2c5fea82e1c3df1db.svg",
         "type": "backdrop",
         "tags": [
@@ -218,16 +413,17 @@
         ]
     },
     {
-        "name": "Hearts2",
-        "md5": "83745a26bbe0801312dfb553b422bf69.svg",
+        "name": "Hill",
+        "md5": "2129c842f28d6881f622fdc3497ff2da.png",
         "type": "backdrop",
         "tags": [
-            "patterns"
+            "outdoors",
+            "nature"
         ],
         "info": [
-            480,
-            360,
-            1
+            960,
+            720,
+            2
         ]
     },
     {
@@ -246,8 +442,8 @@
         ]
     },
     {
-        "name": "Jurassic",
-        "md5": "ad5bd6c10d2afb79d298817ec24a47fd.svg",
+        "name": "Jurrasic",
+        "md5": "64025bdca5db4938f65597e3682fddcf.svg",
         "type": "backdrop",
         "tags": [
             "outdoors",
@@ -273,6 +469,21 @@
             1
         ]
     },
+    {
+        "name": "Metro",
+        "md5": "0b4a15ba028bf205ec051390d6ac4de7.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "city",
+            "urban"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
     {
         "name": "Moon",
         "md5": "0b1d2eaf22d62ef88de80ccde5578fba.png",
@@ -304,6 +515,23 @@
             2
         ]
     },
+    {
+        "name": "Mural",
+        "md5": "efb625f7e0b199b15f69e116cd053cea.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "mural",
+            "graffiti",
+            "street",
+            "art"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
     {
         "name": "Nebula",
         "md5": "9b5cdbd596da1b6149f56b794b6394f4.png",
@@ -321,26 +549,45 @@
         ]
     },
     {
-        "name": "Ocean",
-        "md5": "fb907f72b310acc8b95cbf2d2cccabc9.svg",
+        "name": "Neon Tunnel",
+        "md5": "57d2b13b2f73d3d878c72810c137b0d6.png",
         "type": "backdrop",
         "tags": [
-            "underwater",
-            "ipzy"
+            "games",
+            "game",
+            "space"
         ],
         "info": [
-            480,
-            360,
-            1
+            960,
+            720,
+            2
         ]
     },
     {
-        "name": "Ocean 2",
-        "md5": "1517c21786d2d0edc2f3037408d850bd.png",
+        "name": "Night City",
+        "md5": "6fdc795ff487204f72740567be5f64f9.png",
         "type": "backdrop",
         "tags": [
-            "water",
-            "underwater"
+            "outdoors",
+            "urban",
+            "city",
+            "metro"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Night City With Street",
+        "md5": "14443ad7907b6479d7562a12b8ae0efb.png",
+        "type": "backdrop",
+        "tags": [
+            "urban",
+            "city",
+            "metro",
+            "transportation"
         ],
         "info": [
             960,
@@ -363,14 +610,12 @@
         ]
     },
     {
-        "name": "Party Room",
-        "md5": "9aeff3d99d0a1845ad46955c8820cb5e.png",
+        "name": "Pathway",
+        "md5": "5d747ec036755a4b129f0d5b978bc61c.png",
         "type": "backdrop",
         "tags": [
-            "music",
-            "indoors",
-            "disco",
-            "dance"
+            "outdoors",
+            "garden"
         ],
         "info": [
             960,
@@ -379,19 +624,47 @@
         ]
     },
     {
-        "name": "Purple",
-        "md5": "b16a7870ab4287f0f46816b3c5061c9f.svg",
+        "name": "Playground",
+        "md5": "e5f794c8756ca0cead5cb7e7fe354c41.png",
         "type": "backdrop",
         "tags": [
-            "perriwinkle",
-            "blue",
-            "pastel",
-            "flying"
+            "outdoors",
+            "play"
         ],
         "info": [
-            480,
-            360,
-            1
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Playing Field",
+        "md5": "2de108f3098e92f5c5976cf75d38e99d.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "sports"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Pool",
+        "md5": "6cab934df643d2fc508cfa90c0c4059b.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "sports",
+            "swim",
+            "swimming"
+        ],
+        "info": [
+            960,
+            720,
+            2
         ]
     },
     {
@@ -423,6 +696,85 @@
             1
         ]
     },
+    {
+        "name": "Room 1",
+        "md5": "a81668321aa3dcc0fc185d3e36ae76f6.png",
+        "type": "backdrop",
+        "tags": [
+            "indoors",
+            "books",
+            "library"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Room 2",
+        "md5": "05ae3e3bbea890a6e3552ffe8456775e.png",
+        "type": "backdrop",
+        "tags": [
+            "indoors"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Savanna",
+        "md5": "9b020b8c7cb6a9592f7303add9441d8f.png",
+        "type": "backdrop",
+        "tags": [
+            "africa",
+            "savanna",
+            "savanah",
+            "outdoors",
+            "robert hunter"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "School",
+        "md5": "1dea69ac0f62cf538d368a7bde1372ac.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "building",
+            "education",
+            "learning"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Slopes",
+        "md5": "63b6a69594a0a87888b56244bfa2ac1b.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "winter",
+            "ski",
+            "snowboard",
+            "cold",
+            "snow"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
     {
         "name": "Soccer",
         "md5": "04a63154f04b09494354090f7cc2f1b9.png",
@@ -473,8 +825,8 @@
         ]
     },
     {
-        "name": "Space 2",
-        "md5": "32b2316fd375faa18088f6c57ebb1c8d.png",
+        "name": "Space City 1",
+        "md5": "20344b0edcc498281e4cb80242a72667.png",
         "type": "backdrop",
         "tags": [
             "space",
@@ -490,8 +842,8 @@
         ]
     },
     {
-        "name": "Space 3",
-        "md5": "20344b0edcc498281e4cb80242a72667.png",
+        "name": "Space City 2",
+        "md5": "32b2316fd375faa18088f6c57ebb1c8d.png",
         "type": "backdrop",
         "tags": [
             "space",
@@ -507,7 +859,7 @@
         ]
     },
     {
-        "name": "Space 4",
+        "name": "Spaceship",
         "md5": "0c450891306fa63ef02aa0fda7fd0ef9.png",
         "type": "backdrop",
         "tags": [
@@ -523,6 +875,20 @@
             2
         ]
     },
+    {
+        "name": "Stage",
+        "md5": "d26bf4c3980163d9106625cc2ea6c50d.png",
+        "type": "backdrop",
+        "tags": [
+            "music",
+            "dance"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
     {
         "name": "Stars",
         "md5": "47282ff0f7047c6fab9c94b531abf721.png",
@@ -565,6 +931,142 @@
             2
         ]
     },
+    {
+        "name": "Theater 2",
+        "md5": "061a78ed83495dd0acd6d62e83e1b972.png",
+        "type": "backdrop",
+        "tags": [
+            "music"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Tree",
+        "md5": "a23fbf972001c94637b568992f8fd7bd.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "nature"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Underwater 1",
+        "md5": "fb907f72b310acc8b95cbf2d2cccabc9.svg",
+        "type": "backdrop",
+        "tags": [
+            "ocean",
+            "outdoors",
+            "underwater",
+            "ipzy"
+        ],
+        "info": [
+            480,
+            360,
+            1
+        ]
+    },
+    {
+        "name": "Underwater 2",
+        "md5": "1517c21786d2d0edc2f3037408d850bd.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "nature",
+            "underwater"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Urban",
+        "md5": "1679049718869e1f548e1e8823e29c1c.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "city",
+            "metro",
+            "transportation"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Wall 1",
+        "md5": "7e5327c68ff6ddabc48dbfe4717a04fe.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "brick"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Wall 2",
+        "md5": "82d867fcd9f1b5f49e29c2f853d55665.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "brick"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Water And Rocks",
+        "md5": "0015433a406a53f00b792424b823268c.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "nature",
+            "tree",
+            "river",
+            "stream"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Wetland",
+        "md5": "ef9973bcff6d4cbc558e946028ec7d23.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoor",
+            "nature",
+            "swamp",
+            "wetland",
+            "owen davey"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
     {
         "name": "Winter",
         "md5": "5fa9385a60b904672d0e46e9d768bb32.svg",
@@ -598,7 +1100,7 @@
     },
     {
         "name": "Woods",
-        "md5": "3f3005b76e278b66dbeb9a982d68c555.svg",
+        "md5": "a28d7218f148340a5184afd7210d5e62.svg",
         "type": "backdrop",
         "tags": [
             "fantasy",
@@ -614,5 +1116,64 @@
             360,
             1
         ]
+    },
+    {
+        "name": "Woods And Bench",
+        "md5": "4fcf7ed0de6c6b6e9b52c511b0650e9c.png",
+        "type": "backdrop",
+        "tags": [
+            "outdoors",
+            "park"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Xy-grid",
+        "md5": "9838d02002d05f88dc54d96494fbc202.png",
+        "type": "backdrop",
+        "tags": [
+            "grid",
+            "xy",
+            "coordinates"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Xy-grid-20px",
+        "md5": "4eec0e1db92b8dea3e5bee25105e8f46.png",
+        "type": "backdrop",
+        "tags": [
+            "grid",
+            "xy",
+            "coordinates"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
+    },
+    {
+        "name": "Xy-grid-30px",
+        "md5": "3b8bcabd0ac683b7cb3673208039764b.png",
+        "type": "backdrop",
+        "tags": [
+            "grid",
+            "xy",
+            "coordinates"
+        ],
+        "info": [
+            960,
+            720,
+            2
+        ]
     }
 ]
\ No newline at end of file
diff --git a/src/lib/libraries/costumes.json b/src/lib/libraries/costumes.json
index 37dcce45636c93023d50222481a9870e2c076f2f..88cd587e7ae30e8f7846f57759ffb92e7d6a9f0d 100644
--- a/src/lib/libraries/costumes.json
+++ b/src/lib/libraries/costumes.json
@@ -59,6 +59,202 @@
             1
         ]
     },
+    {
+        "name": "Amon",
+        "md5": "60f720956ab1840431dcf0616ce98f14.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            348,
+            324,
+            2
+        ]
+    },
+    {
+        "name": "Anina Pop Down",
+        "md5": "e3698b76cb0864df2fbaba80e6bd8067.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            148,
+            312,
+            2
+        ]
+    },
+    {
+        "name": "Anina Pop Front",
+        "md5": "832a3ae650a1f3bede1e0c9f1779e535.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            136,
+            540,
+            2
+        ]
+    },
+    {
+        "name": "Anina Pop L Arm",
+        "md5": "62c50c90535b64f2ae130a5c680ddcb4.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            136,
+            548,
+            2
+        ]
+    },
+    {
+        "name": "Anina Pop Left",
+        "md5": "d86bb27b4f8d7b70c39c96f29c6943b4.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            476,
+            532,
+            2
+        ]
+    },
+    {
+        "name": "Anina Pop R Arm",
+        "md5": "eac2b5f7db5e81d00c43486179b8dcf8.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            176,
+            544,
+            2
+        ]
+    },
+    {
+        "name": "Anina Pop Right",
+        "md5": "7bb9c790b02231e1272701167c26b17a.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            132,
+            536,
+            2
+        ]
+    },
+    {
+        "name": "Anina Pop Stand",
+        "md5": "105f4f3d260dcb8bea02ea9ee5d18cf4.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            152,
+            552,
+            2
+        ]
+    },
+    {
+        "name": "Anina R Cross",
+        "md5": "f0d4dce1006cf447a0a4b53e0a8d0519.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            252,
+            536,
+            2
+        ]
+    },
+    {
+        "name": "Anina Stance",
+        "md5": "9374e067ca4b66427fc64a0822f6e468.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            152,
+            504,
+            2
+        ]
+    },
+    {
+        "name": "Anina Top Freeze",
+        "md5": "a1c9b65dd07747964cce642f9099921b.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            220,
+            536,
+            2
+        ]
+    },
+    {
+        "name": "Anina Top L Step",
+        "md5": "ed90e8b7a05c1552194af597ac0637cd.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            456,
+            548,
+            2
+        ]
+    },
+    {
+        "name": "Anina Top R Step",
+        "md5": "2d208a34e74fdce9dab9d4c585dcfa2b.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            496,
+            544,
+            2
+        ]
+    },
+    {
+        "name": "Anina Top Stand",
+        "md5": "db6c03113f71b91f22a9f3351f90e5bf.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            148,
+            560,
+            2
+        ]
+    },
     {
         "name": "Apple",
         "md5": "831ccd4741a7a56d85f6698a21f4ca69.svg",
@@ -763,62 +959,6 @@
             1
         ]
     },
-    {
-        "name": "Bear1-a",
-        "md5": "598722f70e86e6f9b23ef97680baaa9c.svg",
-        "type": "costume",
-        "tags": [
-            "animals",
-            "mammal"
-        ],
-        "info": [
-            56,
-            93,
-            1
-        ]
-    },
-    {
-        "name": "Bear1-b",
-        "md5": "76ceb0de4409f42713b50cbc1fb45af5.svg",
-        "type": "costume",
-        "tags": [
-            "animals",
-            "mammal"
-        ],
-        "info": [
-            56,
-            93,
-            1
-        ]
-    },
-    {
-        "name": "Bear2-a",
-        "md5": "3eb8e16a983ff23c418374389c81bd30.svg",
-        "type": "costume",
-        "tags": [
-            "animals",
-            "bear"
-        ],
-        "info": [
-            37,
-            42,
-            1
-        ]
-    },
-    {
-        "name": "Bear2-b",
-        "md5": "12bb6960ac01b65ae9b5e5e7f79700ac.svg",
-        "type": "costume",
-        "tags": [
-            "animals",
-            "bear"
-        ],
-        "info": [
-            51,
-            42,
-            1
-        ]
-    },
     {
         "name": "Beetle",
         "md5": "e1ce8f153f011fdd52486c91c6ed594d.svg",
@@ -1151,43 +1291,58 @@
     },
     {
         "name": "Butterfly1-a",
-        "md5": "836d4cc7889f4a1cbcb0303934f31f79.svg",
+        "md5": "8419d4851defd1e862e4f7c1699d2190.svg",
         "type": "costume",
         "tags": [
             "animals",
-            "drawing",
-            "happy",
-            "bug",
             "insect",
-            "antennae"
+            "bug",
+            "wetland",
+            "owen davey"
         ],
         "info": [
-            75,
-            75,
+            65,
+            49,
             1
         ]
     },
     {
         "name": "Butterfly1-b",
-        "md5": "55dd0671a359d7c35f7b78f4176660e8.svg",
+        "md5": "0873714e8d55d9eeb0bc8e8ab64441cc.svg",
         "type": "costume",
         "tags": [
             "animals",
-            "drawing",
-            "happy",
+            "insect",
             "bug",
+            "wetland",
+            "owen davey"
+        ],
+        "info": [
+            65,
+            49,
+            1
+        ]
+    },
+    {
+        "name": "Butterfly1-c",
+        "md5": "9c422631ca8d46413487f5dd627b65c6.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
             "insect",
-            "antennae"
+            "bug",
+            "wetland",
+            "owen davey"
         ],
         "info": [
-            75,
-            75,
+            65,
+            49,
             1
         ]
     },
     {
-        "name": "Butterfly2",
-        "md5": "a0216895beade6afc6d42bd5bb43faea.svg",
+        "name": "Butterfly2-a",
+        "md5": "836d4cc7889f4a1cbcb0303934f31f79.svg",
         "type": "costume",
         "tags": [
             "animals",
@@ -1204,8 +1359,8 @@
         ]
     },
     {
-        "name": "Butterfly3",
-        "md5": "8907a43cf08b0a9134969023be2074c5.svg",
+        "name": "Butterfly2-b",
+        "md5": "55dd0671a359d7c35f7b78f4176660e8.svg",
         "type": "costume",
         "tags": [
             "animals",
@@ -1359,7 +1514,7 @@
     },
     {
         "name": "Cake-a",
-        "md5": "97ab3596dc06510e963fa29795e663bf.svg",
+        "md5": "e1e8e8a765b8778d6181035c5c66984d.svg",
         "type": "costume",
         "tags": [
             "food",
@@ -1378,7 +1533,7 @@
     },
     {
         "name": "Cake-b",
-        "md5": "61d5481955a2f42cb843d09506f6744e.svg",
+        "md5": "460268a804e7682c9fabf37e4b70071c.svg",
         "type": "costume",
         "tags": [
             "food",
@@ -1396,6 +1551,32 @@
             1
         ]
     },
+    {
+        "name": "Calvrett Jumping",
+        "md5": "452683db3ad7a882f5ab9de496441592.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            336,
+            432,
+            2
+        ]
+    },
+    {
+        "name": "Calvrett Thinking",
+        "md5": "728ec1ebc275b53809023a36c66eeaa3.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            212,
+            340,
+            2
+        ]
+    },
     {
         "name": "Casey-a",
         "md5": "30a4dafa852311b2a07d72e1bb060326.svg",
@@ -1460,6 +1641,62 @@
             1
         ]
     },
+    {
+        "name": "Cassy-a",
+        "md5": "6cb3686db1fa658b6541cc9fa3ccfcc7.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            208,
+            384,
+            2
+        ]
+    },
+    {
+        "name": "Cassy-b",
+        "md5": "f801cec764da5ef6374e1d557296d14e.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            280,
+            384,
+            2
+        ]
+    },
+    {
+        "name": "Cassy-c",
+        "md5": "63483bbf72fc55719918a335e1a16426.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            148,
+            376,
+            2
+        ]
+    },
+    {
+        "name": "Cassy-d",
+        "md5": "aca39a47cf3affd8a83d3287d2856c29.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            188,
+            360,
+            2
+        ]
+    },
     {
         "name": "Cat1",
         "md5": "09dc888b0b7df19f70d81588ae73420e.svg",
@@ -1514,17 +1751,20 @@
     },
     {
         "name": "Cat2",
-        "md5": "01ae57fd339529445cb890978ef8a054.svg",
+        "md5": "3696356a03a8d938318876a593572843.svg",
         "type": "costume",
         "tags": [
-            "kitty",
-            "kitten",
             "animals",
-            "mammal"
+            "cat",
+            "kitten",
+            "kitty",
+            "mammal",
+            "orange",
+            "scratch cat"
         ],
         "info": [
-            87,
-            39,
+            47,
+            55,
             1
         ]
     },
@@ -1656,6 +1896,149 @@
             1
         ]
     },
+    {
+        "name": "Champ99-a",
+        "md5": "9e4e87818854cfc281d8dcc3e21ee672.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            496,
+            612,
+            2
+        ]
+    },
+    {
+        "name": "Champ99-b",
+        "md5": "d6ae13605610aa008d48b0c8b25a57d3.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            328,
+            580,
+            2
+        ]
+    },
+    {
+        "name": "Champ99-c",
+        "md5": "26fdff424232926001d20041c3d5673b.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            304,
+            540,
+            2
+        ]
+    },
+    {
+        "name": "Champ99-d",
+        "md5": "a28ffc2b129fb359ff22c79c48341267.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            376,
+            520,
+            2
+        ]
+    },
+    {
+        "name": "Champ99-e",
+        "md5": "56f3220fa82d99dcfc7d27d433ed01e4.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            380,
+            496,
+            2
+        ]
+    },
+    {
+        "name": "Champ99-f",
+        "md5": "68453506ae4b6b60a3fc6817ba39d492.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            228,
+            500,
+            2
+        ]
+    },
+    {
+        "name": "Champ99-g",
+        "md5": "20318b14a332fd618ec91e7c1de8be9a.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            264,
+            516,
+            2
+        ]
+    },
+    {
+        "name": "Cheesy Puffs",
+        "md5": "82772a61ec74974e84c686c61ea0b7d5.png",
+        "type": "costume",
+        "tags": [
+            "food"
+        ],
+        "info": [
+            174,
+            144,
+            2
+        ]
+    },
+    {
+        "name": "Chick-a",
+        "md5": "0abf71fb210bbda7eac0bb6ecaab25de.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            20,
+            21,
+            1
+        ]
+    },
+    {
+        "name": "Chick-b",
+        "md5": "3577aafabcfd6bcc7f7512be940a18b7.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            20,
+            21,
+            1
+        ]
+    },
     {
         "name": "Cloud",
         "md5": "47005a1f20309f577a03a67abbb6b94e.svg",
@@ -1735,6 +2118,20 @@
             1
         ]
     },
+    {
+        "name": "Convertible",
+        "md5": "5b883f396844ff5cfecd7c95553fa4fb.png",
+        "type": "costume",
+        "tags": [
+            "car",
+            "transportation"
+        ],
+        "info": [
+            360,
+            88,
+            2
+        ]
+    },
     {
         "name": "Convertible3",
         "md5": "b6ac3c9e1789cba2302d2ef82d62d019.svg",
@@ -1794,84 +2191,59 @@
         ]
     },
     {
-        "name": "Creature1-a",
-        "md5": "a560c6eab2e1de2462bdaeb1d698736c.svg",
-        "type": "costume",
-        "tags": [
-            "people",
-            "animals",
-            "fantasy",
-            "monsters",
-            "holiday"
-        ],
-        "info": [
-            54,
-            80,
-            1
-        ]
-    },
-    {
-        "name": "Creature1-b",
-        "md5": "8042b71fc2ae322151c0a3a163701333.svg",
+        "name": "Crystal-a",
+        "md5": "8520264d48537bea17b7f6d18e9bb558.svg",
         "type": "costume",
         "tags": [
-            "people",
-            "animals",
             "fantasy",
-            "monsters",
-            "holiday"
+            "ipzy",
+            "things"
         ],
         "info": [
-            60,
-            78,
+            15,
+            15,
             1
         ]
     },
     {
-        "name": "Creature1-c",
-        "md5": "e12a83c8f1c0545b59fe8673e9fac79c.svg",
+        "name": "Crystal-b",
+        "md5": "b62ce1dc2d34741bad036664a01912fb.svg",
         "type": "costume",
         "tags": [
-            "people",
-            "animals",
             "fantasy",
-            "monsters",
-            "holiday"
+            "ipzy",
+            "things"
         ],
         "info": [
-            63,
-            164,
+            12,
+            24,
             1
         ]
     },
     {
-        "name": "Crystal-a",
-        "md5": "8520264d48537bea17b7f6d18e9bb558.svg",
+        "name": "Dan-a",
+        "md5": "307250744e230fb15e7062238bf2634c.png",
         "type": "costume",
         "tags": [
-            "fantasy",
-            "ipzy",
-            "things"
+            "people"
         ],
         "info": [
-            15,
-            15,
-            1
+            144,
+            392,
+            2
         ]
     },
     {
-        "name": "Crystal-b",
-        "md5": "b62ce1dc2d34741bad036664a01912fb.svg",
+        "name": "Dan-b",
+        "md5": "89b55d049f4b3811676311df00681385.png",
         "type": "costume",
         "tags": [
-            "fantasy",
-            "ipzy",
-            "things"
+            "people"
         ],
         "info": [
-            12,
-            24,
-            1
+            188,
+            400,
+            2
         ]
     },
     {
@@ -2354,135 +2726,314 @@
         ]
     },
     {
-        "name": "Dog1-a",
-        "md5": "39ddefa0cc58f3b1b06474d63d81ef56.svg",
+        "name": "Dm Freeze",
+        "md5": "a4b5d644d9abdbcab236acf19b2a2e81.png",
         "type": "costume",
         "tags": [
-            "animals",
-            "puppy",
-            "puppies",
-            "mammals"
+            "people",
+            "dance"
         ],
         "info": [
-            83,
-            80,
-            1
+            440,
+            468,
+            2
         ]
     },
     {
-        "name": "Dog1-b",
-        "md5": "598f4aa3d8f671375d1d2b3acf753416.svg",
+        "name": "Dm Pop Down",
+        "md5": "729812366245c0dafd456339c9d94e08.png",
         "type": "costume",
         "tags": [
-            "animals",
-            "puppy",
-            "puppies",
-            "mammals"
+            "people",
+            "dance"
         ],
         "info": [
-            83,
-            80,
-            1
+            128,
+            148,
+            2
         ]
     },
     {
-        "name": "Dog2-a",
-        "md5": "e921f865b19b27cd99e16a341dbf09c2.svg",
+        "name": "Dm Pop Front",
+        "md5": "70da166596bb484eae1bfbaad5c03d54.png",
         "type": "costume",
         "tags": [
-            "animals",
-            "puppy",
-            "puppies",
-            "mammals"
+            "people",
+            "dance"
         ],
         "info": [
-            75,
-            75,
-            1
+            184,
+            468,
+            2
         ]
     },
     {
-        "name": "Dog2-b",
-        "md5": "891f2fb7daf79ba8b224a9173eeb0a63.svg",
+        "name": "Dm Pop L Arm",
+        "md5": "3cdebabdb41f6c3e84561cf3ea87bac3.png",
         "type": "costume",
         "tags": [
-            "animals",
-            "puppy",
-            "puppies",
-            "mammals"
+            "people",
+            "dance"
         ],
         "info": [
-            75,
-            75,
-            1
+            180,
+            476,
+            2
         ]
     },
     {
-        "name": "Dog2-c",
-        "md5": "cd236d5eef4431dea82983ac9eec406b.svg",
+        "name": "Dm Pop Left",
+        "md5": "32ec7b5332cfebd1cfed7f6b79c76e67.png",
         "type": "costume",
         "tags": [
-            "animals",
-            "puppy",
-            "puppies",
-            "mammals"
+            "people",
+            "dance"
         ],
         "info": [
-            75,
-            75,
-            1
+            408,
+            500,
+            2
         ]
     },
     {
-        "name": "Donut",
-        "md5": "9e7b4d153421dae04a24571d7e079e85.svg",
+        "name": "Dm Pop R Arm",
+        "md5": "50faf1630ea383c0b8c77f70a9329797.png",
         "type": "costume",
         "tags": [
-            "food",
-            "sweets",
-            "bakery",
-            "baking",
-            "homer",
-            "frosting",
-            "sprinkles",
-            "sprankles"
+            "people",
+            "dance"
         ],
         "info": [
-            73,
-            15,
-            1
+            160,
+            480,
+            2
         ]
     },
     {
-        "name": "Dorian-a",
-        "md5": "b042b1a5fde03dd5abbc2f3f78d11a2c.svg",
+        "name": "Dm Pop Right",
+        "md5": "19bd7995d37e3baade673b2fe7cb982b.png",
         "type": "costume",
         "tags": [
-            "sports",
-            "basketball",
             "people",
-            "alex eben meyer"
+            "dance"
         ],
         "info": [
-            82,
-            72,
-            1
+            156,
+            476,
+            2
         ]
     },
     {
-        "name": "Dorian-b",
-        "md5": "d0b58b672606601ecfa3a406b537fa10.svg",
+        "name": "Dm Pop Stand",
+        "md5": "05529eb3c09294bd15f57c6f10d5894e.png",
         "type": "costume",
         "tags": [
-            "sports",
-            "basketball",
             "people",
-            "alex eben meyer"
+            "dance"
         ],
         "info": [
-            82,
-            72,
-            1
+            200,
+            488,
+            2
+        ]
+    },
+    {
+        "name": "Dm Stance",
+        "md5": "b30a60d31aebead577b73affd22bf30f.svg",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            55,
+            119,
+            1
+        ]
+    },
+    {
+        "name": "Dm Top L Leg",
+        "md5": "344384a6a3f1bdf494cc7af31e928d36.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            460,
+            480,
+            2
+        ]
+    },
+    {
+        "name": "Dm Top R Leg",
+        "md5": "6cea0c29c460e571226cc4cff5b97c28.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            436,
+            464,
+            2
+        ]
+    },
+    {
+        "name": "Dm Top R Leg2",
+        "md5": "fcb8c2b6cf9b7e6ce9df521b2486deb3.png",
+        "type": "costume",
+        "tags": [],
+        "info": [
+            436,
+            464,
+            2
+        ]
+    },
+    {
+        "name": "Dm Top Stand",
+        "md5": "051c36758b9fd1136b511efc5dd6234a.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            164,
+            488,
+            2
+        ]
+    },
+    {
+        "name": "Dog1-a",
+        "md5": "39ddefa0cc58f3b1b06474d63d81ef56.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "puppy",
+            "puppies",
+            "mammals"
+        ],
+        "info": [
+            83,
+            80,
+            1
+        ]
+    },
+    {
+        "name": "Dog1-b",
+        "md5": "598f4aa3d8f671375d1d2b3acf753416.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "puppy",
+            "puppies",
+            "mammals"
+        ],
+        "info": [
+            83,
+            80,
+            1
+        ]
+    },
+    {
+        "name": "Dog2-a",
+        "md5": "e921f865b19b27cd99e16a341dbf09c2.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "puppy",
+            "puppies",
+            "mammals"
+        ],
+        "info": [
+            75,
+            75,
+            1
+        ]
+    },
+    {
+        "name": "Dog2-b",
+        "md5": "891f2fb7daf79ba8b224a9173eeb0a63.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "puppy",
+            "puppies",
+            "mammals"
+        ],
+        "info": [
+            75,
+            75,
+            1
+        ]
+    },
+    {
+        "name": "Dog2-c",
+        "md5": "cd236d5eef4431dea82983ac9eec406b.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "puppy",
+            "puppies",
+            "mammals"
+        ],
+        "info": [
+            75,
+            75,
+            1
+        ]
+    },
+    {
+        "name": "Donut",
+        "md5": "9e7b4d153421dae04a24571d7e079e85.svg",
+        "type": "costume",
+        "tags": [
+            "food",
+            "sweets",
+            "bakery",
+            "baking",
+            "homer",
+            "frosting",
+            "sprinkles",
+            "sprankles"
+        ],
+        "info": [
+            73,
+            15,
+            1
+        ]
+    },
+    {
+        "name": "Dorian-a",
+        "md5": "b042b1a5fde03dd5abbc2f3f78d11a2c.svg",
+        "type": "costume",
+        "tags": [
+            "sports",
+            "basketball",
+            "people",
+            "alex eben meyer"
+        ],
+        "info": [
+            82,
+            72,
+            1
+        ]
+    },
+    {
+        "name": "Dorian-b",
+        "md5": "d0b58b672606601ecfa3a406b537fa10.svg",
+        "type": "costume",
+        "tags": [
+            "sports",
+            "basketball",
+            "people",
+            "alex eben meyer"
+        ],
+        "info": [
+            82,
+            72,
+            1
         ]
     },
     {
@@ -3201,6 +3752,47 @@
             1
         ]
     },
+    {
+        "name": "Football Running",
+        "md5": "7ee31371b2eafba57cc5a78fc1a787fe.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "sports"
+        ],
+        "info": [
+            184,
+            400,
+            2
+        ]
+    },
+    {
+        "name": "Football Standing",
+        "md5": "c717def72c8bd98749284d31b51d7097.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "sports"
+        ],
+        "info": [
+            148,
+            400,
+            2
+        ]
+    },
+    {
+        "name": "Fortune Cookie",
+        "md5": "c56dcaa1fa4e3c9740142b93d5982850.png",
+        "type": "costume",
+        "tags": [
+            "food"
+        ],
+        "info": [
+            120,
+            124,
+            2
+        ]
+    },
     {
         "name": "Fox-a",
         "md5": "fab5488e600e81565f0fc285fc7050f8.svg",
@@ -3336,6 +3928,19 @@
             1
         ]
     },
+    {
+        "name": "Fruit Platter",
+        "md5": "6c3252378da3334f63eebddbed3fae91.png",
+        "type": "costume",
+        "tags": [
+            "food"
+        ],
+        "info": [
+            296,
+            156,
+            2
+        ]
+    },
     {
         "name": "Fruitsalad",
         "md5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg",
@@ -3566,6 +4171,51 @@
             1
         ]
     },
+    {
+        "name": "Giraffe-a",
+        "md5": "497baa643718a865b0621c1607696800.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "savanna",
+            "robert hunter"
+        ],
+        "info": [
+            86,
+            131,
+            1
+        ]
+    },
+    {
+        "name": "Giraffe-b",
+        "md5": "0242ae2497839f449af064b40b358b76.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "savanna",
+            "robert hunter"
+        ],
+        "info": [
+            86,
+            131,
+            1
+        ]
+    },
+    {
+        "name": "Giraffe-c",
+        "md5": "d9e8f8b7d656d4a24c1f4f6c24c5e578.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "savanna",
+            "robert hunter"
+        ],
+        "info": [
+            86,
+            131,
+            1
+        ]
+    },
     {
         "name": "Glass Water-a",
         "md5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg",
@@ -3945,24 +4595,132 @@
         ]
     },
     {
-        "name": "Hat",
-        "md5": "b3beb1f52d371428d70b65a0c4c5c001.svg",
+        "name": "Hannah-a",
+        "md5": "b983d99560313e38b4b3cd36cbd5f0d1.png",
         "type": "costume",
         "tags": [
-            "Fashion"
+            "people",
+            "run",
+            "running",
+            "sprint",
+            "sports"
         ],
         "info": [
-            52,
-            60,
-            1
+            276,
+            252,
+            2
         ]
     },
     {
-        "name": "Hat Beanie",
-        "md5": "3271da33e4108ed08a303c2244739fbf.svg",
+        "name": "Hannah-b",
+        "md5": "d0c3b4b24fbf1152de3ebb68f6b875ae.png",
         "type": "costume",
         "tags": [
-            "fashion"
+            "people",
+            "sports"
+        ],
+        "info": [
+            96,
+            320,
+            2
+        ]
+    },
+    {
+        "name": "Hannah-c",
+        "md5": "5fdce07935156bbcf943793fa84e826c.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "sports"
+        ],
+        "info": [
+            340,
+            260,
+            2
+        ]
+    },
+    {
+        "name": "Hare-a",
+        "md5": "75c2e6085d0eae076ff357b56d5ed5cd.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "rabbit",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
+            "robert hunter"
+        ],
+        "info": [
+            57,
+            49,
+            1
+        ]
+    },
+    {
+        "name": "Hare-b",
+        "md5": "fb56d1bef942196c710612906142451b.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "rabbit",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
+            "robert hunter"
+        ],
+        "info": [
+            57,
+            49,
+            1
+        ]
+    },
+    {
+        "name": "Hare-c",
+        "md5": "8de391ae70e54656f777c0ed53a91e1a.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "rabbit",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
+            "robert hunter"
+        ],
+        "info": [
+            57,
+            49,
+            1
+        ]
+    },
+    {
+        "name": "Hat",
+        "md5": "b3beb1f52d371428d70b65a0c4c5c001.svg",
+        "type": "costume",
+        "tags": [
+            "Fashion"
+        ],
+        "info": [
+            52,
+            60,
+            1
+        ]
+    },
+    {
+        "name": "Hat Beanie",
+        "md5": "3271da33e4108ed08a303c2244739fbf.svg",
+        "type": "costume",
+        "tags": [
+            "fashion"
         ],
         "info": [
             28,
@@ -4009,9 +4767,57 @@
             1
         ]
     },
+    {
+        "name": "Hatchling-a",
+        "md5": "fb9de507b6d95e96cb0df68e401dfd8f.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            14,
+            23,
+            1
+        ]
+    },
+    {
+        "name": "Hatchling-b",
+        "md5": "e504303f791a65274d740a20acbac606.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            15,
+            35,
+            1
+        ]
+    },
+    {
+        "name": "Hatchling-c",
+        "md5": "6f9a243d84fbe7ed9a49e8ef9fb7d83c.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            31,
+            36,
+            1
+        ]
+    },
     {
         "name": "Headband",
-        "md5": "961148d1605a1bd8ce80ed8d39e831c2.svg",
+        "md5": "237f77cb3e41c70f714c6d2aa4d38ea1.svg",
         "type": "costume",
         "tags": [
             "fashion",
@@ -4206,6 +5012,70 @@
             1
         ]
     },
+    {
+        "name": "Hen-a",
+        "md5": "795ed34983a70c8690fe6c8f4a47a935.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            45,
+            43,
+            1
+        ]
+    },
+    {
+        "name": "Hen-b",
+        "md5": "26528a6f0318a2d2294ef7071409be12.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            45,
+            43,
+            1
+        ]
+    },
+    {
+        "name": "Hen-c",
+        "md5": "7492692df7776c905fdbd4382696afee.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            35,
+            28,
+            1
+        ]
+    },
+    {
+        "name": "Hen-d",
+        "md5": "4bf0cb5453273d0f75db3cd0cd45ac72.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            45,
+            43,
+            1
+        ]
+    },
     {
         "name": "Hippo1-a",
         "md5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg",
@@ -4257,8 +5127,8 @@
         ]
     },
     {
-        "name": "Horse1-a",
-        "md5": "32f4d80477cd070cb0848e555d374060.svg",
+        "name": "Horse-a",
+        "md5": "83a698304f00242a34ddd63b1525373b.svg",
         "type": "costume",
         "tags": [
             "animals",
@@ -4275,8 +5145,8 @@
         ]
     },
     {
-        "name": "Horse1-b",
-        "md5": "ffa6431c5ef2a4e975ecffacdb0efea7.svg",
+        "name": "Horse-b",
+        "md5": "2e7d212692b46b049a9ebc1224edd990.svg",
         "type": "costume",
         "tags": [
             "animals",
@@ -4292,6 +5162,97 @@
             1
         ]
     },
+    {
+        "name": "Jaime Walking-a",
+        "md5": "d6cc9814f7a6640e4c2b1a4276987dc5.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            212,
+            344,
+            2
+        ]
+    },
+    {
+        "name": "Jaime Walking-b",
+        "md5": "7fb579a98d6db257f1b16109d3c4609a.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            104,
+            352,
+            2
+        ]
+    },
+    {
+        "name": "Jaime Walking-c",
+        "md5": "5883bdefba451aaeac8d77c798d41eb0.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            176,
+            340,
+            2
+        ]
+    },
+    {
+        "name": "Jaime Walking-d",
+        "md5": "4b9d2162e30dbb924840575ed35fddb0.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            92,
+            348,
+            2
+        ]
+    },
+    {
+        "name": "Jaime Walking-e",
+        "md5": "63e56d28cc3e3d9b735e1f1d51248cc0.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            168,
+            344,
+            2
+        ]
+    },
+    {
+        "name": "Jaime-a",
+        "md5": "3ddc912edef87ae29121f57294fa0cb5.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            152,
+            308,
+            2
+        ]
+    },
+    {
+        "name": "Jaime-b",
+        "md5": "5a683f4536abca0f83a77bc341df4c9a.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            136,
+            308,
+            2
+        ]
+    },
     {
         "name": "Jamie-a",
         "md5": "90f9166fe6500d0c0caad8b1964d6b74.svg",
@@ -4477,6 +5438,188 @@
             1
         ]
     },
+    {
+        "name": "Jo Pop Down",
+        "md5": "a55fbb529c10f70bcb374aef8a63571b.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            136,
+            148,
+            2
+        ]
+    },
+    {
+        "name": "Jo Pop Front",
+        "md5": "3d3ea804243800981acabc7caba10939.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            140,
+            456,
+            2
+        ]
+    },
+    {
+        "name": "Jo Pop L Arm",
+        "md5": "a9fbc01a4124d555da12630312e46197.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            216,
+            516,
+            2
+        ]
+    },
+    {
+        "name": "Jo Pop Left",
+        "md5": "ea812b4c2b2405aa2b73158023298f71.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            392,
+            452,
+            2
+        ]
+    },
+    {
+        "name": "Jo Pop R Arm",
+        "md5": "a35a3bbc4e21ce2f5de940adb7017fa6.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            216,
+            520,
+            2
+        ]
+    },
+    {
+        "name": "Jo Pop Right",
+        "md5": "01dd2f553c7262329ebaba2516e3a2b1.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            132,
+            484,
+            2
+        ]
+    },
+    {
+        "name": "Jo Pop Stand",
+        "md5": "75ee2383fd83992b401c8a0730521d94.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            156,
+            524,
+            2
+        ]
+    },
+    {
+        "name": "Jo Stance",
+        "md5": "e10d129d9be2147bc7d284e281d88e9a.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            188,
+            480,
+            2
+        ]
+    },
+    {
+        "name": "Jo Top L Cross",
+        "md5": "2e2a6534d33883fdd2f8471a1adbebb7.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            168,
+            536,
+            2
+        ]
+    },
+    {
+        "name": "Jo Top L Leg",
+        "md5": "a12f40b18067bb31746f9cf461de88aa.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            416,
+            536,
+            2
+        ]
+    },
+    {
+        "name": "Jo Top R Cross",
+        "md5": "c2d5519e8a0f2214ff757117038c28dc.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            288,
+            540,
+            2
+        ]
+    },
+    {
+        "name": "Jo Top R Leg",
+        "md5": "efaa8eb6c8cf7dc35d4d37d546ebd333.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            436,
+            524,
+            2
+        ]
+    },
+    {
+        "name": "Jo Top Stand",
+        "md5": "0ed4a09c41871d150c51119c1bceded2.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            136,
+            520,
+            2
+        ]
+    },
     {
         "name": "Jordyn-a",
         "md5": "8dd2a2abbb8e639da8576b6e72ef9e59.svg",
@@ -4545,6 +5688,32 @@
             1
         ]
     },
+    {
+        "name": "Kai-a",
+        "md5": "6e007fde15e49c66ee7996561f80b452.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            136,
+            320,
+            2
+        ]
+    },
+    {
+        "name": "Kai-b",
+        "md5": "c1e1149f6d7e308e3e4eba14ccc8a751.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            164,
+            316,
+            2
+        ]
+    },
     {
         "name": "Key",
         "md5": "af35300cef35803e11f4ed744dc5e818.svg",
@@ -4750,6 +5919,188 @@
             1
         ]
     },
+    {
+        "name": "Lb Pop Down",
+        "md5": "563f86443cb102b9241cebb62eb2d81a.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            112,
+            180,
+            2
+        ]
+    },
+    {
+        "name": "Lb Pop Front",
+        "md5": "cdd52259075b75628001672d375e4985.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            132,
+            544,
+            2
+        ]
+    },
+    {
+        "name": "Lb Pop L Arm",
+        "md5": "b508808c087adb55ce156f5cfbdac61b.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            200,
+            524,
+            2
+        ]
+    },
+    {
+        "name": "Lb Pop Left",
+        "md5": "525285312925e1e6b4e237a119b61305.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            396,
+            532,
+            2
+        ]
+    },
+    {
+        "name": "Lb Pop R Arm",
+        "md5": "0725440743391e7c622bb5df6a94e1d4.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            156,
+            516,
+            2
+        ]
+    },
+    {
+        "name": "Lb Pop Right",
+        "md5": "0a2461b3b9a4b8603e75565d78b1d4d7.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            152,
+            528,
+            2
+        ]
+    },
+    {
+        "name": "Lb Pop Stand",
+        "md5": "5f176ef763be18f7c342dc2e2de7bf16.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            132,
+            536,
+            2
+        ]
+    },
+    {
+        "name": "Lb Stance",
+        "md5": "9d64910e84c39660b19ca4ca8b45e2be.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            108,
+            488,
+            2
+        ]
+    },
+    {
+        "name": "Lb Top L Cross",
+        "md5": "645d6e2674452009df7a9a844a604791.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            296,
+            516,
+            2
+        ]
+    },
+    {
+        "name": "Lb Top L Leg",
+        "md5": "63d099e94aa8a973dcfa4c5d8b4a3e7a.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            468,
+            572,
+            2
+        ]
+    },
+    {
+        "name": "Lb Top R Cross",
+        "md5": "4423159d81378ada5ffd7f053d7ef471.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            348,
+            512,
+            2
+        ]
+    },
+    {
+        "name": "Lb Top R Leg",
+        "md5": "79ca528d13ffb557a236f0a35a0eb486.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            488,
+            500,
+            2
+        ]
+    },
+    {
+        "name": "Lb Top Stand",
+        "md5": "e68d899e178309ff3eae3e1de8a8ec28.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            140,
+            496,
+            2
+        ]
+    },
     {
         "name": "Lightning",
         "md5": "c2d636ab2b491e591536afc3d49cbecd.svg",
@@ -4784,39 +6135,52 @@
     },
     {
         "name": "Lion-a",
-        "md5": "692a3c84366bf8ae4d16858e20e792f5.svg",
+        "md5": "701a41dec023bc03a5ad4e35988b9a86.svg",
         "type": "costume",
         "tags": [
+            "cat",
             "animals",
-            "mammals",
-            "big cat",
-            "carnivore",
-            "king",
-            "jungle",
-            "roar"
+            "africa",
+            "savanna",
+            "robert hunter"
         ],
         "info": [
-            75,
-            75,
+            95,
+            43,
             1
         ]
     },
     {
         "name": "Lion-b",
-        "md5": "a519ef168a345a2846d0201bf092a6d0.svg",
+        "md5": "28ac215a2574eeabc2b390a14de3c152.svg",
         "type": "costume",
         "tags": [
+            "cat",
             "animals",
-            "mammals",
-            "big cat",
-            "carnivore",
-            "king",
-            "jungle",
-            "roar"
+            "africa",
+            "savanna",
+            "robert hunter"
+        ],
+        "info": [
+            95,
+            43,
+            1
+        ]
+    },
+    {
+        "name": "Lion-c",
+        "md5": "4dbe981721314eb631ef4f7fa920e1a4.svg",
+        "type": "costume",
+        "tags": [
+            "cat",
+            "animals",
+            "africa",
+            "savanna",
+            "robert hunter"
         ],
         "info": [
-            75,
-            75,
+            95,
+            43,
             1
         ]
     },
@@ -5266,7 +6630,7 @@
     },
     {
         "name": "Muffin-a",
-        "md5": "e00161f08c77d10e72e44b6e01243e63.svg",
+        "md5": "18da0857a1b7f1c960146d2b85edd10f.svg",
         "type": "costume",
         "tags": [
             "food"
@@ -5279,7 +6643,7 @@
     },
     {
         "name": "Muffin-b",
-        "md5": "fb60c3f8d6a892813299daa33b91df23.svg",
+        "md5": "a89f3b99bf4cccfaeb1b39e25633c53c.svg",
         "type": "costume",
         "tags": [
             "food",
@@ -5449,7 +6813,7 @@
     },
     {
         "name": "Orange",
-        "md5": "780ee2ef342f79a81b4c353725331138.svg",
+        "md5": "27d5dfbadceea215e983d2641ce3e51f.svg",
         "type": "costume",
         "tags": [
             "food",
@@ -5463,7 +6827,7 @@
     },
     {
         "name": "Orange2-a",
-        "md5": "89b11d2a404c3972b65743f743cc968a.svg",
+        "md5": "8a7d8515df41f83c1326ec3233a3a42a.svg",
         "type": "costume",
         "tags": [
             "food",
@@ -5478,7 +6842,7 @@
     },
     {
         "name": "Orange2-b",
-        "md5": "5f7998e007dfa70e70bbd8d43199ebba.svg",
+        "md5": "70c7f1822ffdb37157c304273dae9102.svg",
         "type": "costume",
         "tags": [
             "food",
@@ -5491,21 +6855,6 @@
             1
         ]
     },
-    {
-        "name": "Orange2-c",
-        "md5": "466e9e2d62ee135a2dabd5593e6f8407.svg",
-        "type": "costume",
-        "tags": [
-            "food",
-            "fruit",
-            "eaten"
-        ],
-        "info": [
-            49,
-            33,
-            1
-        ]
-    },
     {
         "name": "Outfielder-a",
         "md5": "fab7218666ba49eae992664acab53159.svg",
@@ -5754,6 +7103,69 @@
             1
         ]
     },
+    {
+        "name": "Penguin-a",
+        "md5": "6d85d016129c34c90ef269933a72a7a7.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "bird",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
+            "robert hunter"
+        ],
+        "info": [
+            36,
+            46,
+            1
+        ]
+    },
+    {
+        "name": "Penguin-b",
+        "md5": "e93ef702208fad2776a34f57c1c746b1.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "bird",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
+            "robert hunter"
+        ],
+        "info": [
+            36,
+            46,
+            1
+        ]
+    },
+    {
+        "name": "Penguin-c",
+        "md5": "c6d6ec90b897855831a73b3b3b8f202a.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "bird",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
+            "robert hunter"
+        ],
+        "info": [
+            36,
+            46,
+            1
+        ]
+    },
     {
         "name": "Penguin2-a",
         "md5": "c17d9e4bdb59c574e0c34aa70af516da.svg",
@@ -5994,6 +7406,66 @@
             1
         ]
     },
+    {
+        "name": "Polar Bear-a",
+        "md5": "c96435a1b9ad2ed37b2c9c5aac6d1fb4.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
+            "robert hunter"
+        ],
+        "info": [
+            104,
+            46,
+            1
+        ]
+    },
+    {
+        "name": "Polar Bear-b",
+        "md5": "4f9b9061414deedeeebd369a496aba07.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
+            "robert hunter"
+        ],
+        "info": [
+            104,
+            46,
+            1
+        ]
+    },
+    {
+        "name": "Polar Bear-c",
+        "md5": "defad238b915f766449e9dcb719bb6e0.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
+            "robert hunter"
+        ],
+        "info": [
+            104,
+            46,
+            1
+        ]
+    },
     {
         "name": "Potion-a",
         "md5": "a317b50b255a208455a7733091adad23.svg",
@@ -6203,6 +7675,66 @@
             1
         ]
     },
+    {
+        "name": "Puppy Back",
+        "md5": "05630bfa94501a3e5d61ce443a0cea70.png",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "dog",
+            "puppy"
+        ],
+        "info": [
+            468,
+            188,
+            2
+        ]
+    },
+    {
+        "name": "Puppy Right",
+        "md5": "2768d9e44a0aab055856d301bbc2b04e.png",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "dog",
+            "puppy"
+        ],
+        "info": [
+            214,
+            206,
+            2
+        ]
+    },
+    {
+        "name": "Puppy Side",
+        "md5": "c4aeb5c39b39ef57a3f18ace54cf7db1.png",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "dog",
+            "puppy"
+        ],
+        "info": [
+            208,
+            228,
+            2
+        ]
+    },
+    {
+        "name": "Puppy Sit",
+        "md5": "c7817052ed9e78057f877d0d56b5c6a6.png",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "dog",
+            "puppy"
+        ],
+        "info": [
+            174,
+            224,
+            2
+        ]
+    },
     {
         "name": "Rabbit-a",
         "md5": "2f42891c3f3d63c0e591aeabc5946533.svg",
@@ -6538,6 +8070,81 @@
             1
         ]
     },
+    {
+        "name": "Rocketship-a",
+        "md5": "7d51af7c52e137ef137012595bac928d.svg",
+        "type": "costume",
+        "tags": [
+            "space",
+            "spaceship",
+            "wren mcdonald"
+        ],
+        "info": [
+            66,
+            107,
+            1
+        ]
+    },
+    {
+        "name": "Rocketship-b",
+        "md5": "ae2634705b7a4fd31f4c1d1bb0e12545.svg",
+        "type": "costume",
+        "tags": [
+            "space",
+            "spaceship",
+            "wren mcdonald"
+        ],
+        "info": [
+            53,
+            106,
+            1
+        ]
+    },
+    {
+        "name": "Rocketship-c",
+        "md5": "3d375cd033f1a7161cae56b114f4cfdb.svg",
+        "type": "costume",
+        "tags": [
+            "space",
+            "spaceship",
+            "wren mcdonald"
+        ],
+        "info": [
+            61,
+            107,
+            1
+        ]
+    },
+    {
+        "name": "Rocketship-d",
+        "md5": "a456964f32cd7e7bd83fe076bf29558b.svg",
+        "type": "costume",
+        "tags": [
+            "space",
+            "spaceship",
+            "wren mcdonald"
+        ],
+        "info": [
+            63,
+            107,
+            1
+        ]
+    },
+    {
+        "name": "Rocketship-e",
+        "md5": "5b5cc9904ba63ca2801b61a73d4dcb7e.svg",
+        "type": "costume",
+        "tags": [
+            "space",
+            "spaceship",
+            "wren mcdonald"
+        ],
+        "info": [
+            71,
+            107,
+            1
+        ]
+    },
     {
         "name": "Rocks",
         "md5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg",
@@ -6552,6 +8159,107 @@
             1
         ]
     },
+    {
+        "name": "Rooster-a",
+        "md5": "8a6f3145a24db10d5a2f90975ce8140c.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            55,
+            58,
+            1
+        ]
+    },
+    {
+        "name": "Rooster-b",
+        "md5": "6a14a205b117fdb0b7a6fad91a989e96.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            55,
+            59,
+            1
+        ]
+    },
+    {
+        "name": "Rooster-c",
+        "md5": "f23408efb8f47022da51c8fba6003cbb.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            55,
+            59,
+            1
+        ]
+    },
+    {
+        "name": "Ruby-a",
+        "md5": "c30210e8f719c3a4d2c7cc6917a39300.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            108,
+            344,
+            2
+        ]
+    },
+    {
+        "name": "Ruby-b",
+        "md5": "fc15fdbcc535473f6140cab28197f3be.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            152,
+            284,
+            2
+        ]
+    },
+    {
+        "name": "Sailboat",
+        "md5": "ca241a938a2c44a0de6b91230012ff39.png",
+        "type": "costume",
+        "tags": [
+            "boat",
+            "transportation"
+        ],
+        "info": [
+            448,
+            364,
+            2
+        ]
+    },
+    {
+        "name": "Sam",
+        "md5": "8208e99159b36c957fb9fbc187e51bc7.png",
+        "type": "costume",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            234,
+            318,
+            2
+        ]
+    },
     {
         "name": "Saxophone-a",
         "md5": "e9e4297f5d7e630a384b1dea835ec72d.svg",
@@ -6826,7 +8534,7 @@
     },
     {
         "name": "Skates",
-        "md5": "00e5e173400662875a26bb7d6556346a.svg",
+        "md5": "97936eccad5c8d86ea9008c5bbb50b63.svg",
         "type": "costume",
         "tags": [
             "fashion",
@@ -6834,8 +8542,8 @@
             "sports"
         ],
         "info": [
-            44,
-            -21,
+            39,
+            19,
             1
         ]
     },
@@ -7018,76 +8726,6 @@
             1
         ]
     },
-    {
-        "name": "Spaceship-a",
-        "md5": "7d51af7c52e137ef137012595bac928d.svg",
-        "type": "costume",
-        "tags": [
-            "space",
-            "wren mcdonald"
-        ],
-        "info": [
-            66,
-            107,
-            1
-        ]
-    },
-    {
-        "name": "Spaceship-b",
-        "md5": "ae2634705b7a4fd31f4c1d1bb0e12545.svg",
-        "type": "costume",
-        "tags": [
-            "space",
-            "wren mcdonald"
-        ],
-        "info": [
-            53,
-            106,
-            1
-        ]
-    },
-    {
-        "name": "Spaceship-c",
-        "md5": "3d375cd033f1a7161cae56b114f4cfdb.svg",
-        "type": "costume",
-        "tags": [
-            "space",
-            "wren mcdonald"
-        ],
-        "info": [
-            61,
-            107,
-            1
-        ]
-    },
-    {
-        "name": "Spaceship-d",
-        "md5": "a456964f32cd7e7bd83fe076bf29558b.svg",
-        "type": "costume",
-        "tags": [
-            "space",
-            "wren mcdonald"
-        ],
-        "info": [
-            63,
-            107,
-            1
-        ]
-    },
-    {
-        "name": "Spaceship-e",
-        "md5": "5b5cc9904ba63ca2801b61a73d4dcb7e.svg",
-        "type": "costume",
-        "tags": [
-            "space",
-            "wren mcdonald"
-        ],
-        "info": [
-            71,
-            107,
-            1
-        ]
-    },
     {
         "name": "Speaker",
         "md5": "44dc3a2ec161999545914d1f77332d76.svg",
@@ -7105,6 +8743,20 @@
             1
         ]
     },
+    {
+        "name": "Squirrel",
+        "md5": "b86efb7f23387300cf9037a61f328ab9.png",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "scoob"
+        ],
+        "info": [
+            316,
+            292,
+            2
+        ]
+    },
     {
         "name": "Star",
         "md5": "e929c1274c379b6b6fed12e6dec63368.svg",
@@ -7290,7 +8942,7 @@
     },
     {
         "name": "Taco-a",
-        "md5": "d224b30c54bd4d6000c935938c7f5d7e.svg",
+        "md5": "d4a2cea411c6030f017f25184562559d.svg",
         "type": "costume",
         "tags": [
             "food",
@@ -7299,14 +8951,14 @@
             "delicious"
         ],
         "info": [
-            20,
+            19,
             15,
             1
         ]
     },
     {
         "name": "Taco-b",
-        "md5": "6dee4f866d79e6475d9824ba11973037.svg",
+        "md5": "cef6f6d7c92fc1f008077319ac12dc5e.svg",
         "type": "costume",
         "tags": [
             "food",
@@ -7390,6 +9042,202 @@
             1
         ]
     },
+    {
+        "name": "Ten80 Pop Down",
+        "md5": "14685e432d683c918328e7fb070b7029.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            148,
+            376,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Pop Front",
+        "md5": "86602007ae2952236d47d7fd587a56b6.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            144,
+            532,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Pop L Arm",
+        "md5": "ce2141ce97921ddc333bc65ff5bec27d.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            200,
+            560,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Pop Left",
+        "md5": "3c9a7eac1d696ae74ee40c6efa8fa4dd.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            368,
+            532,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Pop R Arm",
+        "md5": "279bd5499329f98a68cf92c68014e198.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            148,
+            556,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Pop Right",
+        "md5": "548bdf23904e409c1fcc0992f44d0b4c.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            156,
+            552,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Pop Stand",
+        "md5": "377b8521c436f4f39ed2100fa1cb7c2f.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            184,
+            560,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Stance",
+        "md5": "90ca0205c56c6c7f0e8892469de49bda.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            140,
+            556,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Top Freeze",
+        "md5": "8313a2229d555bbdb8ce92dffed067ad.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            108,
+            516,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Top L Step",
+        "md5": "e51942bb4651e616549cfce1ad36ff83.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            288,
+            532,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Top R Cross",
+        "md5": "e06ac61e96e3a5abf4ca0863816f5d28.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            412,
+            504,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Top R Step",
+        "md5": "733d05c17699758e2723599de333fdc0.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            400,
+            540,
+            2
+        ]
+    },
+    {
+        "name": "Ten80 Top Stand",
+        "md5": "b2f75ac1cd84615efaea6a7d7a4ee205.png",
+        "type": "costume",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            148,
+            548,
+            2
+        ]
+    },
+    {
+        "name": "Tennisball",
+        "md5": "34fa36004be0340ec845ba6bbeb5e5d5.png",
+        "type": "costume",
+        "tags": [
+            "ball",
+            "sports"
+        ],
+        "info": [
+            60,
+            60,
+            2
+        ]
+    },
     {
         "name": "Tera-a",
         "md5": "b54a4a9087435863ab6f6c908f1cac99.svg",
@@ -7494,6 +9342,19 @@
             1
         ]
     },
+    {
+        "name": "Trampoline",
+        "md5": "20b16bcb61396df304cad5e8886ceb46.png",
+        "type": "costume",
+        "tags": [
+            "sports"
+        ],
+        "info": [
+            100,
+            41,
+            1
+        ]
+    },
     {
         "name": "Tree1",
         "md5": "8c40e2662c55d17bc384f47165ac43c1.svg",
@@ -7980,6 +9841,51 @@
             1
         ]
     },
+    {
+        "name": "Zebra-a",
+        "md5": "d8392aea6e767a4b5032cffd04e688e3.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "savanna",
+            "robert hunter"
+        ],
+        "info": [
+            97,
+            56,
+            1
+        ]
+    },
+    {
+        "name": "Zebra-b",
+        "md5": "3a6be1df1d9d9865b6bba4f569de6793.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "savanna",
+            "robert hunter"
+        ],
+        "info": [
+            97,
+            56,
+            1
+        ]
+    },
+    {
+        "name": "Zebra-c",
+        "md5": "b0d2d3e746493640fc34fd7b2efd6612.svg",
+        "type": "costume",
+        "tags": [
+            "animals",
+            "savanna",
+            "robert hunter"
+        ],
+        "info": [
+            97,
+            56,
+            1
+        ]
+    },
     {
         "name": "Block-a",
         "md5": "602a16930a8050e1298e1a0ae844363e.svg",
diff --git a/src/lib/libraries/extensions/index.jsx b/src/lib/libraries/extensions/index.jsx
index 62da95ea5b04e991841878659f14af4b460e3571..dfe1416464f6c3a063b68b4a9ee55fbbb39cf65f 100644
--- a/src/lib/libraries/extensions/index.jsx
+++ b/src/lib/libraries/extensions/index.jsx
@@ -115,13 +115,13 @@ export default [
         disabled: true
     },
     {
-        name: 'Micro:bit',
+        name: 'micro:bit',
         extensionId: 'microbit',
         iconURL: microbitImage,
         description: (
             <FormattedMessage
-                defaultMessage="Connect your projects with the physical world."
-                description="Description for the 'Micro:bit' extension"
+                defaultMessage="Connect your projects with the world."
+                description="Description for the 'micro:bit' extension"
                 id="gui.extension.microbit.description"
             />
         ),
diff --git a/src/lib/libraries/sprites.json b/src/lib/libraries/sprites.json
index 966d9be3ae04a11ee77592b451f5582ec9650521..904d2ae9387a85b1e53c31708f474dea1e352a1c 100644
--- a/src/lib/libraries/sprites.json
+++ b/src/lib/libraries/sprites.json
@@ -70,6 +70,194 @@
             "spriteInfo": {}
         }
     },
+    {
+        "name": "Amon",
+        "md5": "60f720956ab1840431dcf0616ce98f14.png",
+        "type": "sprite",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Amon",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "amon",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "60f720956ab1840431dcf0616ce98f14.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 174,
+                    "rotationCenterY": 162
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -79,
+            "scratchY": 11,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Anina Dance",
+        "md5": "9374e067ca4b66427fc64a0822f6e468.png",
+        "type": "sprite",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            0,
+            13,
+            1
+        ],
+        "json": {
+            "objName": "Anina Dance",
+            "sounds": [
+                {
+                    "soundName": "dance celebrate",
+                    "soundID": -1,
+                    "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav",
+                    "sampleCount": 176401,
+                    "rate": 22050,
+                    "format": "adpcm"
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "anina stance",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "9374e067ca4b66427fc64a0822f6e468.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 252
+                },
+                {
+                    "costumeName": "anina top stand",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "db6c03113f71b91f22a9f3351f90e5bf.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 74,
+                    "rotationCenterY": 280
+                },
+                {
+                    "costumeName": "anina top R step",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "2d208a34e74fdce9dab9d4c585dcfa2b.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 248,
+                    "rotationCenterY": 272
+                },
+                {
+                    "costumeName": "anina top L step",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ed90e8b7a05c1552194af597ac0637cd.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 228,
+                    "rotationCenterY": 274
+                },
+                {
+                    "costumeName": "anina top freeze",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a1c9b65dd07747964cce642f9099921b.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 110,
+                    "rotationCenterY": 268
+                },
+                {
+                    "costumeName": "anina R cross",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "f0d4dce1006cf447a0a4b53e0a8d0519.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 126,
+                    "rotationCenterY": 268
+                },
+                {
+                    "costumeName": "anina pop front",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "832a3ae650a1f3bede1e0c9f1779e535.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 270
+                },
+                {
+                    "costumeName": "anina pop down",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e3698b76cb0864df2fbaba80e6bd8067.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 74,
+                    "rotationCenterY": 156
+                },
+                {
+                    "costumeName": "anina pop left",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "d86bb27b4f8d7b70c39c96f29c6943b4.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 238,
+                    "rotationCenterY": 266
+                },
+                {
+                    "costumeName": "anina pop right",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "7bb9c790b02231e1272701167c26b17a.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 66,
+                    "rotationCenterY": 268
+                },
+                {
+                    "costumeName": "anina pop L arm",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "62c50c90535b64f2ae130a5c680ddcb4.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 274
+                },
+                {
+                    "costumeName": "anina pop stand",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "105f4f3d260dcb8bea02ea9ee5d18cf4.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 276
+                },
+                {
+                    "costumeName": "anina pop R arm",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "eac2b5f7db5e81d00c43486179b8dcf8.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 88,
+                    "rotationCenterY": 272
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -27,
+            "scratchY": 1,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
     {
         "name": "Apple",
         "md5": "831ccd4741a7a56d85f6698a21f4ca69.svg",
@@ -614,7 +802,7 @@
             "costumes": [
                 {
                     "costumeName": "basketball",
-                    "baseLayerID": 16,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "b15c425f3eef68e7d095ee91321cb52a.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 26,
@@ -855,7 +1043,7 @@
             "costumes": [
                 {
                     "costumeName": "bear-a",
-                    "baseLayerID": 16,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "5a4148d7684fc95f38c58a1672062c9e.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 100,
@@ -863,7 +1051,7 @@
                 },
                 {
                     "costumeName": "bear-b",
-                    "baseLayerID": 17,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "d6517131718621a7aae8fc4f27de1ded.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 80,
@@ -910,7 +1098,7 @@
             "costumes": [
                 {
                     "costumeName": "bear-walk-a",
-                    "baseLayerID": 18,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "d15eddb1a0f0ff0fa867bc006b46685d.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -918,7 +1106,7 @@
                 },
                 {
                     "costumeName": "bear-walk-b",
-                    "baseLayerID": 19,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "06e3f1bcf4f46b83df3820d92430f202.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -926,7 +1114,7 @@
                 },
                 {
                     "costumeName": "bear-walk-c",
-                    "baseLayerID": 20,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "13a3584040c9903b1824bb249d7f8a0e.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -934,7 +1122,7 @@
                 },
                 {
                     "costumeName": "bear-walk-d",
-                    "baseLayerID": 21,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "c5d49a105619c497be45a5d2c43a740a.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -942,7 +1130,7 @@
                 },
                 {
                     "costumeName": "bear-walk-e",
-                    "baseLayerID": 22,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "ece252d79c2d30c647c43c58986d9671.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -950,7 +1138,7 @@
                 },
                 {
                     "costumeName": "bear-walk-f",
-                    "baseLayerID": 23,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "ff66b87efec0e647dc30ec58df168ec4.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -958,7 +1146,7 @@
                 },
                 {
                     "costumeName": "bear-walk-g",
-                    "baseLayerID": 24,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "d1404b12adf0d6b1b881f0dca47ce21a.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -966,7 +1154,7 @@
                 },
                 {
                     "costumeName": "bear-walk-h",
-                    "baseLayerID": 25,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "489055be58a7d9806e1d50455c88c399.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -984,114 +1172,6 @@
             "spriteInfo": {}
         }
     },
-    {
-        "name": "Bear1",
-        "md5": "598722f70e86e6f9b23ef97680baaa9c.svg",
-        "type": "sprite",
-        "tags": [
-            "animal",
-            "mammal"
-        ],
-        "info": [
-            0,
-            2,
-            1
-        ],
-        "json": {
-            "objName": "Bear1",
-            "sounds": [
-                {
-                    "soundName": "pop",
-                    "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
-                    "format": ""
-                }
-            ],
-            "costumes": [
-                {
-                    "costumeName": "bear1-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "598722f70e86e6f9b23ef97680baaa9c.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 56,
-                    "rotationCenterY": 93
-                },
-                {
-                    "costumeName": "bear1-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "76ceb0de4409f42713b50cbc1fb45af5.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 56,
-                    "rotationCenterY": 93
-                }
-            ],
-            "currentCostumeIndex": 0,
-            "scratchX": 67,
-            "scratchY": 40,
-            "scale": 1,
-            "direction": 90,
-            "rotationStyle": "normal",
-            "isDraggable": false,
-            "visible": true,
-            "spriteInfo": {}
-        }
-    },
-    {
-        "name": "Bear2",
-        "md5": "3eb8e16a983ff23c418374389c81bd30.svg",
-        "type": "sprite",
-        "tags": [
-            "animals",
-            "bear"
-        ],
-        "info": [
-            0,
-            2,
-            1
-        ],
-        "json": {
-            "objName": "Bear2",
-            "sounds": [
-                {
-                    "soundName": "pop",
-                    "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
-                    "format": ""
-                }
-            ],
-            "costumes": [
-                {
-                    "costumeName": "bear2-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "3eb8e16a983ff23c418374389c81bd30.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 37,
-                    "rotationCenterY": 42
-                },
-                {
-                    "costumeName": "bear2-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "12bb6960ac01b65ae9b5e5e7f79700ac.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 51,
-                    "rotationCenterY": 42
-                }
-            ],
-            "currentCostumeIndex": 0,
-            "scratchX": -69,
-            "scratchY": 34,
-            "scale": 1,
-            "direction": 90,
-            "rotationStyle": "normal",
-            "isDraggable": false,
-            "visible": true,
-            "spriteInfo": {}
-        }
-    },
     {
         "name": "Beetle",
         "md5": "e1ce8f153f011fdd52486c91c6ed594d.svg",
@@ -1396,7 +1476,7 @@
             "costumes": [
                 {
                     "costumeName": "bread",
-                    "baseLayerID": 35,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "68366160ce0ac1221cdde4455eca9cba.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 37,
@@ -1444,7 +1524,7 @@
             "costumes": [
                 {
                     "costumeName": "broom",
-                    "baseLayerID": 26,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "836197f784bc4c4decfb1a5a60ca6c56.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 135,
@@ -1583,25 +1663,23 @@
         }
     },
     {
-        "name": "Butterfly1",
-        "md5": "836d4cc7889f4a1cbcb0303934f31f79.svg",
+        "name": "Butterfly 1",
+        "md5": "8419d4851defd1e862e4f7c1699d2190.svg",
         "type": "sprite",
         "tags": [
             "animals",
-            "drawing",
-            "happy",
-            "bug",
             "insect",
-            "antennae",
-            "flappers"
+            "bug",
+            "wetland",
+            "owen davey"
         ],
         "info": [
             0,
-            2,
+            3,
             1
         ],
         "json": {
-            "objName": "Butterfly1",
+            "objName": "Butterfly 1",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -1616,23 +1694,31 @@
                 {
                     "costumeName": "butterfly1-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "836d4cc7889f4a1cbcb0303934f31f79.svg",
+                    "baseLayerMD5": "8419d4851defd1e862e4f7c1699d2190.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 65,
+                    "rotationCenterY": 49
                 },
                 {
                     "costumeName": "butterfly1-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "55dd0671a359d7c35f7b78f4176660e8.svg",
+                    "baseLayerMD5": "0873714e8d55d9eeb0bc8e8ab64441cc.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 65,
+                    "rotationCenterY": 49
+                },
+                {
+                    "costumeName": "butterfly1-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "9c422631ca8d46413487f5dd627b65c6.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 65,
+                    "rotationCenterY": 49
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -98,
-            "scratchY": -16,
+            "scratchX": -130,
+            "scratchY": 77,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -1642,8 +1728,8 @@
         }
     },
     {
-        "name": "Butterfly2",
-        "md5": "a0216895beade6afc6d42bd5bb43faea.svg",
+        "name": "Butterfly 2",
+        "md5": "836d4cc7889f4a1cbcb0303934f31f79.svg",
         "type": "sprite",
         "tags": [
             "animals",
@@ -1656,11 +1742,11 @@
         ],
         "info": [
             0,
-            1,
+            2,
             1
         ],
         "json": {
-            "objName": "Butterfly2",
+            "objName": "Butterfly 2",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -1673,68 +1759,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "butterfly2",
+                    "costumeName": "butterfly2-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "a0216895beade6afc6d42bd5bb43faea.svg",
+                    "baseLayerMD5": "836d4cc7889f4a1cbcb0303934f31f79.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 75,
                     "rotationCenterY": 75
-                }
-            ],
-            "currentCostumeIndex": 0,
-            "scratchX": 43,
-            "scratchY": 41,
-            "scale": 1,
-            "direction": 90,
-            "rotationStyle": "normal",
-            "isDraggable": false,
-            "visible": true,
-            "spriteInfo": {}
-        }
-    },
-    {
-        "name": "Butterfly3",
-        "md5": "8907a43cf08b0a9134969023be2074c5.svg",
-        "type": "sprite",
-        "tags": [
-            "animals",
-            "drawing",
-            "happy",
-            "bug",
-            "insect",
-            "antennae",
-            "flappers"
-        ],
-        "info": [
-            0,
-            1,
-            1
-        ],
-        "json": {
-            "objName": "Butterfly3",
-            "sounds": [
-                {
-                    "soundName": "pop",
-                    "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
-                    "format": ""
-                }
-            ],
-            "costumes": [
+                },
                 {
-                    "costumeName": "butterfly3",
+                    "costumeName": "butterfly2-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "8907a43cf08b0a9134969023be2074c5.svg",
+                    "baseLayerMD5": "55dd0671a359d7c35f7b78f4176660e8.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 75,
                     "rotationCenterY": 75
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 20,
-            "scratchY": 36,
+            "scratchX": -98,
+            "scratchY": -16,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -2015,7 +2058,7 @@
     },
     {
         "name": "Cake",
-        "md5": "97ab3596dc06510e963fa29795e663bf.svg",
+        "md5": "e1e8e8a765b8778d6181035c5c66984d.svg",
         "type": "sprite",
         "tags": [
             "food",
@@ -2047,16 +2090,16 @@
             "costumes": [
                 {
                     "costumeName": "cake-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "97ab3596dc06510e963fa29795e663bf.svg",
+                    "baseLayerID": 0,
+                    "baseLayerMD5": "e1e8e8a765b8778d6181035c5c66984d.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 64,
                     "rotationCenterY": 50
                 },
                 {
                     "costumeName": "cake-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "61d5481955a2f42cb843d09506f6744e.svg",
+                    "baseLayerID": 1,
+                    "baseLayerMD5": "460268a804e7682c9fabf37e4b70071c.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 64,
                     "rotationCenterY": 42
@@ -2073,6 +2116,59 @@
             "spriteInfo": {}
         }
     },
+    {
+        "name": "Calvrett",
+        "md5": "452683db3ad7a882f5ab9de496441592.png",
+        "type": "sprite",
+        "tags": [
+            "people"
+        ],
+        "info": [
+            0,
+            2,
+            1
+        ],
+        "json": {
+            "objName": "Calvrett",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "calvrett jumping",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "452683db3ad7a882f5ab9de496441592.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 168,
+                    "rotationCenterY": 216
+                },
+                {
+                    "costumeName": "calvrett thinking",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "728ec1ebc275b53809023a36c66eeaa3.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 106,
+                    "rotationCenterY": 170
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 39,
+            "scratchY": -9,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
     {
         "name": "Casey",
         "md5": "30a4dafa852311b2a07d72e1bb060326.svg",
@@ -2103,7 +2199,7 @@
             "costumes": [
                 {
                     "costumeName": "casey-a",
-                    "baseLayerID": 0,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "30a4dafa852311b2a07d72e1bb060326.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 82,
@@ -2111,7 +2207,7 @@
                 },
                 {
                     "costumeName": "casey-b",
-                    "baseLayerID": 1,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "c8c0a25bebac8b35b8eae7ddd716d061.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 82,
@@ -2119,7 +2215,7 @@
                 },
                 {
                     "costumeName": "casey-c",
-                    "baseLayerID": 2,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "104d363c48c373384c6c80abbbbb0ad6.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 61,
@@ -2127,7 +2223,7 @@
                 },
                 {
                     "costumeName": "casey-d",
-                    "baseLayerID": 3,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "3d4bddb908bf912b938c111bfa38c28a.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 82,
@@ -2145,6 +2241,76 @@
             "spriteInfo": {}
         }
     },
+    {
+        "name": "Cassy Dance",
+        "md5": "6cb3686db1fa658b6541cc9fa3ccfcc7.png",
+        "type": "sprite",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            0,
+            4,
+            1
+        ],
+        "json": {
+            "objName": "Cassy Dance",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "cassy-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "6cb3686db1fa658b6541cc9fa3ccfcc7.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 104,
+                    "rotationCenterY": 192
+                },
+                {
+                    "costumeName": "cassy-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "f801cec764da5ef6374e1d557296d14e.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 140,
+                    "rotationCenterY": 192
+                },
+                {
+                    "costumeName": "cassy-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "63483bbf72fc55719918a335e1a16426.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 74,
+                    "rotationCenterY": 188
+                },
+                {
+                    "costumeName": "cassy-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "aca39a47cf3affd8a83d3287d2856c29.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 94,
+                    "rotationCenterY": 180
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -88,
+            "scratchY": 44,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
     {
         "name": "Cat",
         "md5": "09dc888b0b7df19f70d81588ae73420e.svg",
@@ -2411,7 +2577,7 @@
             "costumes": [
                 {
                     "costumeName": "centaur-a",
-                    "baseLayerID": 61,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "45c1890ae0ab41f24f67ea74bec006c9.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 110,
@@ -2419,7 +2585,7 @@
                 },
                 {
                     "costumeName": "centaur-b",
-                    "baseLayerID": 62,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "783e8cd43e0c1feca25f639cb5cbc7da.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 110,
@@ -2427,7 +2593,7 @@
                 },
                 {
                     "costumeName": "centaur-c",
-                    "baseLayerID": 63,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "d09f7160383c6399354c3d9960e852db.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 110,
@@ -2435,7 +2601,7 @@
                 },
                 {
                     "costumeName": "centaur-d",
-                    "baseLayerID": 64,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "1ba8b4d384f995688c1b7048d1935697.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 110,
@@ -2454,21 +2620,20 @@
         }
     },
     {
-        "name": "Cloud",
-        "md5": "47005a1f20309f577a03a67abbb6b94e.svg",
+        "name": "Champ99",
+        "md5": "9e4e87818854cfc281d8dcc3e21ee672.png",
         "type": "sprite",
         "tags": [
-            "thing",
-            "weather",
-            "whether"
+            "people",
+            "dance"
         ],
         "info": [
             0,
-            1,
+            7,
             1
         ],
         "json": {
-            "objName": "Cloud",
+            "objName": "Champ99",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -2481,17 +2646,65 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "cloud",
+                    "costumeName": "champ99-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "47005a1f20309f577a03a67abbb6b94e.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 71,
-                    "rotationCenterY": 45
+                    "baseLayerMD5": "9e4e87818854cfc281d8dcc3e21ee672.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 248,
+                    "rotationCenterY": 306
+                },
+                {
+                    "costumeName": "champ99-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "d6ae13605610aa008d48b0c8b25a57d3.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 164,
+                    "rotationCenterY": 290
+                },
+                {
+                    "costumeName": "champ99-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "26fdff424232926001d20041c3d5673b.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 152,
+                    "rotationCenterY": 270
+                },
+                {
+                    "costumeName": "champ99-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a28ffc2b129fb359ff22c79c48341267.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 188,
+                    "rotationCenterY": 260
+                },
+                {
+                    "costumeName": "champ99-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "56f3220fa82d99dcfc7d27d433ed01e4.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 190,
+                    "rotationCenterY": 248
+                },
+                {
+                    "costumeName": "champ99-f",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "68453506ae4b6b60a3fc6817ba39d492.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 114,
+                    "rotationCenterY": 250
+                },
+                {
+                    "costumeName": "champ99-g",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "20318b14a332fd618ec91e7c1de8be9a.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 132,
+                    "rotationCenterY": 258
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 81,
-            "scratchY": -12,
+            "scratchX": -6,
+            "scratchY": 13,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -2501,22 +2714,19 @@
         }
     },
     {
-        "name": "Clouds",
-        "md5": "c7d7de8e29179407f03b054fa640f4d0.svg",
+        "name": "Cheesy Puffs",
+        "md5": "82772a61ec74974e84c686c61ea0b7d5.png",
         "type": "sprite",
         "tags": [
-            "flying",
-            "weather",
-            "things",
-            "sky"
+            "food"
         ],
         "info": [
             0,
-            4,
+            1,
             1
         ],
         "json": {
-            "objName": "Clouds",
+            "objName": "Cheesy Puffs",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -2529,41 +2739,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "cloud-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "c7d7de8e29179407f03b054fa640f4d0.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 19
-                },
-                {
-                    "costumeName": "cloud-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "d8595350ebb460494c9189dabb968336.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 101,
-                    "rotationCenterY": 20
-                },
-                {
-                    "costumeName": "cloud-c",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "395fc991e64ac0a4aa46758ab4bc65cb.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 97,
-                    "rotationCenterY": 9
-                },
-                {
-                    "costumeName": "cloud-d",
+                    "costumeName": "cheesy puffs",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "1767e704acb11ffa409f77cc79ba7e86.svg",
-                    "bitmapResolution": 1,
+                    "baseLayerMD5": "82772a61ec74974e84c686c61ea0b7d5.png",
+                    "bitmapResolution": 2,
                     "rotationCenterX": 87,
-                    "rotationCenterY": 21
+                    "rotationCenterY": 72
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -21,
-            "scratchY": 16,
+            "scratchX": -7,
+            "scratchY": -20,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -2573,20 +2759,22 @@
         }
     },
     {
-        "name": "Convertible3",
-        "md5": "b6ac3c9e1789cba2302d2ef82d62d019.svg",
+        "name": "Chick",
+        "md5": "0abf71fb210bbda7eac0bb6ecaab25de.svg",
         "type": "sprite",
         "tags": [
-            "transportation",
-            "things"
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
         ],
         "info": [
             0,
-            1,
+            2,
             1
         ],
         "json": {
-            "objName": "Convertible3",
+            "objName": "Chick",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -2599,17 +2787,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "convertible3",
+                    "costumeName": "chick-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "b6ac3c9e1789cba2302d2ef82d62d019.svg",
+                    "baseLayerMD5": "0abf71fb210bbda7eac0bb6ecaab25de.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 20,
+                    "rotationCenterY": 21
+                },
+                {
+                    "costumeName": "chick-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "3577aafabcfd6bcc7f7512be940a18b7.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 20,
+                    "rotationCenterY": 21
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 7,
-            "scratchY": 13,
+            "scratchX": 20,
+            "scratchY": -108,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -2619,28 +2815,21 @@
         }
     },
     {
-        "name": "Crab",
-        "md5": "114249a5660f7948663d95de575cfd8d.svg",
+        "name": "Cloud",
+        "md5": "47005a1f20309f577a03a67abbb6b94e.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "crustacean",
-            "antennae",
-            "baltimore",
-            "maryland",
-            "underwater",
-            "ocean",
-            "sea",
-            "summer",
-            "arthropod"
+            "thing",
+            "weather",
+            "whether"
         ],
         "info": [
             0,
-            2,
+            1,
             1
         ],
         "json": {
-            "objName": "Crab",
+            "objName": "Cloud",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -2653,25 +2842,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "crab-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "114249a5660f7948663d95de575cfd8d.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
-                },
-                {
-                    "costumeName": "crab-b",
+                    "costumeName": "cloud",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "9bf050664e68c10d2616e85f2873be09.svg",
+                    "baseLayerMD5": "47005a1f20309f577a03a67abbb6b94e.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 71,
+                    "rotationCenterY": 45
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 45,
-            "scratchY": -33,
+            "scratchX": 81,
+            "scratchY": -12,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -2681,23 +2862,22 @@
         }
     },
     {
-        "name": "Creature1",
-        "md5": "a560c6eab2e1de2462bdaeb1d698736c.svg",
+        "name": "Clouds",
+        "md5": "c7d7de8e29179407f03b054fa640f4d0.svg",
         "type": "sprite",
         "tags": [
-            "people",
-            "animals",
-            "fantasy",
-            "monsters",
-            "holiday"
+            "flying",
+            "weather",
+            "things",
+            "sky"
         ],
         "info": [
             0,
-            3,
+            4,
             1
         ],
         "json": {
-            "objName": "Creature1",
+            "objName": "Clouds",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -2710,33 +2890,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "creature1-a",
+                    "costumeName": "cloud-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "a560c6eab2e1de2462bdaeb1d698736c.svg",
+                    "baseLayerMD5": "c7d7de8e29179407f03b054fa640f4d0.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 54,
-                    "rotationCenterY": 80
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 19
                 },
                 {
-                    "costumeName": "creature1-b",
+                    "costumeName": "cloud-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "8042b71fc2ae322151c0a3a163701333.svg",
+                    "baseLayerMD5": "d8595350ebb460494c9189dabb968336.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 60,
-                    "rotationCenterY": 78
+                    "rotationCenterX": 101,
+                    "rotationCenterY": 20
+                },
+                {
+                    "costumeName": "cloud-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "395fc991e64ac0a4aa46758ab4bc65cb.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 97,
+                    "rotationCenterY": 9
                 },
                 {
-                    "costumeName": "creature1-c",
+                    "costumeName": "cloud-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "e12a83c8f1c0545b59fe8673e9fac79c.svg",
+                    "baseLayerMD5": "1767e704acb11ffa409f77cc79ba7e86.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 63,
-                    "rotationCenterY": 164
+                    "rotationCenterX": 87,
+                    "rotationCenterY": 21
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 153,
-            "scratchY": 35,
+            "scratchX": -21,
+            "scratchY": 16,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -2746,21 +2934,20 @@
         }
     },
     {
-        "name": "Crystal",
-        "md5": "8520264d48537bea17b7f6d18e9bb558.svg",
+        "name": "Convertible",
+        "md5": "5b883f396844ff5cfecd7c95553fa4fb.png",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "ipzy",
-            "things"
+            "car",
+            "transportation"
         ],
         "info": [
             0,
-            2,
+            1,
             1
         ],
         "json": {
-            "objName": "Crystal",
+            "objName": "Convertible",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -2773,25 +2960,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "crystal-a",
-                    "baseLayerID": 27,
-                    "baseLayerMD5": "8520264d48537bea17b7f6d18e9bb558.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 15,
-                    "rotationCenterY": 15
-                },
-                {
-                    "costumeName": "crystal-b",
-                    "baseLayerID": 28,
-                    "baseLayerMD5": "b62ce1dc2d34741bad036664a01912fb.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 12,
-                    "rotationCenterY": 24
+                    "costumeName": "convertible",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "5b883f396844ff5cfecd7c95553fa4fb.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 180,
+                    "rotationCenterY": 44
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -110,
-            "scratchY": 7,
+            "scratchX": 36,
+            "scratchY": -11,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -2801,20 +2980,20 @@
         }
     },
     {
-        "name": "Dani",
-        "md5": "f3038fb0f4a00806b02081c6789dd8cf.svg",
+        "name": "Convertible3",
+        "md5": "b6ac3c9e1789cba2302d2ef82d62d019.svg",
         "type": "sprite",
         "tags": [
-            "people",
-            "fashion"
+            "transportation",
+            "things"
         ],
         "info": [
             0,
-            3,
+            1,
             1
         ],
         "json": {
-            "objName": "Dani",
+            "objName": "Convertible3",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -2827,33 +3006,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "dani-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "f3038fb0f4a00806b02081c6789dd8cf.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 49,
-                    "rotationCenterY": 115
-                },
-                {
-                    "costumeName": "dani-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "e5c7dd4905a78e1d54087b7165dd1e8c.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 115
-                },
-                {
-                    "costumeName": "dani-c",
+                    "costumeName": "convertible3",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "cbc5f9c67022af201d498bc9b35608b8.svg",
+                    "baseLayerMD5": "b6ac3c9e1789cba2302d2ef82d62d019.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 49,
-                    "rotationCenterY": 113
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -90,
-            "scratchY": -11,
+            "scratchX": 7,
+            "scratchY": 13,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -2863,19 +3026,28 @@
         }
     },
     {
-        "name": "Dee",
-        "md5": "aa239b7ccdce6bddf06900c709525764.svg",
+        "name": "Crab",
+        "md5": "114249a5660f7948663d95de575cfd8d.svg",
         "type": "sprite",
         "tags": [
-            "people"
+            "animals",
+            "crustacean",
+            "antennae",
+            "baltimore",
+            "maryland",
+            "underwater",
+            "ocean",
+            "sea",
+            "summer",
+            "arthropod"
         ],
         "info": [
             0,
-            5,
+            2,
             1
         ],
         "json": {
-            "objName": "Dee",
+            "objName": "Crab",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -2888,49 +3060,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "dee-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "aa239b7ccdce6bddf06900c709525764.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 52,
-                    "rotationCenterY": 99
-                },
-                {
-                    "costumeName": "dee-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "62b4ac1b735599e21af77c390b178095.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 33,
-                    "rotationCenterY": 99
-                },
-                {
-                    "costumeName": "dee-c",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "6aa6196ce3245e93b8d1299f33adffcd.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 36,
-                    "rotationCenterY": 102
-                },
-                {
-                    "costumeName": "dee-d",
+                    "costumeName": "crab-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "2159a6be8f7ff450d0b5e938ca34a3f4.svg",
+                    "baseLayerMD5": "114249a5660f7948663d95de575cfd8d.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 33,
-                    "rotationCenterY": 99
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
                 },
                 {
-                    "costumeName": "dee-e",
+                    "costumeName": "crab-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "e358d2a7e3a0a680928657161ce81a0a.svg",
+                    "baseLayerMD5": "9bf050664e68c10d2616e85f2873be09.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 32,
-                    "rotationCenterY": 99
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 84,
-            "scratchY": -39,
+            "scratchX": 45,
+            "scratchY": -33,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -2940,19 +3088,21 @@
         }
     },
     {
-        "name": "Devin",
-        "md5": "b1897e56265470b55fa65fabe2423c55.svg",
+        "name": "Crystal",
+        "md5": "8520264d48537bea17b7f6d18e9bb558.svg",
         "type": "sprite",
         "tags": [
-            "people"
+            "fantasy",
+            "ipzy",
+            "things"
         ],
         "info": [
             0,
-            4,
+            2,
             1
         ],
         "json": {
-            "objName": "Devin",
+            "objName": "Crystal",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -2965,41 +3115,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "devin-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "b1897e56265470b55fa65fabe2423c55.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 39,
-                    "rotationCenterY": 95
-                },
-                {
-                    "costumeName": "devin-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "873fbd641768c8f753a6568da97633e7.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 40,
-                    "rotationCenterY": 96
-                },
-                {
-                    "costumeName": "devin-c",
+                    "costumeName": "crystal-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "eac3c03d86cebb42c8f30e373cb7f623.svg",
+                    "baseLayerMD5": "8520264d48537bea17b7f6d18e9bb558.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 32,
-                    "rotationCenterY": 95
+                    "rotationCenterX": 15,
+                    "rotationCenterY": 15
                 },
                 {
-                    "costumeName": "devin-d",
+                    "costumeName": "crystal-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "fa6a75afb0e4b822b91d8bb20d40c68f.svg",
+                    "baseLayerMD5": "b62ce1dc2d34741bad036664a01912fb.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 41,
-                    "rotationCenterY": 95
+                    "rotationCenterX": 12,
+                    "rotationCenterY": 24
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 82,
-            "scratchY": -18,
+            "scratchX": -110,
+            "scratchY": 7,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3009,68 +3143,139 @@
         }
     },
     {
-        "name": "Dinosaur1",
-        "md5": "75d367961807fff8e81f556da81dec24.svg",
+        "name": "D-Money Dance",
+        "md5": "b30a60d31aebead577b73affd22bf30f.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "dinosaur",
-            "alex eben meyer"
+            "people",
+            "dance"
         ],
         "info": [
             0,
-            4,
+            13,
             1
         ],
         "json": {
-            "objName": "Dinosaur1",
+            "objName": "D-Money Dance",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "dance celebrate",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
-                    "format": ""
+                    "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav",
+                    "sampleCount": 176401,
+                    "rate": 22050,
+                    "format": "adpcm"
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "dinosaur1-a",
+                    "costumeName": "dm stance",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "75d367961807fff8e81f556da81dec24.svg",
+                    "baseLayerMD5": "b30a60d31aebead577b73affd22bf30f.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 98,
-                    "rotationCenterY": 92
+                    "rotationCenterX": 55,
+                    "rotationCenterY": 119
                 },
                 {
-                    "costumeName": "dinosaur1-b",
+                    "costumeName": "dm top stand",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "ecdaee9c08ae68fd7a67f81302f00a97.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 98,
-                    "rotationCenterY": 47
+                    "baseLayerMD5": "051c36758b9fd1136b511efc5dd6234a.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 244
                 },
                 {
-                    "costumeName": "dinosaur1-c",
+                    "costumeName": "dm top R leg",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "02078a81abd2e10cb62ebcc853a40c92.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 81,
-                    "rotationCenterY": 91
+                    "baseLayerMD5": "6cea0c29c460e571226cc4cff5b97c28.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 218,
+                    "rotationCenterY": 232
                 },
                 {
-                    "costumeName": "dinosaur1-d",
+                    "costumeName": "dm top L leg",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "c9ed031bc9bf11416142880f89436be9.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 98,
-                    "rotationCenterY": 91
+                    "baseLayerMD5": "344384a6a3f1bdf494cc7af31e928d36.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 230,
+                    "rotationCenterY": 240
+                },
+                {
+                    "costumeName": "dm freeze",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a4b5d644d9abdbcab236acf19b2a2e81.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 220,
+                    "rotationCenterY": 234
+                },
+                {
+                    "costumeName": "dm pop front",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "70da166596bb484eae1bfbaad5c03d54.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 92,
+                    "rotationCenterY": 234
+                },
+                {
+                    "costumeName": "dm pop down",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "729812366245c0dafd456339c9d94e08.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 64,
+                    "rotationCenterY": 74
+                },
+                {
+                    "costumeName": "dm pop left",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "32ec7b5332cfebd1cfed7f6b79c76e67.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 204,
+                    "rotationCenterY": 250
+                },
+                {
+                    "costumeName": "dm pop right",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "19bd7995d37e3baade673b2fe7cb982b.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 78,
+                    "rotationCenterY": 238
+                },
+                {
+                    "costumeName": "dm pop L arm",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "3cdebabdb41f6c3e84561cf3ea87bac3.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 90,
+                    "rotationCenterY": 238
+                },
+                {
+                    "costumeName": "dm pop stand",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "05529eb3c09294bd15f57c6f10d5894e.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 100,
+                    "rotationCenterY": 244
+                },
+                {
+                    "costumeName": "dm pop R arm",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "50faf1630ea383c0b8c77f70a9329797.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 80,
+                    "rotationCenterY": 240
+                },
+                {
+                    "costumeName": "dm top R leg2",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "fcb8c2b6cf9b7e6ce9df521b2486deb3.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 218,
+                    "rotationCenterY": 232
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -138,
-            "scratchY": -51,
+            "scratchX": -29,
+            "scratchY": 34,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3080,22 +3285,19 @@
         }
     },
     {
-        "name": "Dinosaur2",
-        "md5": "5493f5deffe7aed451cd8b255740de4a.svg",
+        "name": "Dan",
+        "md5": "307250744e230fb15e7062238bf2634c.png",
         "type": "sprite",
         "tags": [
-            "animals",
-            "dinosaur",
-            "triceratops",
-            "alex eben meyer"
+            "people"
         ],
         "info": [
             0,
-            4,
+            2,
             1
         ],
         "json": {
-            "objName": "Dinosaur2",
+            "objName": "Dan",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -3108,41 +3310,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "dinosaur2-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "5493f5deffe7aed451cd8b255740de4a.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 115,
-                    "rotationCenterY": 72
-                },
-                {
-                    "costumeName": "dinosaur2-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "70bba739b7df0bd08abb31026d078ee7.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 74,
-                    "rotationCenterY": 67
-                },
-                {
-                    "costumeName": "dinosaur2-c",
+                    "costumeName": "dan-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "4a51679d86aafcc9cee1c010fc141288.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 62,
-                    "rotationCenterY": 67
+                    "baseLayerMD5": "307250744e230fb15e7062238bf2634c.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 72,
+                    "rotationCenterY": 196
                 },
                 {
-                    "costumeName": "dinosaur2-d",
+                    "costumeName": "dan-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "47053664449b24749aaf199925b19f8e.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 71,
-                    "rotationCenterY": 66
+                    "baseLayerMD5": "89b55d049f4b3811676311df00681385.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 94,
+                    "rotationCenterY": 200
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 10,
-            "scratchY": 26,
+            "scratchX": 9,
+            "scratchY": -38,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3152,23 +3338,20 @@
         }
     },
     {
-        "name": "Dinosaur3",
-        "md5": "17636db6f607c14a03a36e18abfea86a.svg",
+        "name": "Dani",
+        "md5": "f3038fb0f4a00806b02081c6789dd8cf.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "dinosaur",
-            "pteranodon",
-            "flying",
-            "alex eben meyer"
+            "people",
+            "fashion"
         ],
         "info": [
             0,
-            5,
+            3,
             1
         ],
         "json": {
-            "objName": "Dinosaur3",
+            "objName": "Dani",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -3181,49 +3364,33 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "dinosaur3-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "17636db6f607c14a03a36e18abfea86a.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 115,
-                    "rotationCenterY": 72
-                },
-                {
-                    "costumeName": "dinosaur3-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "1b20afc713b04ca5d01b25d050aa35ac.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 115,
-                    "rotationCenterY": 72
-                },
-                {
-                    "costumeName": "dinosaur3-c",
+                    "costumeName": "dani-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "4700613077afa7c62659b3fd7d7c748e.svg",
+                    "baseLayerMD5": "f3038fb0f4a00806b02081c6789dd8cf.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 115,
-                    "rotationCenterY": 72
+                    "rotationCenterX": 49,
+                    "rotationCenterY": 115
                 },
                 {
-                    "costumeName": "dinosaur3-d",
+                    "costumeName": "dani-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "a03f110ed12b73acc9bd84037fd6ae96.svg",
+                    "baseLayerMD5": "e5c7dd4905a78e1d54087b7165dd1e8c.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 115,
-                    "rotationCenterY": 72
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 115
                 },
                 {
-                    "costumeName": "dinosaur3-e",
+                    "costumeName": "dani-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "00e24e40535a1a621fee0f70895b2b61.svg",
+                    "baseLayerMD5": "cbc5f9c67022af201d498bc9b35608b8.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 115,
-                    "rotationCenterY": 72
+                    "rotationCenterX": 49,
+                    "rotationCenterY": 113
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -76,
-            "scratchY": 101,
+            "scratchX": -90,
+            "scratchY": -11,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3233,24 +3400,19 @@
         }
     },
     {
-        "name": "Dinosaur4",
-        "md5": "9da591f8a6da251c800adb12a02c43cb.svg",
+        "name": "Dee",
+        "md5": "aa239b7ccdce6bddf06900c709525764.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "dinosaur",
-            "tyrannosaurus",
-            "t-rex",
-            "trex",
-            "alex eben meyer"
+            "people"
         ],
         "info": [
             0,
-            4,
+            5,
             1
         ],
         "json": {
-            "objName": "Dinosaur4",
+            "objName": "Dee",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -3263,41 +3425,49 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "dinosaur4-a",
+                    "costumeName": "dee-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "9da591f8a6da251c800adb12a02c43cb.svg",
+                    "baseLayerMD5": "aa239b7ccdce6bddf06900c709525764.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 59,
-                    "rotationCenterY": 54
+                    "rotationCenterX": 52,
+                    "rotationCenterY": 99
                 },
                 {
-                    "costumeName": "dinosaur4-b",
+                    "costumeName": "dee-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "a3028e87caeb8338f50b2c6dec9f23d2.svg",
+                    "baseLayerMD5": "62b4ac1b735599e21af77c390b178095.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 86,
-                    "rotationCenterY": 54
+                    "rotationCenterX": 33,
+                    "rotationCenterY": 99
                 },
                 {
-                    "costumeName": "dinosaur4-c",
+                    "costumeName": "dee-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "9a4bbc1b104c8112be82c252a6ecfd11.svg",
+                    "baseLayerMD5": "6aa6196ce3245e93b8d1299f33adffcd.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 59,
-                    "rotationCenterY": 54
+                    "rotationCenterX": 36,
+                    "rotationCenterY": 102
                 },
                 {
-                    "costumeName": "dinosaur4-d",
+                    "costumeName": "dee-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "45061ff84a25723625d04f0476687633.svg",
+                    "baseLayerMD5": "2159a6be8f7ff450d0b5e938ca34a3f4.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 89,
-                    "rotationCenterY": 90
+                    "rotationCenterX": 33,
+                    "rotationCenterY": 99
+                },
+                {
+                    "costumeName": "dee-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e358d2a7e3a0a680928657161ce81a0a.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 32,
+                    "rotationCenterY": 99
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 128,
-            "scratchY": -19,
+            "scratchX": 84,
+            "scratchY": -39,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3307,24 +3477,19 @@
         }
     },
     {
-        "name": "Diver1",
-        "md5": "853803d5600b66538474909c5438c8ee.svg",
+        "name": "Devin",
+        "md5": "b1897e56265470b55fa65fabe2423c55.svg",
         "type": "sprite",
         "tags": [
-            "people",
-            "underwater",
-            "ocean",
-            "sea",
-            "summer",
-            "swimming"
+            "people"
         ],
         "info": [
             0,
-            1,
+            4,
             1
         ],
         "json": {
-            "objName": "Diver1",
+            "objName": "Devin",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -3337,17 +3502,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "diver1",
+                    "costumeName": "devin-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "853803d5600b66538474909c5438c8ee.svg",
+                    "baseLayerMD5": "b1897e56265470b55fa65fabe2423c55.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
-                }
-            ],
+                    "rotationCenterX": 39,
+                    "rotationCenterY": 95
+                },
+                {
+                    "costumeName": "devin-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "873fbd641768c8f753a6568da97633e7.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 40,
+                    "rotationCenterY": 96
+                },
+                {
+                    "costumeName": "devin-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "eac3c03d86cebb42c8f30e373cb7f623.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 32,
+                    "rotationCenterY": 95
+                },
+                {
+                    "costumeName": "devin-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "fa6a75afb0e4b822b91d8bb20d40c68f.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 41,
+                    "rotationCenterY": 95
+                }
+            ],
             "currentCostumeIndex": 0,
-            "scratchX": 11,
-            "scratchY": 48,
+            "scratchX": 82,
+            "scratchY": -18,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3357,24 +3546,21 @@
         }
     },
     {
-        "name": "Diver2",
-        "md5": "248d3e69ada69a64b1077149ef6a931a.svg",
+        "name": "Dinosaur1",
+        "md5": "75d367961807fff8e81f556da81dec24.svg",
         "type": "sprite",
         "tags": [
-            "people",
-            "underwater",
-            "ocean",
-            "sea",
-            "summer",
-            "swimming"
+            "animals",
+            "dinosaur",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            1,
+            4,
             1
         ],
         "json": {
-            "objName": "Diver2",
+            "objName": "Dinosaur1",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -3387,17 +3573,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "diver2",
+                    "costumeName": "dinosaur1-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "248d3e69ada69a64b1077149ef6a931a.svg",
+                    "baseLayerMD5": "75d367961807fff8e81f556da81dec24.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 98,
+                    "rotationCenterY": 92
+                },
+                {
+                    "costumeName": "dinosaur1-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ecdaee9c08ae68fd7a67f81302f00a97.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 98,
+                    "rotationCenterY": 47
+                },
+                {
+                    "costumeName": "dinosaur1-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "02078a81abd2e10cb62ebcc853a40c92.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 81,
+                    "rotationCenterY": 91
+                },
+                {
+                    "costumeName": "dinosaur1-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "c9ed031bc9bf11416142880f89436be9.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 98,
+                    "rotationCenterY": 91
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 89,
-            "scratchY": -48,
+            "scratchX": -138,
+            "scratchY": -51,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3407,53 +3617,69 @@
         }
     },
     {
-        "name": "Dog1",
-        "md5": "39ddefa0cc58f3b1b06474d63d81ef56.svg",
+        "name": "Dinosaur2",
+        "md5": "5493f5deffe7aed451cd8b255740de4a.svg",
         "type": "sprite",
         "tags": [
             "animals",
-            "puppy",
-            "puppies",
-            "mammals"
+            "dinosaur",
+            "triceratops",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            2,
+            4,
             1
         ],
         "json": {
-            "objName": "Dog1",
+            "objName": "Dinosaur2",
             "sounds": [
                 {
-                    "soundName": "dog1",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "b15adefc3c12f758b6dc6a045362532f.wav",
-                    "sampleCount": 3672,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "dog1-a",
+                    "costumeName": "dinosaur2-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "39ddefa0cc58f3b1b06474d63d81ef56.svg",
+                    "baseLayerMD5": "5493f5deffe7aed451cd8b255740de4a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 83,
-                    "rotationCenterY": 80
+                    "rotationCenterX": 115,
+                    "rotationCenterY": 72
                 },
                 {
-                    "costumeName": "dog1-b",
+                    "costumeName": "dinosaur2-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "598f4aa3d8f671375d1d2b3acf753416.svg",
+                    "baseLayerMD5": "70bba739b7df0bd08abb31026d078ee7.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 83,
-                    "rotationCenterY": 80
+                    "rotationCenterX": 74,
+                    "rotationCenterY": 67
+                },
+                {
+                    "costumeName": "dinosaur2-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "4a51679d86aafcc9cee1c010fc141288.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 62,
+                    "rotationCenterY": 67
+                },
+                {
+                    "costumeName": "dinosaur2-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "47053664449b24749aaf199925b19f8e.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 71,
+                    "rotationCenterY": 66
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 78,
-            "scratchY": -36,
+            "scratchX": 10,
+            "scratchY": 26,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3463,61 +3689,78 @@
         }
     },
     {
-        "name": "Dog2",
-        "md5": "e921f865b19b27cd99e16a341dbf09c2.svg",
+        "name": "Dinosaur3",
+        "md5": "17636db6f607c14a03a36e18abfea86a.svg",
         "type": "sprite",
         "tags": [
             "animals",
-            "puppy",
-            "puppies",
-            "mammals"
+            "dinosaur",
+            "pteranodon",
+            "flying",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            3,
+            5,
             1
         ],
         "json": {
-            "objName": "Dog2",
+            "objName": "Dinosaur3",
             "sounds": [
                 {
-                    "soundName": "dog1",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "b15adefc3c12f758b6dc6a045362532f.wav",
-                    "sampleCount": 3672,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "dog2-a",
+                    "costumeName": "dinosaur3-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "e921f865b19b27cd99e16a341dbf09c2.svg",
+                    "baseLayerMD5": "17636db6f607c14a03a36e18abfea86a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 115,
+                    "rotationCenterY": 72
                 },
                 {
-                    "costumeName": "dog2-b",
+                    "costumeName": "dinosaur3-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "891f2fb7daf79ba8b224a9173eeb0a63.svg",
+                    "baseLayerMD5": "1b20afc713b04ca5d01b25d050aa35ac.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 115,
+                    "rotationCenterY": 72
                 },
                 {
-                    "costumeName": "dog2-c",
+                    "costumeName": "dinosaur3-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "cd236d5eef4431dea82983ac9eec406b.svg",
+                    "baseLayerMD5": "4700613077afa7c62659b3fd7d7c748e.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 115,
+                    "rotationCenterY": 72
+                },
+                {
+                    "costumeName": "dinosaur3-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a03f110ed12b73acc9bd84037fd6ae96.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 115,
+                    "rotationCenterY": 72
+                },
+                {
+                    "costumeName": "dinosaur3-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "00e24e40535a1a621fee0f70895b2b61.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 115,
+                    "rotationCenterY": 72
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 99,
-            "scratchY": 27,
+            "scratchX": -76,
+            "scratchY": 101,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3527,26 +3770,24 @@
         }
     },
     {
-        "name": "Donut",
-        "md5": "9e7b4d153421dae04a24571d7e079e85.svg",
+        "name": "Dinosaur4",
+        "md5": "9da591f8a6da251c800adb12a02c43cb.svg",
         "type": "sprite",
         "tags": [
-            "food",
-            "sweets",
-            "bakery",
-            "baking",
-            "homer",
-            "frosting",
-            "sprinkles",
-            "sprankles"
+            "animals",
+            "dinosaur",
+            "tyrannosaurus",
+            "t-rex",
+            "trex",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            1,
+            4,
             1
         ],
         "json": {
-            "objName": "Donut",
+            "objName": "Dinosaur4",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -3559,42 +3800,68 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "donut",
+                    "costumeName": "dinosaur4-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "9e7b4d153421dae04a24571d7e079e85.svg",
+                    "baseLayerMD5": "9da591f8a6da251c800adb12a02c43cb.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 73,
-                    "rotationCenterY": 15
-                }
-            ],
-            "currentCostumeIndex": 0,
-            "scratchX": -2,
-            "scratchY": 43,
-            "scale": 1,
-            "direction": 90,
-            "rotationStyle": "normal",
-            "isDraggable": false,
-            "visible": true,
-            "spriteInfo": {}
-        }
-    },
-    {
-        "name": "Dorian",
-        "md5": "b042b1a5fde03dd5abbc2f3f78d11a2c.svg",
-        "type": "sprite",
-        "tags": [
-            "sports",
-            "basketball",
+                    "rotationCenterX": 59,
+                    "rotationCenterY": 54
+                },
+                {
+                    "costumeName": "dinosaur4-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a3028e87caeb8338f50b2c6dec9f23d2.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 86,
+                    "rotationCenterY": 54
+                },
+                {
+                    "costumeName": "dinosaur4-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "9a4bbc1b104c8112be82c252a6ecfd11.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 59,
+                    "rotationCenterY": 54
+                },
+                {
+                    "costumeName": "dinosaur4-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "45061ff84a25723625d04f0476687633.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 89,
+                    "rotationCenterY": 90
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 128,
+            "scratchY": -19,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Diver1",
+        "md5": "853803d5600b66538474909c5438c8ee.svg",
+        "type": "sprite",
+        "tags": [
             "people",
-            "alex eben meyer"
+            "underwater",
+            "ocean",
+            "sea",
+            "summer",
+            "swimming"
         ],
         "info": [
             0,
-            4,
+            1,
             1
         ],
         "json": {
-            "objName": "Dorian",
+            "objName": "Diver1",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -3607,41 +3874,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "dorian-a",
-                    "baseLayerID": 4,
-                    "baseLayerMD5": "b042b1a5fde03dd5abbc2f3f78d11a2c.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 72
-                },
-                {
-                    "costumeName": "dorian-b",
-                    "baseLayerID": 5,
-                    "baseLayerMD5": "d0b58b672606601ecfa3a406b537fa10.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 72
-                },
-                {
-                    "costumeName": "dorian-c",
-                    "baseLayerID": 6,
-                    "baseLayerMD5": "445e461c73a5920098764a4cbad5bfe0.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 72
-                },
-                {
-                    "costumeName": "dorian-d",
-                    "baseLayerID": 7,
-                    "baseLayerMD5": "ba93ede3bbf75c0f707b0fb982bc27e8.svg",
+                    "costumeName": "diver1",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "853803d5600b66538474909c5438c8ee.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 72
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -108,
-            "scratchY": -61,
+            "scratchX": 11,
+            "scratchY": 48,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3651,68 +3894,47 @@
         }
     },
     {
-        "name": "Dot",
-        "md5": "47c975e37f9a89c01d0d4d6fd17ef847.svg",
+        "name": "Diver2",
+        "md5": "248d3e69ada69a64b1077149ef6a931a.svg",
         "type": "sprite",
         "tags": [
-            "space",
-            "dog",
-            "wren mcdonald"
+            "people",
+            "underwater",
+            "ocean",
+            "sea",
+            "summer",
+            "swimming"
         ],
         "info": [
             0,
-            4,
+            1,
             1
         ],
         "json": {
-            "objName": "Dot",
+            "objName": "Diver2",
             "sounds": [
                 {
-                    "soundName": "bark",
-                    "soundID": 5,
-                    "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav",
-                    "sampleCount": 3168,
-                    "rate": 22050,
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "dot-a",
-                    "baseLayerID": 26,
-                    "baseLayerMD5": "47c975e37f9a89c01d0d4d6fd17ef847.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 52,
-                    "rotationCenterY": 69
-                },
-                {
-                    "costumeName": "dot-b",
-                    "baseLayerID": 27,
-                    "baseLayerMD5": "a9b7d5f7afa0c69c4044a3f541b9ab90.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 65,
-                    "rotationCenterY": 69
-                },
-                {
-                    "costumeName": "dot-c",
-                    "baseLayerID": 28,
-                    "baseLayerMD5": "5b7967159c9b83b0d0ed4f051ec2c9e9.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 49,
-                    "rotationCenterY": 70
-                },
-                {
-                    "costumeName": "dot-d",
-                    "baseLayerID": 29,
-                    "baseLayerMD5": "23ffa385654304e4cac454390dde3606.svg",
+                    "costumeName": "diver2",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "248d3e69ada69a64b1077149ef6a931a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 59,
-                    "rotationCenterY": 69
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -162,
-            "scratchY": -69,
+            "scratchX": 89,
+            "scratchY": -48,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3722,13 +3944,14 @@
         }
     },
     {
-        "name": "Dove",
-        "md5": "6dde2b880ad6ddeaea2a53821befb86d.svg",
+        "name": "Dog1",
+        "md5": "39ddefa0cc58f3b1b06474d63d81ef56.svg",
         "type": "sprite",
         "tags": [
             "animals",
-            "bird",
-            "flying"
+            "puppy",
+            "puppies",
+            "mammals"
         ],
         "info": [
             0,
@@ -3736,38 +3959,38 @@
             1
         ],
         "json": {
-            "objName": "Dove",
+            "objName": "Dog1",
             "sounds": [
                 {
-                    "soundName": "bird",
+                    "soundName": "dog1",
                     "soundID": -1,
-                    "md5": "18bd4b634a3f992a16b30344c7d810e0.wav",
-                    "sampleCount": 3840,
-                    "rate": 11025,
+                    "md5": "b15adefc3c12f758b6dc6a045362532f.wav",
+                    "sampleCount": 3672,
+                    "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "dove-a",
+                    "costumeName": "dog1-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "6dde2b880ad6ddeaea2a53821befb86d.svg",
+                    "baseLayerMD5": "39ddefa0cc58f3b1b06474d63d81ef56.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 86,
-                    "rotationCenterY": 59
+                    "rotationCenterX": 83,
+                    "rotationCenterY": 80
                 },
                 {
-                    "costumeName": "dove-b",
+                    "costumeName": "dog1-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "1c0bc118044d7f6033bc9cd1ef555590.svg",
+                    "baseLayerMD5": "598f4aa3d8f671375d1d2b3acf753416.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 88,
-                    "rotationCenterY": 57
+                    "rotationCenterX": 83,
+                    "rotationCenterY": 80
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -71,
-            "scratchY": 24,
+            "scratchX": 78,
+            "scratchY": -36,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3777,14 +4000,14 @@
         }
     },
     {
-        "name": "Dragon",
-        "md5": "8aed65cee4cfe22b4f4b8e749092dbbb.svg",
+        "name": "Dog2",
+        "md5": "e921f865b19b27cd99e16a341dbf09c2.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
             "animals",
-            "ipzy",
-            "flying"
+            "puppy",
+            "puppies",
+            "mammals"
         ],
         "info": [
             0,
@@ -3792,46 +4015,46 @@
             1
         ],
         "json": {
-            "objName": "Dragon",
+            "objName": "Dog2",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "dog1",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
+                    "md5": "b15adefc3c12f758b6dc6a045362532f.wav",
+                    "sampleCount": 3672,
+                    "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "dragon-a",
-                    "baseLayerID": 13,
-                    "baseLayerMD5": "8aed65cee4cfe22b4f4b8e749092dbbb.svg",
+                    "costumeName": "dog2-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e921f865b19b27cd99e16a341dbf09c2.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 210,
-                    "rotationCenterY": 150
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
                 },
                 {
-                    "costumeName": "dragon-b",
-                    "baseLayerID": 14,
-                    "baseLayerMD5": "c3360f16bb78b136d9911325da9fda49.svg",
+                    "costumeName": "dog2-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "891f2fb7daf79ba8b224a9173eeb0a63.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 210,
-                    "rotationCenterY": 150
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
                 },
                 {
-                    "costumeName": "dragon-c",
-                    "baseLayerID": 15,
-                    "baseLayerMD5": "e81af82ebde008c167ebc6874df3ecb4.svg",
+                    "costumeName": "dog2-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "cd236d5eef4431dea82983ac9eec406b.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 210,
-                    "rotationCenterY": 150
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -36,
-            "scratchY": -7,
+            "scratchX": 99,
+            "scratchY": 27,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3841,59 +4064,49 @@
         }
     },
     {
-        "name": "Drum",
-        "md5": "dd66742bc2a3cfe5a6f9f540afd2e15c.svg",
+        "name": "Donut",
+        "md5": "9e7b4d153421dae04a24571d7e079e85.svg",
         "type": "sprite",
         "tags": [
-            "music",
-            "andrew rae"
-        ],
-        "info": [
-            0,
-            2,
-            2
+            "food",
+            "sweets",
+            "bakery",
+            "baking",
+            "homer",
+            "frosting",
+            "sprinkles",
+            "sprankles"
+        ],
+        "info": [
+            0,
+            1,
+            1
         ],
         "json": {
-            "objName": "Drum",
+            "objName": "Donut",
             "sounds": [
                 {
-                    "soundName": "high tom",
-                    "soundID": -1,
-                    "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav",
-                    "sampleCount": 12320,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "low tom",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav",
-                    "sampleCount": 20000,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "drum-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "dd66742bc2a3cfe5a6f9f540afd2e15c.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 43,
-                    "rotationCenterY": 60
-                },
-                {
-                    "costumeName": "drum-b",
+                    "costumeName": "donut",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "9c9d371da382c227e43f09b1a748c554.svg",
+                    "baseLayerMD5": "9e7b4d153421dae04a24571d7e079e85.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 43,
-                    "rotationCenterY": 60
+                    "rotationCenterX": 73,
+                    "rotationCenterY": 15
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -43,
-            "scratchY": -29,
+            "scratchX": -2,
+            "scratchY": 43,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3903,83 +4116,69 @@
         }
     },
     {
-        "name": "Drum Kit",
-        "md5": "131d040d86ecea62ccd175a8709c7866.svg",
+        "name": "Dorian",
+        "md5": "b042b1a5fde03dd5abbc2f3f78d11a2c.svg",
         "type": "sprite",
         "tags": [
-            "music",
-            "andrew rae"
+            "sports",
+            "basketball",
+            "people",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            2,
-            5
+            4,
+            1
         ],
         "json": {
-            "objName": "Drum Kit",
+            "objName": "Dorian",
             "sounds": [
                 {
-                    "soundName": "drum bass1",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "48328c874353617451e4c7902cc82817.wav",
-                    "sampleCount": 6528,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
-                },
-                {
-                    "soundName": "drum bass2",
-                    "soundID": -1,
-                    "md5": "711a1270d1cf2e5de9b145ee539213e4.wav",
-                    "sampleCount": 3791,
-                    "rate": 22050,
-                    "format": "adpcm"
-                },
+                }
+            ],
+            "costumes": [
                 {
-                    "soundName": "drum bass3",
-                    "soundID": -1,
-                    "md5": "c21704337b16359ea631b5f8eb48f765.wav",
-                    "sampleCount": 8576,
-                    "rate": 22050,
-                    "format": ""
+                    "costumeName": "dorian-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b042b1a5fde03dd5abbc2f3f78d11a2c.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 72
                 },
                 {
-                    "soundName": "high tom",
-                    "soundID": -1,
-                    "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav",
-                    "sampleCount": 12320,
-                    "rate": 22050,
-                    "format": ""
+                    "costumeName": "dorian-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "d0b58b672606601ecfa3a406b537fa10.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 72
                 },
                 {
-                    "soundName": "low tom",
-                    "soundID": -1,
-                    "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav",
-                    "sampleCount": 20000,
-                    "rate": 22050,
-                    "format": ""
-                }
-            ],
-            "costumes": [
-                {
-                    "costumeName": "drum-kit",
+                    "costumeName": "dorian-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "131d040d86ecea62ccd175a8709c7866.svg",
+                    "baseLayerMD5": "445e461c73a5920098764a4cbad5bfe0.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 58,
-                    "rotationCenterY": 78
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 72
                 },
                 {
-                    "costumeName": "drum-kit-b",
+                    "costumeName": "dorian-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "ff14be049146cf9ab142e0951cb9b735.svg",
+                    "baseLayerMD5": "ba93ede3bbf75c0f707b0fb982bc27e8.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 58,
-                    "rotationCenterY": 78
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 72
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 4,
-            "scratchY": -31,
+            "scratchX": -108,
+            "scratchY": -61,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -3989,75 +4188,68 @@
         }
     },
     {
-        "name": "Drum-cymbal",
-        "md5": "d6d41862fda966df1455d2dbff5e1988.svg",
+        "name": "Dot",
+        "md5": "47c975e37f9a89c01d0d4d6fd17ef847.svg",
         "type": "sprite",
         "tags": [
-            "music",
-            "andrew rae"
+            "space",
+            "dog",
+            "wren mcdonald"
         ],
         "info": [
             0,
-            2,
-            4
+            4,
+            1
         ],
         "json": {
-            "objName": "Drum-cymbal",
+            "objName": "Dot",
             "sounds": [
                 {
-                    "soundName": "crash cymbal",
+                    "soundName": "bark",
                     "soundID": -1,
-                    "md5": "f2c47a46f614f467a7ac802ed9ec3d8e.wav",
-                    "sampleCount": 25220,
+                    "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav",
+                    "sampleCount": 3168,
                     "rate": 22050,
                     "format": ""
-                },
+                }
+            ],
+            "costumes": [
                 {
-                    "soundName": "splash cymbal",
-                    "soundID": -1,
-                    "md5": "9d63ed5be96c43b06492e8b4a9cea8d8.wav",
-                    "sampleCount": 9600,
-                    "rate": 22050,
-                    "format": ""
+                    "costumeName": "dot-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "47c975e37f9a89c01d0d4d6fd17ef847.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 52,
+                    "rotationCenterY": 69
                 },
                 {
-                    "soundName": "bell cymbal",
-                    "soundID": -1,
-                    "md5": "efddec047de95492f775a1b5b2e8d19e.wav",
-                    "sampleCount": 19328,
-                    "rate": 22050,
-                    "format": ""
+                    "costumeName": "dot-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a9b7d5f7afa0c69c4044a3f541b9ab90.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 65,
+                    "rotationCenterY": 69
                 },
                 {
-                    "soundName": "roll cymbal",
-                    "soundID": -1,
-                    "md5": "da8355d753cd2a5ddd19cb2bb41c1547.wav",
-                    "sampleCount": 26432,
-                    "rate": 22050,
-                    "format": ""
-                }
-            ],
-            "costumes": [
-                {
-                    "costumeName": "drum-cymbal-a",
+                    "costumeName": "dot-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "d6d41862fda966df1455d2dbff5e1988.svg",
+                    "baseLayerMD5": "5b7967159c9b83b0d0ed4f051ec2c9e9.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 30,
-                    "rotationCenterY": 74
+                    "rotationCenterX": 49,
+                    "rotationCenterY": 70
                 },
                 {
-                    "costumeName": "drum-cymbal-b",
+                    "costumeName": "dot-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "e6b7d7d8874bc4b7be58afe927157554.svg",
+                    "baseLayerMD5": "23ffa385654304e4cac454390dde3606.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 30,
-                    "rotationCenterY": 74
+                    "rotationCenterX": 59,
+                    "rotationCenterY": 69
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -50,
-            "scratchY": -19,
+            "scratchX": -162,
+            "scratchY": -69,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4067,12 +4259,13 @@
         }
     },
     {
-        "name": "Drum-highhat",
-        "md5": "81fb79151a63cb096258607451cc2cf5.svg",
+        "name": "Dove",
+        "md5": "6dde2b880ad6ddeaea2a53821befb86d.svg",
         "type": "sprite",
         "tags": [
-            "music",
-            "andrew rae"
+            "animals",
+            "bird",
+            "flying"
         ],
         "info": [
             0,
@@ -4080,38 +4273,38 @@
             1
         ],
         "json": {
-            "objName": "Drum-highhat",
+            "objName": "Dove",
             "sounds": [
                 {
-                    "soundName": "hihat cymbal",
+                    "soundName": "bird",
                     "soundID": -1,
-                    "md5": "2d01f60d0f20ab39facbf707899c6b2a.wav",
-                    "sampleCount": 2752,
-                    "rate": 22050,
+                    "md5": "18bd4b634a3f992a16b30344c7d810e0.wav",
+                    "sampleCount": 3840,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "drum-highhat-a",
+                    "costumeName": "dove-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "81fb79151a63cb096258607451cc2cf5.svg",
+                    "baseLayerMD5": "6dde2b880ad6ddeaea2a53821befb86d.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 33,
-                    "rotationCenterY": 73
+                    "rotationCenterX": 86,
+                    "rotationCenterY": 59
                 },
                 {
-                    "costumeName": "drum-highhat-b",
+                    "costumeName": "dove-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "e3c273e4ad1a24583064f9b61fcd753a.svg",
+                    "baseLayerMD5": "1c0bc118044d7f6033bc9cd1ef555590.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 33,
-                    "rotationCenterY": 73
-                }
+                    "rotationCenterX": 88,
+                    "rotationCenterY": 57
+                }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 64,
-            "scratchY": -33,
+            "scratchX": -71,
+            "scratchY": 24,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4121,67 +4314,61 @@
         }
     },
     {
-        "name": "Drum-snare",
-        "md5": "b0255be93e3c8be6ac687f4199a25c4b.svg",
+        "name": "Dragon",
+        "md5": "8aed65cee4cfe22b4f4b8e749092dbbb.svg",
         "type": "sprite",
         "tags": [
-            "music",
-            "andrew rae"
+            "fantasy",
+            "animals",
+            "ipzy",
+            "flying"
         ],
         "info": [
             0,
-            2,
-            3
+            3,
+            1
         ],
         "json": {
-            "objName": "Drum-snare",
+            "objName": "Dragon",
             "sounds": [
                 {
-                    "soundName": "tap snare",
-                    "soundID": -1,
-                    "md5": "d55b3954d72c6275917f375e49b502f3.wav",
-                    "sampleCount": 3296,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "flam snare",
-                    "soundID": -1,
-                    "md5": "3b6cce9f8c56c0537ca61eee3945cd1d.wav",
-                    "sampleCount": 4416,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "sidestick snare",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "f6868ee5cf626fc4ef3ca1119dc95592.wav",
-                    "sampleCount": 2336,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "drum-snare-a",
+                    "costumeName": "dragon-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "b0255be93e3c8be6ac687f4199a25c4b.svg",
+                    "baseLayerMD5": "8aed65cee4cfe22b4f4b8e749092dbbb.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 23,
-                    "rotationCenterY": 50
+                    "rotationCenterX": 210,
+                    "rotationCenterY": 150
                 },
                 {
-                    "costumeName": "drum-snare-b",
+                    "costumeName": "dragon-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "f6d2f2a6e1055dab6262336625ddf652.svg",
+                    "baseLayerMD5": "c3360f16bb78b136d9911325da9fda49.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 36,
-                    "rotationCenterY": 66
+                    "rotationCenterX": 210,
+                    "rotationCenterY": 150
+                },
+                {
+                    "costumeName": "dragon-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e81af82ebde008c167ebc6874df3ecb4.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 210,
+                    "rotationCenterY": 150
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 45,
-            "scratchY": -33,
+            "scratchX": -36,
+            "scratchY": -7,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4191,46 +4378,59 @@
         }
     },
     {
-        "name": "Duck",
-        "md5": "c3baf7eedfbdac8cd1e4f1f1f779dc0c.svg",
+        "name": "Drum",
+        "md5": "dd66742bc2a3cfe5a6f9f540afd2e15c.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "chrisg",
-            "quack",
-            "birds",
-            "birb"
+            "music",
+            "andrew rae"
         ],
         "info": [
             0,
-            1,
-            1
+            2,
+            2
         ],
         "json": {
-            "objName": "Duck",
+            "objName": "Drum",
             "sounds": [
                 {
-                    "soundName": "duck",
+                    "soundName": "high tom",
                     "soundID": -1,
-                    "md5": "af5b039e1b05e0ccb12944f648a8884e.wav",
-                    "sampleCount": 5792,
+                    "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav",
+                    "sampleCount": 12320,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "low tom",
+                    "soundID": -1,
+                    "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav",
+                    "sampleCount": 20000,
                     "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "duck",
+                    "costumeName": "drum-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "c3baf7eedfbdac8cd1e4f1f1f779dc0c.svg",
+                    "baseLayerMD5": "dd66742bc2a3cfe5a6f9f540afd2e15c.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 61,
-                    "rotationCenterY": 59
+                    "rotationCenterX": 43,
+                    "rotationCenterY": 60
+                },
+                {
+                    "costumeName": "drum-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "9c9d371da382c227e43f09b1a748c554.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 43,
+                    "rotationCenterY": 60
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 60,
-            "scratchY": 49,
+            "scratchX": -43,
+            "scratchY": -29,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4240,42 +4440,83 @@
         }
     },
     {
-        "name": "Earth",
-        "md5": "814197522984a302972998b1a7f92d91.svg",
+        "name": "Drum Kit",
+        "md5": "131d040d86ecea62ccd175a8709c7866.svg",
         "type": "sprite",
         "tags": [
-            "space"
+            "music",
+            "andrew rae"
         ],
         "info": [
             0,
-            1,
-            1
+            2,
+            5
         ],
         "json": {
-            "objName": "Earth",
+            "objName": "Drum Kit",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "drum bass1",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
+                    "md5": "48328c874353617451e4c7902cc82817.wav",
+                    "sampleCount": 6528,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "drum bass2",
+                    "soundID": -1,
+                    "md5": "711a1270d1cf2e5de9b145ee539213e4.wav",
+                    "sampleCount": 3791,
+                    "rate": 22050,
+                    "format": "adpcm"
+                },
+                {
+                    "soundName": "drum bass3",
+                    "soundID": -1,
+                    "md5": "c21704337b16359ea631b5f8eb48f765.wav",
+                    "sampleCount": 8576,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "high tom",
+                    "soundID": -1,
+                    "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav",
+                    "sampleCount": 12320,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "low tom",
+                    "soundID": -1,
+                    "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav",
+                    "sampleCount": 20000,
+                    "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "earth",
+                    "costumeName": "drum-kit",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "814197522984a302972998b1a7f92d91.svg",
+                    "baseLayerMD5": "131d040d86ecea62ccd175a8709c7866.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 72,
-                    "rotationCenterY": 72
+                    "rotationCenterX": 58,
+                    "rotationCenterY": 78
+                },
+                {
+                    "costumeName": "drum-kit-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ff14be049146cf9ab142e0951cb9b735.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 58,
+                    "rotationCenterY": 78
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 57,
-            "scratchY": -39,
+            "scratchX": 4,
+            "scratchY": -31,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4285,76 +4526,75 @@
         }
     },
     {
-        "name": "Egg",
-        "md5": "bc723738dfe626c5c3bb90970d985961.svg",
+        "name": "Drum-cymbal",
+        "md5": "d6d41862fda966df1455d2dbff5e1988.svg",
         "type": "sprite",
         "tags": [
-            "food",
-            "breakfast",
-            "alex eben meyer"
+            "music",
+            "andrew rae"
         ],
         "info": [
             0,
-            5,
-            1
+            2,
+            4
         ],
         "json": {
-            "objName": "Egg",
+            "objName": "Drum-cymbal",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "crash cymbal",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
+                    "md5": "f2c47a46f614f467a7ac802ed9ec3d8e.wav",
+                    "sampleCount": 25220,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "splash cymbal",
+                    "soundID": -1,
+                    "md5": "9d63ed5be96c43b06492e8b4a9cea8d8.wav",
+                    "sampleCount": 9600,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "bell cymbal",
+                    "soundID": -1,
+                    "md5": "efddec047de95492f775a1b5b2e8d19e.wav",
+                    "sampleCount": 19328,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "roll cymbal",
+                    "soundID": -1,
+                    "md5": "da8355d753cd2a5ddd19cb2bb41c1547.wav",
+                    "sampleCount": 26432,
+                    "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "egg-a",
-                    "baseLayerID": 5,
-                    "baseLayerMD5": "bc723738dfe626c5c3bb90970d985961.svg",
+                    "costumeName": "drum-cymbal-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "d6d41862fda966df1455d2dbff5e1988.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 54
+                    "rotationCenterX": 30,
+                    "rotationCenterY": 74
                 },
                 {
-                    "costumeName": "egg-b",
-                    "baseLayerID": 6,
-                    "baseLayerMD5": "83016b7ff817f99be4a454600b4a78fc.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 54
-                },
-                {
-                    "costumeName": "egg-c",
-                    "baseLayerID": 7,
-                    "baseLayerMD5": "d9a44d151fbd909bdbbcf7877055af6d.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 54
-                },
-                {
-                    "costumeName": "egg-d",
-                    "baseLayerID": 8,
-                    "baseLayerMD5": "c91c7f72b8523b0910a84bce7d99c37b.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 54
-                },
-                {
-                    "costumeName": "egg-e",
-                    "baseLayerID": 9,
-                    "baseLayerMD5": "65c15516e62596e1f72e874359fc7254.svg",
+                    "costumeName": "drum-cymbal-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e6b7d7d8874bc4b7be58afe927157554.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 54
+                    "rotationCenterX": 30,
+                    "rotationCenterY": 74
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -95,
-            "scratchY": 60,
+            "scratchX": -50,
+            "scratchY": -19,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4364,13 +4604,12 @@
         }
     },
     {
-        "name": "Elephant",
-        "md5": "b3515b3805938b0fae4e527aa0b4524e.svg",
+        "name": "Drum-highhat",
+        "md5": "81fb79151a63cb096258607451cc2cf5.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "mammals",
-            "pachydermata"
+            "music",
+            "andrew rae"
         ],
         "info": [
             0,
@@ -4378,38 +4617,38 @@
             1
         ],
         "json": {
-            "objName": "Elephant",
+            "objName": "Drum-highhat",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "hihat cymbal",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
+                    "md5": "2d01f60d0f20ab39facbf707899c6b2a.wav",
+                    "sampleCount": 2752,
+                    "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "elephant-a",
+                    "costumeName": "drum-highhat-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "b3515b3805938b0fae4e527aa0b4524e.svg",
+                    "baseLayerMD5": "81fb79151a63cb096258607451cc2cf5.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 107,
-                    "rotationCenterY": 33
+                    "rotationCenterX": 33,
+                    "rotationCenterY": 73
                 },
                 {
-                    "costumeName": "elephant-b",
+                    "costumeName": "drum-highhat-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "bce91fa266220d3679a4c19c4e38b1f7.svg",
+                    "baseLayerMD5": "e3c273e4ad1a24583064f9b61fcd753a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 95,
-                    "rotationCenterY": 40
+                    "rotationCenterX": 33,
+                    "rotationCenterY": 73
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -51,
-            "scratchY": -17,
+            "scratchX": 64,
+            "scratchY": -33,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4419,77 +4658,67 @@
         }
     },
     {
-        "name": "Elf",
-        "md5": "00748a750dc4fd754ce4debb5e3595c0.svg",
+        "name": "Drum-snare",
+        "md5": "b0255be93e3c8be6ac687f4199a25c4b.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "people",
-            "ipzy",
-            "emotions"
+            "music",
+            "andrew rae"
         ],
         "info": [
             0,
-            5,
-            1
+            2,
+            3
         ],
         "json": {
-            "objName": "Elf",
+            "objName": "Drum-snare",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "tap snare",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
+                    "md5": "d55b3954d72c6275917f375e49b502f3.wav",
+                    "sampleCount": 3296,
+                    "rate": 22050,
                     "format": ""
-                }
-            ],
-            "costumes": [
-                {
-                    "costumeName": "elf-a",
-                    "baseLayerID": 40,
-                    "baseLayerMD5": "00748a750dc4fd754ce4debb5e3595c0.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 50,
-                    "rotationCenterY": 140
                 },
                 {
-                    "costumeName": "elf-b",
-                    "baseLayerID": 41,
-                    "baseLayerMD5": "91815a19569ef9f0ef68bca56bb80446.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 50,
-                    "rotationCenterY": 140
+                    "soundName": "flam snare",
+                    "soundID": -1,
+                    "md5": "3b6cce9f8c56c0537ca61eee3945cd1d.wav",
+                    "sampleCount": 4416,
+                    "rate": 22050,
+                    "format": ""
                 },
                 {
-                    "costumeName": "elf-c",
-                    "baseLayerID": 42,
-                    "baseLayerMD5": "8153eaf84bc3db9a671cafd34506243b.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 50,
-                    "rotationCenterY": 140
-                },
+                    "soundName": "sidestick snare",
+                    "soundID": -1,
+                    "md5": "f6868ee5cf626fc4ef3ca1119dc95592.wav",
+                    "sampleCount": 2336,
+                    "rate": 22050,
+                    "format": ""
+                }
+            ],
+            "costumes": [
                 {
-                    "costumeName": "elf-d",
-                    "baseLayerID": 43,
-                    "baseLayerMD5": "2432797fc69a62fc643505b0ba039169.svg",
+                    "costumeName": "drum-snare-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b0255be93e3c8be6ac687f4199a25c4b.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 50,
-                    "rotationCenterY": 140
+                    "rotationCenterX": 23,
+                    "rotationCenterY": 50
                 },
                 {
-                    "costumeName": "elf-e",
-                    "baseLayerID": 44,
-                    "baseLayerMD5": "a06e6c93b143ae2a7b776bd1deee6b59.svg",
+                    "costumeName": "drum-snare-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "f6d2f2a6e1055dab6262336625ddf652.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 50,
-                    "rotationCenterY": 140
+                    "rotationCenterX": 36,
+                    "rotationCenterY": 66
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 39,
-            "scratchY": -15,
+            "scratchX": 45,
+            "scratchY": -33,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4499,40 +4728,46 @@
         }
     },
     {
-        "name": "Empty",
-        "md5": "cd21514d0531fdffb22204e0ec5ed84a.svg",
+        "name": "Duck",
+        "md5": "c3baf7eedfbdac8cd1e4f1f1f779dc0c.svg",
         "type": "sprite",
-        "tags": [],
+        "tags": [
+            "animals",
+            "chrisg",
+            "quack",
+            "birds",
+            "birb"
+        ],
         "info": [
             0,
             1,
             1
         ],
         "json": {
-            "objName": "Empty",
+            "objName": "Duck",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "duck",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
+                    "md5": "af5b039e1b05e0ccb12944f648a8884e.wav",
+                    "sampleCount": 5792,
+                    "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "empty",
+                    "costumeName": "duck",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "cd21514d0531fdffb22204e0ec5ed84a.svg",
+                    "baseLayerMD5": "c3baf7eedfbdac8cd1e4f1f1f779dc0c.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 0,
-                    "rotationCenterY": 0
+                    "rotationCenterX": 61,
+                    "rotationCenterY": 59
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 36,
-            "scratchY": 28,
+            "scratchX": 60,
+            "scratchY": 49,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4542,22 +4777,19 @@
         }
     },
     {
-        "name": "Fairy",
-        "md5": "fe97687c7f1b747bb6f41c252cc5926a.svg",
+        "name": "Earth",
+        "md5": "814197522984a302972998b1a7f92d91.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "people",
-            "ipzy",
-            "emotions"
+            "space"
         ],
         "info": [
             0,
-            5,
+            1,
             1
         ],
         "json": {
-            "objName": "Fairy",
+            "objName": "Earth",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -4570,49 +4802,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "fairy-a",
-                    "baseLayerID": 45,
-                    "baseLayerMD5": "fe97687c7f1b747bb6f41c252cc5926a.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 85,
-                    "rotationCenterY": 140
-                },
-                {
-                    "costumeName": "fairy-b",
-                    "baseLayerID": 46,
-                    "baseLayerMD5": "c8e0d935b2e4372ecc813705a79be3eb.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 85,
-                    "rotationCenterY": 140
-                },
-                {
-                    "costumeName": "fairy-c",
-                    "baseLayerID": 47,
-                    "baseLayerMD5": "4d0740d1b5be93256ad235062daa876b.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 85,
-                    "rotationCenterY": 140
-                },
-                {
-                    "costumeName": "fairy-d",
-                    "baseLayerID": 48,
-                    "baseLayerMD5": "ca555dadd377431e38a3bc67ece4d36a.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 85,
-                    "rotationCenterY": 140
-                },
-                {
-                    "costumeName": "fairy-e",
-                    "baseLayerID": 49,
-                    "baseLayerMD5": "a681f6d6044abdebcdd6634ce85da484.svg",
+                    "costumeName": "earth",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "814197522984a302972998b1a7f92d91.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 85,
-                    "rotationCenterY": 140
+                    "rotationCenterX": 72,
+                    "rotationCenterY": 72
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -24,
-            "scratchY": -21,
+            "scratchX": 57,
+            "scratchY": -39,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4622,23 +4822,21 @@
         }
     },
     {
-        "name": "Fish",
-        "md5": "8598752b1b7b9892c23817c4ed848e7d.svg",
+        "name": "Egg",
+        "md5": "bc723738dfe626c5c3bb90970d985961.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "ocean",
-            "sea",
-            "underwater",
-            "daria skrybchencko"
-        ],
+            "food",
+            "breakfast",
+            "alex eben meyer"
+        ],
         "info": [
             0,
-            4,
+            5,
             1
         ],
         "json": {
-            "objName": "Fish",
+            "objName": "Egg",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -4651,41 +4849,49 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "fish-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "8598752b1b7b9892c23817c4ed848e7d.svg",
+                    "costumeName": "egg-a",
+                    "baseLayerID": 5,
+                    "baseLayerMD5": "bc723738dfe626c5c3bb90970d985961.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 63,
-                    "rotationCenterY": 45
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 54
                 },
                 {
-                    "costumeName": "fish-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "52032e4310f9855b89f873b528a5e928.svg",
+                    "costumeName": "egg-b",
+                    "baseLayerID": 6,
+                    "baseLayerMD5": "83016b7ff817f99be4a454600b4a78fc.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 63,
-                    "rotationCenterY": 45
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 54
                 },
                 {
-                    "costumeName": "fish-c",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "06c139dcfe45bf31ef45e7030b77dc36.svg",
+                    "costumeName": "egg-c",
+                    "baseLayerID": 7,
+                    "baseLayerMD5": "d9a44d151fbd909bdbbcf7877055af6d.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 63,
-                    "rotationCenterY": 45
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 54
                 },
                 {
-                    "costumeName": "fish-d",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "6a3a2c97374c157e0dbc0a03c2079284.svg",
+                    "costumeName": "egg-d",
+                    "baseLayerID": 8,
+                    "baseLayerMD5": "c91c7f72b8523b0910a84bce7d99c37b.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 63,
-                    "rotationCenterY": 45
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 54
+                },
+                {
+                    "costumeName": "egg-e",
+                    "baseLayerID": 9,
+                    "baseLayerMD5": "65c15516e62596e1f72e874359fc7254.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 54
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 38,
-            "scratchY": -53,
+            "scratchX": -95,
+            "scratchY": 60,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4695,21 +4901,21 @@
         }
     },
     {
-        "name": "Fox",
-        "md5": "fab5488e600e81565f0fc285fc7050f8.svg",
+        "name": "Elephant",
+        "md5": "b3515b3805938b0fae4e527aa0b4524e.svg",
         "type": "sprite",
         "tags": [
             "animals",
-            "mammal",
-            "robert hunter"
+            "mammals",
+            "pachydermata"
         ],
         "info": [
             0,
-            3,
+            2,
             1
         ],
         "json": {
-            "objName": "Fox",
+            "objName": "Elephant",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -4722,33 +4928,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "fox-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "fab5488e600e81565f0fc285fc7050f8.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 94,
-                    "rotationCenterY": 54
-                },
-                {
-                    "costumeName": "fox-b",
+                    "costumeName": "elephant-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "afb192ae250a74dfac18bfc52d1d6266.svg",
+                    "baseLayerMD5": "b3515b3805938b0fae4e527aa0b4524e.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 94,
-                    "rotationCenterY": 54
+                    "rotationCenterX": 107,
+                    "rotationCenterY": 33
                 },
                 {
-                    "costumeName": "fox-c",
+                    "costumeName": "elephant-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "29f858d384db7998c0e5183f6a31a3b4.svg",
+                    "baseLayerMD5": "bce91fa266220d3679a4c19c4e38b1f7.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 94,
-                    "rotationCenterY": 54
+                    "rotationCenterX": 95,
+                    "rotationCenterY": 40
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 32,
-            "scratchY": -124,
+            "scratchX": -51,
+            "scratchY": -17,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4758,24 +4956,22 @@
         }
     },
     {
-        "name": "Frank",
-        "md5": "19a09a005d7199d2e681e53a761bfe11.svg",
+        "name": "Elf",
+        "md5": "00748a750dc4fd754ce4debb5e3595c0.svg",
         "type": "sprite",
         "tags": [
             "fantasy",
-            "spooky",
-            "halloween",
-            "frankenstein",
-            "monster",
-            "alex eben meyer"
+            "people",
+            "ipzy",
+            "emotions"
         ],
         "info": [
             0,
-            4,
+            5,
             1
         ],
         "json": {
-            "objName": "Frank",
+            "objName": "Elf",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -4788,41 +4984,49 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "frank-a",
+                    "costumeName": "elf-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "19a09a005d7199d2e681e53a761bfe11.svg",
+                    "baseLayerMD5": "00748a750dc4fd754ce4debb5e3595c0.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 154,
-                    "rotationCenterY": 107
+                    "rotationCenterX": 50,
+                    "rotationCenterY": 140
                 },
                 {
-                    "costumeName": "frank-b",
+                    "costumeName": "elf-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "a03102442ee197a39083fba24e852792.svg",
+                    "baseLayerMD5": "91815a19569ef9f0ef68bca56bb80446.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 154,
-                    "rotationCenterY": 107
+                    "rotationCenterX": 50,
+                    "rotationCenterY": 140
                 },
                 {
-                    "costumeName": "frank-c",
+                    "costumeName": "elf-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "b456d8dc4b7895d61c90dbc909d8a4c6.svg",
+                    "baseLayerMD5": "8153eaf84bc3db9a671cafd34506243b.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 154,
-                    "rotationCenterY": 107
+                    "rotationCenterX": 50,
+                    "rotationCenterY": 140
                 },
                 {
-                    "costumeName": "frank-d",
+                    "costumeName": "elf-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "8743c01814fed4190a582ba1520e8f6a.svg",
+                    "baseLayerMD5": "2432797fc69a62fc643505b0ba039169.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 154,
-                    "rotationCenterY": 107
+                    "rotationCenterX": 50,
+                    "rotationCenterY": 140
+                },
+                {
+                    "costumeName": "elf-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a06e6c93b143ae2a7b776bd1deee6b59.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 50,
+                    "rotationCenterY": 140
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -110,
-            "scratchY": -24,
+            "scratchX": 39,
+            "scratchY": -15,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4832,24 +5036,17 @@
         }
     },
     {
-        "name": "Frog",
-        "md5": "285483a688eed2ff8010c65112f99c41.svg",
+        "name": "Empty",
+        "md5": "cd21514d0531fdffb22204e0ec5ed84a.svg",
         "type": "sprite",
-        "tags": [
-            "animals",
-            "amphibian",
-            "nature",
-            "hopping",
-            "green",
-            "wart"
-        ],
+        "tags": [],
         "info": [
             0,
             1,
             1
         ],
         "json": {
-            "objName": "Frog",
+            "objName": "Empty",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -4862,17 +5059,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "frog",
+                    "costumeName": "empty",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "285483a688eed2ff8010c65112f99c41.svg",
+                    "baseLayerMD5": "cd21514d0531fdffb22204e0ec5ed84a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 48,
-                    "rotationCenterY": 30
+                    "rotationCenterX": 0,
+                    "rotationCenterY": 0
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -19,
-            "scratchY": -11,
+            "scratchX": 36,
+            "scratchY": 28,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4882,20 +5079,22 @@
         }
     },
     {
-        "name": "Fruit Salad",
-        "md5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg",
+        "name": "Fairy",
+        "md5": "fe97687c7f1b747bb6f41c252cc5926a.svg",
         "type": "sprite",
         "tags": [
-            "food",
-            "fruit"
+            "fantasy",
+            "people",
+            "ipzy",
+            "emotions"
         ],
         "info": [
             0,
-            1,
+            5,
             1
         ],
         "json": {
-            "objName": "Fruit Salad",
+            "objName": "Fairy",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -4908,17 +5107,49 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "fruitsalad",
+                    "costumeName": "fairy-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg",
+                    "baseLayerMD5": "fe97687c7f1b747bb6f41c252cc5926a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 30,
-                    "rotationCenterY": 22
+                    "rotationCenterX": 85,
+                    "rotationCenterY": 140
+                },
+                {
+                    "costumeName": "fairy-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "c8e0d935b2e4372ecc813705a79be3eb.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 85,
+                    "rotationCenterY": 140
+                },
+                {
+                    "costumeName": "fairy-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "4d0740d1b5be93256ad235062daa876b.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 85,
+                    "rotationCenterY": 140
+                },
+                {
+                    "costumeName": "fairy-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ca555dadd377431e38a3bc67ece4d36a.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 85,
+                    "rotationCenterY": 140
+                },
+                {
+                    "costumeName": "fairy-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a681f6d6044abdebcdd6634ce85da484.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 85,
+                    "rotationCenterY": 140
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 27,
-            "scratchY": 0,
+            "scratchX": -24,
+            "scratchY": -21,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -4928,24 +5159,23 @@
         }
     },
     {
-        "name": "Ghost",
-        "md5": "23c317a22dec95421f2532090cc8de48.svg",
+        "name": "Fish",
+        "md5": "8598752b1b7b9892c23817c4ed848e7d.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "spooky",
-            "halloween",
-            "ghoul",
-            "monster",
-            "alex eben meyer"
-        ],
+            "animals",
+            "ocean",
+            "sea",
+            "underwater",
+            "daria skrybchencko"
+        ],
         "info": [
             0,
             4,
             1
         ],
         "json": {
-            "objName": "Ghost",
+            "objName": "Fish",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -4958,41 +5188,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "ghost-a",
+                    "costumeName": "fish-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "23c317a22dec95421f2532090cc8de48.svg",
+                    "baseLayerMD5": "8598752b1b7b9892c23817c4ed848e7d.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 98,
-                    "rotationCenterY": 73
+                    "rotationCenterX": 63,
+                    "rotationCenterY": 45
                 },
                 {
-                    "costumeName": "ghost-b",
+                    "costumeName": "fish-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "e86a742d091370950f3353e1e430cdb2.svg",
+                    "baseLayerMD5": "52032e4310f9855b89f873b528a5e928.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 98,
-                    "rotationCenterY": 73
+                    "rotationCenterX": 63,
+                    "rotationCenterY": 45
                 },
                 {
-                    "costumeName": "ghost-c",
+                    "costumeName": "fish-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "24a8b71b780bc665c3e6d37c11221137.svg",
+                    "baseLayerMD5": "06c139dcfe45bf31ef45e7030b77dc36.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 98,
-                    "rotationCenterY": 73
+                    "rotationCenterX": 63,
+                    "rotationCenterY": 45
                 },
                 {
-                    "costumeName": "ghost-d",
+                    "costumeName": "fish-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "221b794cad3d045008299e3c8440170c.svg",
+                    "baseLayerMD5": "6a3a2c97374c157e0dbc0a03c2079284.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 98,
-                    "rotationCenterY": 73
+                    "rotationCenterX": 63,
+                    "rotationCenterY": 45
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 42,
-            "scratchY": 27,
+            "scratchX": 38,
+            "scratchY": -53,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5002,12 +5232,12 @@
         }
     },
     {
-        "name": "Gift",
-        "md5": "abeae2217b3ce67b1ff761cd7a89274d.svg",
+        "name": "Football",
+        "md5": "7ee31371b2eafba57cc5a78fc1a787fe.png",
         "type": "sprite",
         "tags": [
-            "thing",
-            "holiday"
+            "people",
+            "sports"
         ],
         "info": [
             0,
@@ -5015,7 +5245,7 @@
             1
         ],
         "json": {
-            "objName": "Gift",
+            "objName": "Football",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -5028,25 +5258,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "gift-a",
+                    "costumeName": "football running",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "abeae2217b3ce67b1ff761cd7a89274d.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 33,
-                    "rotationCenterY": 25
+                    "baseLayerMD5": "7ee31371b2eafba57cc5a78fc1a787fe.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 92,
+                    "rotationCenterY": 200
                 },
                 {
-                    "costumeName": "gift-b",
+                    "costumeName": "football standing",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "5cae973c98f2d98b51e6c6b3c9602f8c.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 33,
-                    "rotationCenterY": 26
+                    "baseLayerMD5": "c717def72c8bd98749284d31b51d7097.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 74,
+                    "rotationCenterY": 200
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 26,
-            "scratchY": 28,
+            "scratchX": -41,
+            "scratchY": -39,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5056,20 +5286,19 @@
         }
     },
     {
-        "name": "Giga",
-        "md5": "93cb048a1d199f92424b9c097fa5fa38.svg",
+        "name": "Fortune Cookie",
+        "md5": "c56dcaa1fa4e3c9740142b93d5982850.png",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "drawing"
+            "food"
         ],
         "info": [
             0,
-            4,
+            1,
             1
         ],
         "json": {
-            "objName": "Giga",
+            "objName": "Fortune Cookie",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -5082,41 +5311,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "giga-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "93cb048a1d199f92424b9c097fa5fa38.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 72,
-                    "rotationCenterY": 96
-                },
-                {
-                    "costumeName": "giga-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "528613711a7eae3a929025be04db081c.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 72,
-                    "rotationCenterY": 96
-                },
-                {
-                    "costumeName": "giga-c",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "ee4dd21d7ca6d1b889ee25d245cbcc66.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 73,
-                    "rotationCenterY": 96
-                },
-                {
-                    "costumeName": "giga-d",
+                    "costumeName": "fortune cookie",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "7708e2d9f83a01476ee6d17aa540ddf1.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 73,
-                    "rotationCenterY": 96
+                    "baseLayerMD5": "c56dcaa1fa4e3c9740142b93d5982850.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 60,
+                    "rotationCenterY": 62
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 36,
-            "scratchY": 20,
+            "scratchX": -5,
+            "scratchY": -46,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5126,20 +5331,21 @@
         }
     },
     {
-        "name": "Giga Walking",
-        "md5": "f76bc420011db2cdb2de378c1536f6da.svg",
+        "name": "Fox",
+        "md5": "fab5488e600e81565f0fc285fc7050f8.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "walking"
+            "animals",
+            "mammal",
+            "robert hunter"
         ],
         "info": [
             0,
-            4,
+            3,
             1
         ],
         "json": {
-            "objName": "Giga Walking",
+            "objName": "Fox",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -5152,41 +5358,33 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "Giga walk1",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "f76bc420011db2cdb2de378c1536f6da.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 70,
-                    "rotationCenterY": 107
-                },
-                {
-                    "costumeName": "Giga walk2",
+                    "costumeName": "fox-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "43b5874e8a54f93bd02727f0abf6905b.svg",
+                    "baseLayerMD5": "fab5488e600e81565f0fc285fc7050f8.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 71,
-                    "rotationCenterY": 107
+                    "rotationCenterX": 94,
+                    "rotationCenterY": 54
                 },
                 {
-                    "costumeName": "Giga walk3",
+                    "costumeName": "fox-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "9aab3bbb375765391978be4f6d478ab3.svg",
+                    "baseLayerMD5": "afb192ae250a74dfac18bfc52d1d6266.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 71,
-                    "rotationCenterY": 107
+                    "rotationCenterX": 94,
+                    "rotationCenterY": 54
                 },
                 {
-                    "costumeName": "Giga walk4",
+                    "costumeName": "fox-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "22e4ae40919cf0fe6b4d7649d14a6e71.svg",
+                    "baseLayerMD5": "29f858d384db7998c0e5183f6a31a3b4.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 73,
-                    "rotationCenterY": 110
+                    "rotationCenterX": 94,
+                    "rotationCenterY": 54
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -95,
-            "scratchY": 0,
+            "scratchX": 32,
+            "scratchY": -124,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5196,21 +5394,24 @@
         }
     },
     {
-        "name": "Glass Water",
-        "md5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg",
+        "name": "Frank",
+        "md5": "19a09a005d7199d2e681e53a761bfe11.svg",
         "type": "sprite",
         "tags": [
-            "food",
-            "things",
-            "underwater"
+            "fantasy",
+            "spooky",
+            "halloween",
+            "frankenstein",
+            "monster",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            2,
+            4,
             1
         ],
         "json": {
-            "objName": "Glass Water",
+            "objName": "Frank",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -5223,25 +5424,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "glass water-a",
+                    "costumeName": "frank-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg",
+                    "baseLayerMD5": "19a09a005d7199d2e681e53a761bfe11.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 39,
-                    "rotationCenterY": 48
+                    "rotationCenterX": 154,
+                    "rotationCenterY": 107
                 },
                 {
-                    "costumeName": "glass water-b",
+                    "costumeName": "frank-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "bc07ce6a2004ac91ce704531a1c526e5.svg",
+                    "baseLayerMD5": "a03102442ee197a39083fba24e852792.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 39,
-                    "rotationCenterY": 48
+                    "rotationCenterX": 154,
+                    "rotationCenterY": 107
+                },
+                {
+                    "costumeName": "frank-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b456d8dc4b7895d61c90dbc909d8a4c6.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 154,
+                    "rotationCenterY": 107
+                },
+                {
+                    "costumeName": "frank-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "8743c01814fed4190a582ba1520e8f6a.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 154,
+                    "rotationCenterY": 107
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 43,
-            "scratchY": -10,
+            "scratchX": -110,
+            "scratchY": -24,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5251,12 +5468,16 @@
         }
     },
     {
-        "name": "Glasses",
-        "md5": "5fcf716b53f223bc86b10ab0eca3e162.svg",
+        "name": "Frog",
+        "md5": "285483a688eed2ff8010c65112f99c41.svg",
         "type": "sprite",
         "tags": [
-            "things",
-            "fashion"
+            "animals",
+            "amphibian",
+            "nature",
+            "hopping",
+            "green",
+            "wart"
         ],
         "info": [
             0,
@@ -5264,7 +5485,7 @@
             1
         ],
         "json": {
-            "objName": "Glasses",
+            "objName": "Frog",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -5277,17 +5498,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "glasses",
+                    "costumeName": "frog",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "5fcf716b53f223bc86b10ab0eca3e162.svg",
+                    "baseLayerMD5": "285483a688eed2ff8010c65112f99c41.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 16,
-                    "rotationCenterY": 9
+                    "rotationCenterX": 48,
+                    "rotationCenterY": 30
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 65,
-            "scratchY": 6,
+            "scratchX": -19,
+            "scratchY": -11,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5297,22 +5518,19 @@
         }
     },
     {
-        "name": "Goalie",
-        "md5": "86b0610ea21fdecb99795c5e6d52768c.svg",
+        "name": "Fruit Platter",
+        "md5": "6c3252378da3334f63eebddbed3fae91.png",
         "type": "sprite",
         "tags": [
-            "sports",
-            "soccer",
-            "football",
-            "alex eben meyer"
+            "food"
         ],
         "info": [
             0,
-            5,
+            1,
             1
         ],
         "json": {
-            "objName": "Goalie",
+            "objName": "Fruit Platter",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -5325,49 +5543,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "goalie-a",
+                    "costumeName": "fruit platter",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "86b0610ea21fdecb99795c5e6d52768c.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
-                },
-                {
-                    "costumeName": "goalie-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "af3ef5125d187772240a1120e7eb67ac.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
-                },
-                {
-                    "costumeName": "goalie-c",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "7c9377cedae11a094d2e77bed3edb884.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
-                },
-                {
-                    "costumeName": "goalie-d",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "bd628034d356d30b0e9b563447471290.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
-                },
-                {
-                    "costumeName": "goalie-e",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "b3f6c4c0be9a0f71e9486dea51e513c3.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
+                    "baseLayerMD5": "6c3252378da3334f63eebddbed3fae91.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 148,
+                    "rotationCenterY": 78
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -5,
-            "scratchY": 39,
+            "scratchX": -24,
+            "scratchY": 7,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5377,21 +5563,20 @@
         }
     },
     {
-        "name": "Goblin",
-        "md5": "f10eaedff51f50f0809a7b4b310337fa.svg",
+        "name": "Fruit Salad",
+        "md5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "ipzy",
-            "emotions"
+            "food",
+            "fruit"
         ],
         "info": [
             0,
-            4,
+            1,
             1
         ],
         "json": {
-            "objName": "Goblin",
+            "objName": "Fruit Salad",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -5404,41 +5589,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "goblin-a",
-                    "baseLayerID": 3,
-                    "baseLayerMD5": "f10eaedff51f50f0809a7b4b310337fa.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 40,
-                    "rotationCenterY": 80
-                },
-                {
-                    "costumeName": "goblin-b",
-                    "baseLayerID": 4,
-                    "baseLayerMD5": "71e7c77d89299cd99739b1216fc03a85.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 40,
-                    "rotationCenterY": 80
-                },
-                {
-                    "costumeName": "goblin-c",
-                    "baseLayerID": 5,
-                    "baseLayerMD5": "ab0611427d6f9b54d83672cf9e554876.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 40,
-                    "rotationCenterY": 80
-                },
-                {
-                    "costumeName": "goblin-d",
-                    "baseLayerID": 6,
-                    "baseLayerMD5": "87dd413e7a8545bea9b3da208a5d5735.svg",
+                    "costumeName": "fruitsalad",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 40,
-                    "rotationCenterY": 80
+                    "rotationCenterX": 30,
+                    "rotationCenterY": 22
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 123,
-            "scratchY": -66,
+            "scratchX": 27,
+            "scratchY": 0,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5448,22 +5609,24 @@
         }
     },
     {
-        "name": "Gobo",
-        "md5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg",
+        "name": "Ghost",
+        "md5": "23c317a22dec95421f2532090cc8de48.svg",
         "type": "sprite",
         "tags": [
             "fantasy",
-            "drawing",
-            "jenkins",
-            "ganglia"
+            "spooky",
+            "halloween",
+            "ghoul",
+            "monster",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            3,
+            4,
             1
         ],
         "json": {
-            "objName": "Gobo",
+            "objName": "Ghost",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -5476,33 +5639,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "gobo-a",
+                    "costumeName": "ghost-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg",
+                    "baseLayerMD5": "23c317a22dec95421f2532090cc8de48.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 47,
-                    "rotationCenterY": 55
+                    "rotationCenterX": 98,
+                    "rotationCenterY": 73
                 },
                 {
-                    "costumeName": "gobo-b",
+                    "costumeName": "ghost-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "73e493e4abd5d0954b677b97abcb7116.svg",
+                    "baseLayerMD5": "e86a742d091370950f3353e1e430cdb2.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 47,
-                    "rotationCenterY": 55
+                    "rotationCenterX": 98,
+                    "rotationCenterY": 73
                 },
                 {
-                    "costumeName": "gobo-c",
+                    "costumeName": "ghost-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "bc68a6bdf300df7b53d73b38f74c844e.svg",
+                    "baseLayerMD5": "24a8b71b780bc665c3e6d37c11221137.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 47,
-                    "rotationCenterY": 55
+                    "rotationCenterX": 98,
+                    "rotationCenterY": 73
+                },
+                {
+                    "costumeName": "ghost-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "221b794cad3d045008299e3c8440170c.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 98,
+                    "rotationCenterY": 73
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -33,
-            "scratchY": 25,
+            "scratchX": 42,
+            "scratchY": 27,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5512,19 +5683,20 @@
         }
     },
     {
-        "name": "Green Flag",
-        "md5": "173e20ac537d2c278ed621be3db3fc87.svg",
+        "name": "Gift",
+        "md5": "abeae2217b3ce67b1ff761cd7a89274d.svg",
         "type": "sprite",
         "tags": [
-            "thing"
+            "thing",
+            "holiday"
         ],
         "info": [
             0,
-            1,
+            2,
             1
         ],
         "json": {
-            "objName": "Green Flag",
+            "objName": "Gift",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -5537,17 +5709,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "green flag",
+                    "costumeName": "gift-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "173e20ac537d2c278ed621be3db3fc87.svg",
+                    "baseLayerMD5": "abeae2217b3ce67b1ff761cd7a89274d.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 70,
-                    "rotationCenterY": 30
+                    "rotationCenterX": 33,
+                    "rotationCenterY": 25
+                },
+                {
+                    "costumeName": "gift-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "5cae973c98f2d98b51e6c6b3c9602f8c.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 33,
+                    "rotationCenterY": 26
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -36,
-            "scratchY": 39,
+            "scratchX": 26,
+            "scratchY": 28,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5557,22 +5737,20 @@
         }
     },
     {
-        "name": "Griffin",
-        "md5": "d2ddc25b224ad72240f92e632afc7c69.svg",
+        "name": "Giga",
+        "md5": "93cb048a1d199f92424b9c097fa5fa38.svg",
         "type": "sprite",
         "tags": [
             "fantasy",
-            "animals",
-            "ipzy",
-            "flying"
+            "drawing"
         ],
         "info": [
             0,
-            2,
+            4,
             1
         ],
         "json": {
-            "objName": "Griffin",
+            "objName": "Giga",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -5585,25 +5763,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "griffin-a",
-                    "baseLayerID": 10,
-                    "baseLayerMD5": "d2ddc25b224ad72240f92e632afc7c69.svg",
+                    "costumeName": "giga-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "93cb048a1d199f92424b9c097fa5fa38.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 150,
-                    "rotationCenterY": 110
+                    "rotationCenterX": 72,
+                    "rotationCenterY": 96
                 },
                 {
-                    "costumeName": "griffin-fly-b",
-                    "baseLayerID": 11,
-                    "baseLayerMD5": "ff0795d15b6f3990345f72bc483a3353.svg",
+                    "costumeName": "giga-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "528613711a7eae3a929025be04db081c.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 150,
-                    "rotationCenterY": 110
+                    "rotationCenterX": 72,
+                    "rotationCenterY": 96
+                },
+                {
+                    "costumeName": "giga-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ee4dd21d7ca6d1b889ee25d245cbcc66.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 73,
+                    "rotationCenterY": 96
+                },
+                {
+                    "costumeName": "giga-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "7708e2d9f83a01476ee6d17aa540ddf1.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 73,
+                    "rotationCenterY": 96
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -18,
-            "scratchY": -4,
+            "scratchX": 36,
+            "scratchY": 20,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5613,22 +5807,20 @@
         }
     },
     {
-        "name": "Griffin-flying",
-        "md5": "03d75e0c7c34e8618545a5f4913db4ea.svg",
+        "name": "Giga Walking",
+        "md5": "f76bc420011db2cdb2de378c1536f6da.svg",
         "type": "sprite",
         "tags": [
             "fantasy",
-            "animals",
-            "ipzy",
-            "flying"
+            "walking"
         ],
         "info": [
             0,
-            2,
+            4,
             1
         ],
         "json": {
-            "objName": "Griffin-flying",
+            "objName": "Giga Walking",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -5641,26 +5833,42 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "griffin-fly-a",
-                    "baseLayerID": 12,
-                    "baseLayerMD5": "03d75e0c7c34e8618545a5f4913db4ea.svg",
+                    "costumeName": "Giga walk1",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "f76bc420011db2cdb2de378c1536f6da.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 150,
-                    "rotationCenterY": 110
+                    "rotationCenterX": 70,
+                    "rotationCenterY": 107
                 },
                 {
-                    "costumeName": "griffin-fly-b",
-                    "baseLayerID": 11,
-                    "baseLayerMD5": "ff0795d15b6f3990345f72bc483a3353.svg",
+                    "costumeName": "Giga walk2",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "43b5874e8a54f93bd02727f0abf6905b.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 150,
-                    "rotationCenterY": 110
-                }
-            ],
-            "currentCostumeIndex": 0,
-            "scratchX": -13,
-            "scratchY": 1,
-            "scale": 1,
+                    "rotationCenterX": 71,
+                    "rotationCenterY": 107
+                },
+                {
+                    "costumeName": "Giga walk3",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "9aab3bbb375765391978be4f6d478ab3.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 71,
+                    "rotationCenterY": 107
+                },
+                {
+                    "costumeName": "Giga walk4",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "22e4ae40919cf0fe6b4d7649d14a6e71.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 73,
+                    "rotationCenterY": 110
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -95,
+            "scratchY": 0,
+            "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
             "isDraggable": false,
@@ -5669,107 +5877,60 @@
         }
     },
     {
-        "name": "Guitar",
-        "md5": "cb8c2a5e69da7538e1dd73cb7ff4a666.svg",
+        "name": "Giraffe",
+        "md5": "497baa643718a865b0621c1607696800.svg",
         "type": "sprite",
         "tags": [
-            "music",
-            "andrew rae"
+            "animals",
+            "savanna",
+            "robert hunter"
         ],
         "info": [
             0,
-            2,
-            8
+            3,
+            1
         ],
         "json": {
-            "objName": "Guitar",
+            "objName": "Giraffe",
             "sounds": [
                 {
-                    "soundName": "C guitar",
-                    "soundID": -1,
-                    "md5": "22baa07795a9a524614075cdea543793.wav",
-                    "sampleCount": 44864,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "D guitar",
-                    "soundID": -1,
-                    "md5": "2dbcfae6a55738f94bbb40aa5fcbf7ce.wav",
-                    "sampleCount": 41120,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "E guitar",
-                    "soundID": -1,
-                    "md5": "4b5d1da83e59bf35578324573c991666.wav",
-                    "sampleCount": 38400,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "F guitar",
-                    "soundID": -1,
-                    "md5": "b51d086aeb1921ec405561df52ecbc50.wav",
-                    "sampleCount": 36416,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "G guitar",
-                    "soundID": -1,
-                    "md5": "98a835713ecea2f3ef9f4f442d52ad20.wav",
-                    "sampleCount": 33600,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "A guitar",
-                    "soundID": -1,
-                    "md5": "ee753e87d212d4b2fb650ca660f1e839.wav",
-                    "sampleCount": 31872,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "B guitar",
-                    "soundID": -1,
-                    "md5": "2ae2d67de62df8ca54d638b4ad2466c3.wav",
-                    "sampleCount": 29504,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "C2 guitar",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "c8d2851bd99d8e0ce6c1f05e4acc7f34.wav",
-                    "sampleCount": 27712,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "guitar-a",
+                    "costumeName": "giraffe-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "cb8c2a5e69da7538e1dd73cb7ff4a666.svg",
+                    "baseLayerMD5": "497baa643718a865b0621c1607696800.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 47,
-                    "rotationCenterY": 83
+                    "rotationCenterX": 86,
+                    "rotationCenterY": 131
                 },
                 {
-                    "costumeName": "guitar-b",
+                    "costumeName": "giraffe-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "fed44bd1091628c060f45060a84f2885.svg",
+                    "baseLayerMD5": "0242ae2497839f449af064b40b358b76.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 47,
-                    "rotationCenterY": 83
+                    "rotationCenterX": 86,
+                    "rotationCenterY": 131
+                },
+                {
+                    "costumeName": "giraffe-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "d9e8f8b7d656d4a24c1f4f6c24c5e578.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 86,
+                    "rotationCenterY": 131
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -150,
-            "scratchY": 9,
+            "scratchX": -130,
+            "scratchY": 10,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5779,107 +5940,52 @@
         }
     },
     {
-        "name": "Guitar-electric2",
-        "md5": "1fc433b89038f9e16092c9f4d7514cca.svg",
+        "name": "Glass Water",
+        "md5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg",
         "type": "sprite",
         "tags": [
-            "music",
-            "andrew rae"
+            "food",
+            "things",
+            "underwater"
         ],
         "info": [
             0,
             2,
-            8
+            1
         ],
         "json": {
-            "objName": "Guitar-electric2",
+            "objName": "Glass Water",
             "sounds": [
                 {
-                    "soundName": "C elec guitar",
-                    "soundID": -1,
-                    "md5": "0d340de02e14bebaf8dfa0e43eb3f1f9.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "D elec guitar",
-                    "soundID": -1,
-                    "md5": "1b5de9866801eb2f9d4f57c7c3b473f5.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "E elec guitar",
-                    "soundID": -1,
-                    "md5": "2e6a6ae3e0f72bf78c74def8130f459a.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "F elec guitar",
-                    "soundID": -1,
-                    "md5": "5eb00f15f21f734986aa45156d44478d.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "G elec guitar",
-                    "soundID": -1,
-                    "md5": "cd0d0e7dad415b2ffa2ba7a61860eaf8.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "A elec guitar",
-                    "soundID": -1,
-                    "md5": "fa5f7fea601e9368dd68449d9a54c995.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "B elec guitar",
-                    "soundID": -1,
-                    "md5": "81f142d0b00189703d7fe9b1f13f6f87.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "C2 elec guitar",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "3a8ed3129f22cba5b0810bc030d16b5f.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "guitar-electric2-a",
+                    "costumeName": "glass water-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "1fc433b89038f9e16092c9f4d7514cca.svg",
+                    "baseLayerMD5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 38,
-                    "rotationCenterY": 94
+                    "rotationCenterX": 39,
+                    "rotationCenterY": 48
                 },
                 {
-                    "costumeName": "guitar-electric2-b",
+                    "costumeName": "glass water-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "7b843dbc93d4b2ea31fa67cca3d5077c.svg",
+                    "baseLayerMD5": "bc07ce6a2004ac91ce704531a1c526e5.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 38,
-                    "rotationCenterY": 94
+                    "rotationCenterX": 39,
+                    "rotationCenterY": 48
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -99,
-            "scratchY": 17,
+            "scratchX": 43,
+            "scratchY": -10,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5889,107 +5995,258 @@
         }
     },
     {
-        "name": "Gutar-electric1",
-        "md5": "b2b469b9d11fd23bdd671eab94dc58ff.svg",
+        "name": "Glasses",
+        "md5": "5fcf716b53f223bc86b10ab0eca3e162.svg",
         "type": "sprite",
         "tags": [
-            "music",
-            "andrew rae"
+            "things",
+            "fashion"
         ],
         "info": [
             0,
-            2,
-            8
+            1,
+            1
         ],
         "json": {
-            "objName": "Gutar-electric1",
+            "objName": "Glasses",
             "sounds": [
                 {
-                    "soundName": "C elec guitar",
-                    "soundID": -1,
-                    "md5": "0d340de02e14bebaf8dfa0e43eb3f1f9.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "D elec guitar",
-                    "soundID": -1,
-                    "md5": "1b5de9866801eb2f9d4f57c7c3b473f5.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "E elec guitar",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "2e6a6ae3e0f72bf78c74def8130f459a.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
-                },
+                }
+            ],
+            "costumes": [
                 {
-                    "soundName": "F elec guitar",
+                    "costumeName": "glasses",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "5fcf716b53f223bc86b10ab0eca3e162.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 16,
+                    "rotationCenterY": 9
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 65,
+            "scratchY": 6,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Goalie",
+        "md5": "86b0610ea21fdecb99795c5e6d52768c.svg",
+        "type": "sprite",
+        "tags": [
+            "sports",
+            "soccer",
+            "football",
+            "alex eben meyer"
+        ],
+        "info": [
+            0,
+            5,
+            1
+        ],
+        "json": {
+            "objName": "Goalie",
+            "sounds": [
+                {
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "5eb00f15f21f734986aa45156d44478d.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "goalie-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "86b0610ea21fdecb99795c5e6d52768c.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
                 },
                 {
-                    "soundName": "G elec guitar",
-                    "soundID": -1,
-                    "md5": "cd0d0e7dad415b2ffa2ba7a61860eaf8.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
+                    "costumeName": "goalie-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "af3ef5125d187772240a1120e7eb67ac.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
                 },
                 {
-                    "soundName": "A elec guitar",
-                    "soundID": -1,
-                    "md5": "fa5f7fea601e9368dd68449d9a54c995.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
+                    "costumeName": "goalie-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "7c9377cedae11a094d2e77bed3edb884.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
                 },
                 {
-                    "soundName": "B elec guitar",
+                    "costumeName": "goalie-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "bd628034d356d30b0e9b563447471290.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
+                },
+                {
+                    "costumeName": "goalie-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b3f6c4c0be9a0f71e9486dea51e513c3.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -5,
+            "scratchY": 39,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Goblin",
+        "md5": "f10eaedff51f50f0809a7b4b310337fa.svg",
+        "type": "sprite",
+        "tags": [
+            "fantasy",
+            "ipzy",
+            "emotions"
+        ],
+        "info": [
+            0,
+            4,
+            1
+        ],
+        "json": {
+            "objName": "Goblin",
+            "sounds": [
+                {
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "81f142d0b00189703d7fe9b1f13f6f87.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "goblin-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "f10eaedff51f50f0809a7b4b310337fa.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 40,
+                    "rotationCenterY": 80
                 },
                 {
-                    "soundName": "C2 elec guitar",
+                    "costumeName": "goblin-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "71e7c77d89299cd99739b1216fc03a85.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 40,
+                    "rotationCenterY": 80
+                },
+                {
+                    "costumeName": "goblin-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ab0611427d6f9b54d83672cf9e554876.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 40,
+                    "rotationCenterY": 80
+                },
+                {
+                    "costumeName": "goblin-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "87dd413e7a8545bea9b3da208a5d5735.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 40,
+                    "rotationCenterY": 80
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 123,
+            "scratchY": -66,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Gobo",
+        "md5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg",
+        "type": "sprite",
+        "tags": [
+            "fantasy",
+            "drawing",
+            "jenkins",
+            "ganglia"
+        ],
+        "info": [
+            0,
+            3,
+            1
+        ],
+        "json": {
+            "objName": "Gobo",
+            "sounds": [
+                {
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "3a8ed3129f22cba5b0810bc030d16b5f.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "guitar-electric1-a",
+                    "costumeName": "gobo-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "b2b469b9d11fd23bdd671eab94dc58ff.svg",
+                    "baseLayerMD5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 42,
-                    "rotationCenterY": 85
+                    "rotationCenterX": 47,
+                    "rotationCenterY": 55
                 },
                 {
-                    "costumeName": "guitar-electric1-b",
+                    "costumeName": "gobo-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "3632184c19c66a088a99568570d61b13.svg",
+                    "baseLayerMD5": "73e493e4abd5d0954b677b97abcb7116.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 42,
-                    "rotationCenterY": 85
+                    "rotationCenterX": 47,
+                    "rotationCenterY": 55
+                },
+                {
+                    "costumeName": "gobo-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "bc68a6bdf300df7b53d73b38f74c844e.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 47,
+                    "rotationCenterY": 55
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -122,
-            "scratchY": -19,
+            "scratchX": -33,
+            "scratchY": 25,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -5999,11 +6256,11 @@
         }
     },
     {
-        "name": "Hat",
-        "md5": "b3beb1f52d371428d70b65a0c4c5c001.svg",
+        "name": "Green Flag",
+        "md5": "173e20ac537d2c278ed621be3db3fc87.svg",
         "type": "sprite",
         "tags": [
-            "Fashion"
+            "thing"
         ],
         "info": [
             0,
@@ -6011,30 +6268,1310 @@
             1
         ],
         "json": {
-            "objName": "Hat",
+            "objName": "Green Flag",
             "sounds": [
                 {
-                    "soundName": "pop",
-                    "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
-                    "format": ""
-                }
-            ],
-            "costumes": [
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "green flag",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "173e20ac537d2c278ed621be3db3fc87.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 70,
+                    "rotationCenterY": 30
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -36,
+            "scratchY": 39,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Griffin",
+        "md5": "d2ddc25b224ad72240f92e632afc7c69.svg",
+        "type": "sprite",
+        "tags": [
+            "fantasy",
+            "animals",
+            "ipzy",
+            "flying"
+        ],
+        "info": [
+            0,
+            2,
+            1
+        ],
+        "json": {
+            "objName": "Griffin",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "griffin-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "d2ddc25b224ad72240f92e632afc7c69.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 150,
+                    "rotationCenterY": 110
+                },
+                {
+                    "costumeName": "griffin-fly-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ff0795d15b6f3990345f72bc483a3353.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 150,
+                    "rotationCenterY": 110
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -18,
+            "scratchY": -4,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Griffin-flying",
+        "md5": "03d75e0c7c34e8618545a5f4913db4ea.svg",
+        "type": "sprite",
+        "tags": [
+            "fantasy",
+            "animals",
+            "ipzy",
+            "flying"
+        ],
+        "info": [
+            0,
+            2,
+            1
+        ],
+        "json": {
+            "objName": "Griffin-flying",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "griffin-fly-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "03d75e0c7c34e8618545a5f4913db4ea.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 150,
+                    "rotationCenterY": 110
+                },
+                {
+                    "costumeName": "griffin-fly-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ff0795d15b6f3990345f72bc483a3353.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 150,
+                    "rotationCenterY": 110
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -13,
+            "scratchY": 1,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Guitar",
+        "md5": "cb8c2a5e69da7538e1dd73cb7ff4a666.svg",
+        "type": "sprite",
+        "tags": [
+            "music",
+            "andrew rae"
+        ],
+        "info": [
+            0,
+            2,
+            8
+        ],
+        "json": {
+            "objName": "Guitar",
+            "sounds": [
+                {
+                    "soundName": "C guitar",
+                    "soundID": -1,
+                    "md5": "22baa07795a9a524614075cdea543793.wav",
+                    "sampleCount": 44864,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "D guitar",
+                    "soundID": -1,
+                    "md5": "2dbcfae6a55738f94bbb40aa5fcbf7ce.wav",
+                    "sampleCount": 41120,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "E guitar",
+                    "soundID": -1,
+                    "md5": "4b5d1da83e59bf35578324573c991666.wav",
+                    "sampleCount": 38400,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "F guitar",
+                    "soundID": -1,
+                    "md5": "b51d086aeb1921ec405561df52ecbc50.wav",
+                    "sampleCount": 36416,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "G guitar",
+                    "soundID": -1,
+                    "md5": "98a835713ecea2f3ef9f4f442d52ad20.wav",
+                    "sampleCount": 33600,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "A guitar",
+                    "soundID": -1,
+                    "md5": "ee753e87d212d4b2fb650ca660f1e839.wav",
+                    "sampleCount": 31872,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "B guitar",
+                    "soundID": -1,
+                    "md5": "2ae2d67de62df8ca54d638b4ad2466c3.wav",
+                    "sampleCount": 29504,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "C2 guitar",
+                    "soundID": -1,
+                    "md5": "c8d2851bd99d8e0ce6c1f05e4acc7f34.wav",
+                    "sampleCount": 27712,
+                    "rate": 22050,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "guitar-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "cb8c2a5e69da7538e1dd73cb7ff4a666.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 47,
+                    "rotationCenterY": 83
+                },
+                {
+                    "costumeName": "guitar-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "fed44bd1091628c060f45060a84f2885.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 47,
+                    "rotationCenterY": 83
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -150,
+            "scratchY": 9,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Guitar-electric2",
+        "md5": "1fc433b89038f9e16092c9f4d7514cca.svg",
+        "type": "sprite",
+        "tags": [
+            "music",
+            "andrew rae"
+        ],
+        "info": [
+            0,
+            2,
+            8
+        ],
+        "json": {
+            "objName": "Guitar-electric2",
+            "sounds": [
+                {
+                    "soundName": "C elec guitar",
+                    "soundID": -1,
+                    "md5": "0d340de02e14bebaf8dfa0e43eb3f1f9.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "D elec guitar",
+                    "soundID": -1,
+                    "md5": "1b5de9866801eb2f9d4f57c7c3b473f5.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "E elec guitar",
+                    "soundID": -1,
+                    "md5": "2e6a6ae3e0f72bf78c74def8130f459a.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "F elec guitar",
+                    "soundID": -1,
+                    "md5": "5eb00f15f21f734986aa45156d44478d.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "G elec guitar",
+                    "soundID": -1,
+                    "md5": "cd0d0e7dad415b2ffa2ba7a61860eaf8.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "A elec guitar",
+                    "soundID": -1,
+                    "md5": "fa5f7fea601e9368dd68449d9a54c995.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "B elec guitar",
+                    "soundID": -1,
+                    "md5": "81f142d0b00189703d7fe9b1f13f6f87.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "C2 elec guitar",
+                    "soundID": -1,
+                    "md5": "3a8ed3129f22cba5b0810bc030d16b5f.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "guitar-electric2-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "1fc433b89038f9e16092c9f4d7514cca.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 38,
+                    "rotationCenterY": 94
+                },
+                {
+                    "costumeName": "guitar-electric2-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "7b843dbc93d4b2ea31fa67cca3d5077c.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 38,
+                    "rotationCenterY": 94
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -99,
+            "scratchY": 17,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Gutar-electric1",
+        "md5": "b2b469b9d11fd23bdd671eab94dc58ff.svg",
+        "type": "sprite",
+        "tags": [
+            "music",
+            "andrew rae"
+        ],
+        "info": [
+            0,
+            2,
+            8
+        ],
+        "json": {
+            "objName": "Gutar-electric1",
+            "sounds": [
+                {
+                    "soundName": "C elec guitar",
+                    "soundID": -1,
+                    "md5": "0d340de02e14bebaf8dfa0e43eb3f1f9.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "D elec guitar",
+                    "soundID": -1,
+                    "md5": "1b5de9866801eb2f9d4f57c7c3b473f5.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "E elec guitar",
+                    "soundID": -1,
+                    "md5": "2e6a6ae3e0f72bf78c74def8130f459a.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "F elec guitar",
+                    "soundID": -1,
+                    "md5": "5eb00f15f21f734986aa45156d44478d.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "G elec guitar",
+                    "soundID": -1,
+                    "md5": "cd0d0e7dad415b2ffa2ba7a61860eaf8.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "A elec guitar",
+                    "soundID": -1,
+                    "md5": "fa5f7fea601e9368dd68449d9a54c995.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "B elec guitar",
+                    "soundID": -1,
+                    "md5": "81f142d0b00189703d7fe9b1f13f6f87.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "C2 elec guitar",
+                    "soundID": -1,
+                    "md5": "3a8ed3129f22cba5b0810bc030d16b5f.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "guitar-electric1-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b2b469b9d11fd23bdd671eab94dc58ff.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 42,
+                    "rotationCenterY": 85
+                },
+                {
+                    "costumeName": "guitar-electric1-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "3632184c19c66a088a99568570d61b13.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 42,
+                    "rotationCenterY": 85
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -122,
+            "scratchY": -19,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Hannah",
+        "md5": "b983d99560313e38b4b3cd36cbd5f0d1.png",
+        "type": "sprite",
+        "tags": [
+            "people",
+            "sports"
+        ],
+        "info": [
+            0,
+            3,
+            1
+        ],
+        "json": {
+            "objName": "Hannah",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "hannah-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b983d99560313e38b4b3cd36cbd5f0d1.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 138,
+                    "rotationCenterY": 126
+                },
+                {
+                    "costumeName": "hannah-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "d0c3b4b24fbf1152de3ebb68f6b875ae.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 48,
+                    "rotationCenterY": 160
+                },
+                {
+                    "costumeName": "hannah-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "5fdce07935156bbcf943793fa84e826c.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 170,
+                    "rotationCenterY": 130
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 34,
+            "scratchY": 1,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Hare",
+        "md5": "75c2e6085d0eae076ff357b56d5ed5cd.svg",
+        "type": "sprite",
+        "tags": [
+            "animals",
+            "rabbit",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
+            "robert hunter"
+        ],
+        "info": [
+            0,
+            3,
+            1
+        ],
+        "json": {
+            "objName": "Hare",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "hare-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "75c2e6085d0eae076ff357b56d5ed5cd.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 57,
+                    "rotationCenterY": 49
+                },
+                {
+                    "costumeName": "hare-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "fb56d1bef942196c710612906142451b.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 57,
+                    "rotationCenterY": 49
+                },
+                {
+                    "costumeName": "hare-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "8de391ae70e54656f777c0ed53a91e1a.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 57,
+                    "rotationCenterY": 49
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -191,
+            "scratchY": -54,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Hat",
+        "md5": "b3beb1f52d371428d70b65a0c4c5c001.svg",
+        "type": "sprite",
+        "tags": [
+            "Fashion"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Hat",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "Hat",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b3beb1f52d371428d70b65a0c4c5c001.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 52,
+                    "rotationCenterY": 60
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -15,
+            "scratchY": 7,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Hat Beanie",
+        "md5": "3271da33e4108ed08a303c2244739fbf.svg",
+        "type": "sprite",
+        "tags": [
+            "fashion"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Hat Beanie",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "hat beanie",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "3271da33e4108ed08a303c2244739fbf.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 28,
+                    "rotationCenterY": 19
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 40,
+            "scratchY": 22,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Hat Party1",
+        "md5": "70a7f535d8857cf9175492415361c361.svg",
+        "type": "sprite",
+        "tags": [
+            "fashion",
+            "holiday"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Hat Party1",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "partyhat1",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "70a7f535d8857cf9175492415361c361.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 27,
+            "scratchY": 26,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Hat Party2",
+        "md5": "9b7a84fe3e50621752917e4e484a1e2f.svg",
+        "type": "sprite",
+        "tags": [
+            "fashion",
+            "holiday"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Hat Party2",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "hat party2-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "9b7a84fe3e50621752917e4e484a1e2f.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -80,
+            "scratchY": -31,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Hat Winter",
+        "md5": "6c2ee1b97f6ec2b3457a25a3975a2009.svg",
+        "type": "sprite",
+        "tags": [
+            "fashion",
+            "winter"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Hat Winter",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "hat winter",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "6c2ee1b97f6ec2b3457a25a3975a2009.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 26,
+                    "rotationCenterY": 101
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -30,
+            "scratchY": -42,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Hat Wizard",
+        "md5": "581571e8c8f5adeb01565e12b1b77b58.svg",
+        "type": "sprite",
+        "tags": [
+            "fashion",
+            "fantasy"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Hat Wizard",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "hat wizard",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "581571e8c8f5adeb01565e12b1b77b58.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 69
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -7,
+            "scratchY": 6,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Hatchling",
+        "md5": "fb9de507b6d95e96cb0df68e401dfd8f.svg",
+        "type": "sprite",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            0,
+            3,
+            1
+        ],
+        "json": {
+            "objName": "Hatchling",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "hatchling-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "fb9de507b6d95e96cb0df68e401dfd8f.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 14,
+                    "rotationCenterY": 23
+                },
+                {
+                    "costumeName": "hatchling-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e504303f791a65274d740a20acbac606.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 15,
+                    "rotationCenterY": 35
+                },
+                {
+                    "costumeName": "hatchling-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "6f9a243d84fbe7ed9a49e8ef9fb7d83c.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 31,
+                    "rotationCenterY": 36
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -174,
+            "scratchY": -85,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Headband",
+        "md5": "237f77cb3e41c70f714c6d2aa4d38ea1.svg",
+        "type": "sprite",
+        "tags": [
+            "fashion",
+            "antennae"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Headband",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "headband",
+                    "baseLayerID": 0,
+                    "baseLayerMD5": "237f77cb3e41c70f714c6d2aa4d38ea1.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 53,
+                    "rotationCenterY": 43
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 86,
+            "scratchY": -38,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Heart",
+        "md5": "6e79e087c866a016f99ee482e1aeba47.svg",
+        "type": "sprite",
+        "tags": [
+            "holiday",
+            "red",
+            "shape",
+            "love",
+            "emotions"
+        ],
+        "info": [
+            0,
+            2,
+            1
+        ],
+        "json": {
+            "objName": "Heart",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "heart red",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "6e79e087c866a016f99ee482e1aeba47.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 65,
+                    "rotationCenterY": 56
+                },
+                {
+                    "costumeName": "heart purple",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b15362bb6b02a59e364db9081ccf19aa.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 66,
+                    "rotationCenterY": 62
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -31,
+            "scratchY": 40,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Heart Candy",
+        "md5": "d448acd247f10f32bef7823cd433f928.svg",
+        "type": "sprite",
+        "tags": [
+            "food.sweethearts"
+        ],
+        "info": [
+            0,
+            4,
+            1
+        ],
+        "json": {
+            "objName": "Heart Candy",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "heart love it",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "d448acd247f10f32bef7823cd433f928.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 58,
+                    "rotationCenterY": 61
+                },
+                {
+                    "costumeName": "heart code",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "497c5df9e02467202ff93096dccaf91f.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 58,
+                    "rotationCenterY": 61
+                },
+                {
+                    "costumeName": "heart sweet",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a39d78d33b051e8b12a4b2a10d77b249.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 58,
+                    "rotationCenterY": 61
+                },
+                {
+                    "costumeName": "heart smile",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "74a8f75d139d330b715787edbbacd83d.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 58,
+                    "rotationCenterY": 61
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -24,
+            "scratchY": -4,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Heart Face",
+        "md5": "4ab84263da32069cf97cc0fa52729a0d.svg",
+        "type": "sprite",
+        "tags": [
+            "emotions"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Heart Face",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "heart face",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "4ab84263da32069cf97cc0fa52729a0d.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 59,
+                    "rotationCenterY": 52
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 50,
+            "scratchY": 39,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Hedgehog",
+        "md5": "32416e6b2ef8e45fb5fd10778c1b9a9f.svg",
+        "type": "sprite",
+        "tags": [
+            "animals",
+            "daria skrybchencko",
+            "mammals",
+            "spikey"
+        ],
+        "info": [
+            0,
+            5,
+            1
+        ],
+        "json": {
+            "objName": "Hedgehog",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "hedgehog-a",
+                    "baseLayerID": 0,
+                    "baseLayerMD5": "32416e6b2ef8e45fb5fd10778c1b9a9f.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 71,
+                    "rotationCenterY": 56
+                },
+                {
+                    "costumeName": "hedgehog-b",
+                    "baseLayerID": 1,
+                    "baseLayerMD5": "4d3ccc06660e07b55bd38246e1f82f7f.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 71,
+                    "rotationCenterY": 56
+                },
+                {
+                    "costumeName": "hedgehog-c",
+                    "baseLayerID": 2,
+                    "baseLayerMD5": "2446f79c0f553594cfbcdbe6b1e459a5.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 71,
+                    "rotationCenterY": 56
+                },
+                {
+                    "costumeName": "hedgehog-d",
+                    "baseLayerID": 3,
+                    "baseLayerMD5": "bdb7c8e86125092da0c4848d1ffd901c.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 71,
+                    "rotationCenterY": 56
+                },
+                {
+                    "costumeName": "hedgehog-e",
+                    "baseLayerID": 4,
+                    "baseLayerMD5": "78a0e3789f6d778e20f9bf3d308a0b19.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 61,
+                    "rotationCenterY": 45
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -134,
+            "scratchY": -77,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Hen",
+        "md5": "795ed34983a70c8690fe6c8f4a47a935.svg",
+        "type": "sprite",
+        "tags": [
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
+        ],
+        "info": [
+            0,
+            4,
+            1
+        ],
+        "json": {
+            "objName": "Hen",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "hen-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "795ed34983a70c8690fe6c8f4a47a935.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 45,
+                    "rotationCenterY": 43
+                },
+                {
+                    "costumeName": "hen-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "26528a6f0318a2d2294ef7071409be12.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 45,
+                    "rotationCenterY": 43
+                },
+                {
+                    "costumeName": "hen-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "7492692df7776c905fdbd4382696afee.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 35,
+                    "rotationCenterY": 28
+                },
                 {
-                    "costumeName": "Hat",
+                    "costumeName": "hen-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "b3beb1f52d371428d70b65a0c4c5c001.svg",
+                    "baseLayerMD5": "4bf0cb5453273d0f75db3cd0cd45ac72.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 52,
-                    "rotationCenterY": 60
+                    "rotationCenterX": 45,
+                    "rotationCenterY": 43
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -15,
-            "scratchY": 7,
+            "scratchX": -18,
+            "scratchY": -16,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6044,42 +7581,57 @@
         }
     },
     {
-        "name": "Hat Beanie",
-        "md5": "3271da33e4108ed08a303c2244739fbf.svg",
+        "name": "Hippo1",
+        "md5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg",
         "type": "sprite",
         "tags": [
-            "fashion"
+            "animals",
+            "mammals",
+            "flying",
+            "fantasy",
+            "insect",
+            "pachydermata",
+            "snortyboys",
+            "flappers"
         ],
         "info": [
             0,
-            1,
+            2,
             1
         ],
         "json": {
-            "objName": "Hat Beanie",
+            "objName": "Hippo1",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "meow",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
+                    "md5": "83c36d806dc92327b9e7049a565c6bff.wav",
+                    "sampleCount": 18688,
+                    "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "hat beanie",
+                    "costumeName": "hippo1-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "3271da33e4108ed08a303c2244739fbf.svg",
+                    "baseLayerMD5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 28,
-                    "rotationCenterY": 19
+                    "rotationCenterX": 69,
+                    "rotationCenterY": 65
+                },
+                {
+                    "costumeName": "hippo1-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e65ed93bbb9cccf698fc7e774ab609a6.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 69,
+                    "rotationCenterY": 68
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 40,
-            "scratchY": 22,
+            "scratchX": 59,
+            "scratchY": 37,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6089,12 +7641,12 @@
         }
     },
     {
-        "name": "Hat Party1",
-        "md5": "70a7f535d8857cf9175492415361c361.svg",
+        "name": "Home Button",
+        "md5": "1bac530a0701a8fc88bb0802ae6787a3.svg",
         "type": "sprite",
         "tags": [
-            "fashion",
-            "holiday"
+            "ui",
+            "thing"
         ],
         "info": [
             0,
@@ -6102,7 +7654,7 @@
             1
         ],
         "json": {
-            "objName": "Hat Party1",
+            "objName": "Home Button",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -6115,17 +7667,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "partyhat1",
+                    "costumeName": "home button",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "70a7f535d8857cf9175492415361c361.svg",
+                    "baseLayerMD5": "1bac530a0701a8fc88bb0802ae6787a3.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 72,
+                    "rotationCenterY": 72
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 27,
-            "scratchY": 26,
+            "scratchX": 42,
+            "scratchY": 42,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6135,43 +7687,63 @@
         }
     },
     {
-        "name": "Hat Party2",
-        "md5": "9b7a84fe3e50621752917e4e484a1e2f.svg",
+        "name": "Horse",
+        "md5": "83a698304f00242a34ddd63b1525373b.svg",
         "type": "sprite",
         "tags": [
-            "fashion",
-            "holiday"
+            "animals",
+            "hoof",
+            "hooves",
+            "mammal",
+            "racing",
+            "saddle"
         ],
         "info": [
             0,
-            1,
-            1
+            2,
+            2
         ],
         "json": {
-            "objName": "Hat Party2",
+            "objName": "Horse",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "horse",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
+                    "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav",
+                    "sampleCount": 14464,
+                    "rate": 11025,
+                    "format": ""
+                },
+                {
+                    "soundName": "horse gallop",
+                    "soundID": -1,
+                    "md5": "058a34b5fb8b57178b5322d994b6b8c8.wav",
+                    "sampleCount": 38336,
                     "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "hat party2-a",
+                    "costumeName": "horse-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "9b7a84fe3e50621752917e4e484a1e2f.svg",
+                    "baseLayerMD5": "83a698304f00242a34ddd63b1525373b.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 119,
+                    "rotationCenterY": 83
+                },
+                {
+                    "costumeName": "horse-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "2e7d212692b46b049a9ebc1224edd990.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 103,
+                    "rotationCenterY": 97
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -80,
-            "scratchY": -31,
+            "scratchX": -4,
+            "scratchY": -26,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6181,20 +7753,19 @@
         }
     },
     {
-        "name": "Hat Winter",
-        "md5": "6c2ee1b97f6ec2b3457a25a3975a2009.svg",
+        "name": "Jaime",
+        "md5": "3ddc912edef87ae29121f57294fa0cb5.png",
         "type": "sprite",
         "tags": [
-            "fashion",
-            "winter"
+            "people"
         ],
         "info": [
             0,
-            1,
+            7,
             1
         ],
         "json": {
-            "objName": "Hat Winter",
+            "objName": "Jaime",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -6207,17 +7778,65 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "hat winter",
+                    "costumeName": "jaime-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "6c2ee1b97f6ec2b3457a25a3975a2009.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 26,
-                    "rotationCenterY": 101
+                    "baseLayerMD5": "3ddc912edef87ae29121f57294fa0cb5.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 154
+                },
+                {
+                    "costumeName": "jaime-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "5a683f4536abca0f83a77bc341df4c9a.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 154
+                },
+                {
+                    "costumeName": "jaime walking-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "d6cc9814f7a6640e4c2b1a4276987dc5.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 106,
+                    "rotationCenterY": 172
+                },
+                {
+                    "costumeName": "jaime walking-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "7fb579a98d6db257f1b16109d3c4609a.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 52,
+                    "rotationCenterY": 176
+                },
+                {
+                    "costumeName": "jaime walking-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "5883bdefba451aaeac8d77c798d41eb0.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 88,
+                    "rotationCenterY": 170
+                },
+                {
+                    "costumeName": "jaime walking-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "4b9d2162e30dbb924840575ed35fddb0.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 46,
+                    "rotationCenterY": 174
+                },
+                {
+                    "costumeName": "jaime walking-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "63e56d28cc3e3d9b735e1f1d51248cc0.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 84,
+                    "rotationCenterY": 172
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -30,
-            "scratchY": -42,
+            "scratchX": 51,
+            "scratchY": 31,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6227,20 +7846,22 @@
         }
     },
     {
-        "name": "Hat Wizard",
-        "md5": "581571e8c8f5adeb01565e12b1b77b58.svg",
+        "name": "Jamie",
+        "md5": "90f9166fe6500d0c0caad8b1964d6b74.svg",
         "type": "sprite",
         "tags": [
-            "fashion",
-            "fantasy"
+            "sports",
+            "basketball",
+            "people",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            1,
+            4,
             1
         ],
         "json": {
-            "objName": "Hat Wizard",
+            "objName": "Jamie",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -6253,17 +7874,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "hat wizard",
+                    "costumeName": "jamie-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "581571e8c8f5adeb01565e12b1b77b58.svg",
+                    "baseLayerMD5": "90f9166fe6500d0c0caad8b1964d6b74.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 69
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 105
+                },
+                {
+                    "costumeName": "jamie-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "c3d96ef7e99440c2fa76effce1235d3f.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 105
+                },
+                {
+                    "costumeName": "jamie-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "1fb8b9ca79f2c0a327913bd647b53fe5.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 105
+                },
+                {
+                    "costumeName": "jamie-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "4adb87e6123161fcaf02f7ac022a5757.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 105
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -7,
-            "scratchY": 6,
+            "scratchX": 56,
+            "scratchY": 37,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6273,20 +7918,21 @@
         }
     },
     {
-        "name": "Headband",
-        "md5": "961148d1605a1bd8ce80ed8d39e831c2.svg",
+        "name": "Jar",
+        "md5": "73784b267083733e08bcf06aa7d6536a.svg",
         "type": "sprite",
         "tags": [
-            "fashion",
-            "antennae"
+            "food",
+            "ipzy",
+            "things"
         ],
         "info": [
             0,
-            1,
+            2,
             1
         ],
         "json": {
-            "objName": "Headband",
+            "objName": "Jar",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -6299,17 +7945,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "headband",
+                    "costumeName": "jar-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "961148d1605a1bd8ce80ed8d39e831c2.svg",
+                    "baseLayerMD5": "73784b267083733e08bcf06aa7d6536a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 53,
-                    "rotationCenterY": 43
+                    "rotationCenterX": 20,
+                    "rotationCenterY": 25
+                },
+                {
+                    "costumeName": "jar-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a37eb72115966a75bc1bf521deeccc0c.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 20,
+                    "rotationCenterY": 25
                 }
             ],
-            "currentCostumeIndex": 0,
-            "scratchX": 86,
-            "scratchY": -38,
+            "currentCostumeIndex": 0,
+            "scratchX": 9,
+            "scratchY": -11,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6319,15 +7973,11 @@
         }
     },
     {
-        "name": "Heart",
-        "md5": "6e79e087c866a016f99ee482e1aeba47.svg",
+        "name": "Jeans",
+        "md5": "4e283da8c59bcbb9803bdc0016b14c21.svg",
         "type": "sprite",
         "tags": [
-            "holiday",
-            "red",
-            "shape",
-            "love",
-            "emotions"
+            "fashion"
         ],
         "info": [
             0,
@@ -6335,7 +7985,7 @@
             1
         ],
         "json": {
-            "objName": "Heart",
+            "objName": "Jeans",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -6348,25 +7998,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "heart red",
+                    "costumeName": "jeans-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "6e79e087c866a016f99ee482e1aeba47.svg",
+                    "baseLayerMD5": "4e283da8c59bcbb9803bdc0016b14c21.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 65,
-                    "rotationCenterY": 56
+                    "rotationCenterX": 22,
+                    "rotationCenterY": 25
                 },
                 {
-                    "costumeName": "heart purple",
+                    "costumeName": "jeans-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "b15362bb6b02a59e364db9081ccf19aa.svg",
+                    "baseLayerMD5": "01732aa03a48482093fbed3ea402c4a9.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 66,
-                    "rotationCenterY": 62
+                    "rotationCenterX": 22,
+                    "rotationCenterY": 25
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -31,
-            "scratchY": 40,
+            "scratchX": 69,
+            "scratchY": 26,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6376,11 +8026,16 @@
         }
     },
     {
-        "name": "Heart Candy",
-        "md5": "d448acd247f10f32bef7823cd433f928.svg",
+        "name": "Jellyfish",
+        "md5": "9e6563e417350af3094c2ed02b9b0bbd.svg",
         "type": "sprite",
         "tags": [
-            "food.sweethearts"
+            "animals",
+            "ocean",
+            "sea",
+            "underwater",
+            "emotions",
+            "daria skrybchencko"
         ],
         "info": [
             0,
@@ -6388,7 +8043,7 @@
             1
         ],
         "json": {
-            "objName": "Heart Candy",
+            "objName": "Jellyfish",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -6401,41 +8056,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "heart love it",
+                    "costumeName": "jellyfish-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "d448acd247f10f32bef7823cd433f928.svg",
+                    "baseLayerMD5": "9e6563e417350af3094c2ed02b9b0bbd.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 58,
-                    "rotationCenterY": 61
+                    "rotationCenterX": 99,
+                    "rotationCenterY": 86
                 },
                 {
-                    "costumeName": "heart code",
+                    "costumeName": "jellyfish-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "497c5df9e02467202ff93096dccaf91f.svg",
+                    "baseLayerMD5": "31a42fad0891f1298c522a6d5008930a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 58,
-                    "rotationCenterY": 61
+                    "rotationCenterX": 99,
+                    "rotationCenterY": 86
                 },
                 {
-                    "costumeName": "heart sweet",
+                    "costumeName": "jellyfish-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "a39d78d33b051e8b12a4b2a10d77b249.svg",
+                    "baseLayerMD5": "697262d9ed04467bae52cca786c36bd3.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 58,
-                    "rotationCenterY": 61
+                    "rotationCenterX": 99,
+                    "rotationCenterY": 86
                 },
                 {
-                    "costumeName": "heart smile",
+                    "costumeName": "jellyfish-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "74a8f75d139d330b715787edbbacd83d.svg",
+                    "baseLayerMD5": "6a949493aaf62954f1c74f8369d494c4.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 58,
-                    "rotationCenterY": 61
+                    "rotationCenterX": 99,
+                    "rotationCenterY": 86
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -24,
-            "scratchY": -4,
+            "scratchX": -163,
+            "scratchY": 99,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6445,19 +8100,23 @@
         }
     },
     {
-        "name": "Heart Face",
-        "md5": "4ab84263da32069cf97cc0fa52729a0d.svg",
+        "name": "Jordyn",
+        "md5": "8dd2a2abbb8e639da8576b6e72ef9e59.svg",
         "type": "sprite",
         "tags": [
-            "emotions"
+            "sports",
+            "soccer",
+            "football",
+            "people",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            1,
+            4,
             1
         ],
         "json": {
-            "objName": "Heart Face",
+            "objName": "Jordyn",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -6470,17 +8129,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "heart face",
+                    "costumeName": "jordyn-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "4ab84263da32069cf97cc0fa52729a0d.svg",
+                    "baseLayerMD5": "8dd2a2abbb8e639da8576b6e72ef9e59.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 59,
-                    "rotationCenterY": 52
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
+                },
+                {
+                    "costumeName": "jordyn-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "9665f543147961551d8dc6f612d9cc41.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
+                },
+                {
+                    "costumeName": "jordyn-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ec8c2286070c77ebd9dd40c96eaae3fc.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
+                },
+                {
+                    "costumeName": "jordyn-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "1f9ed7f29800f31ce2ee53196143a3c8.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 50,
-            "scratchY": 39,
+            "scratchX": -164,
+            "scratchY": -41,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6490,77 +8173,139 @@
         }
     },
     {
-        "name": "Hedgehog",
-        "md5": "32416e6b2ef8e45fb5fd10778c1b9a9f.svg",
+        "name": "Jouvi Dance",
+        "md5": "e10d129d9be2147bc7d284e281d88e9a.png",
         "type": "sprite",
         "tags": [
-            "animals",
-            "daria skrybchencko",
-            "mammals",
-            "spikey"
+            "people",
+            "dance"
         ],
         "info": [
             0,
-            5,
+            13,
             1
         ],
         "json": {
-            "objName": "Hedgehog",
+            "objName": "Jouvi Dance",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "dance celebrate2",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
-                    "format": ""
+                    "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav",
+                    "sampleCount": 176401,
+                    "rate": 22050,
+                    "format": "adpcm"
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "hedgehog-a",
+                    "costumeName": "jo stance",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e10d129d9be2147bc7d284e281d88e9a.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 94,
+                    "rotationCenterY": 240
+                },
+                {
+                    "costumeName": "jo top stand",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "0ed4a09c41871d150c51119c1bceded2.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 260
+                },
+                {
+                    "costumeName": "jo top R leg",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "efaa8eb6c8cf7dc35d4d37d546ebd333.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 218,
+                    "rotationCenterY": 262
+                },
+                {
+                    "costumeName": "jo top L leg",
                     "baseLayerID": 0,
-                    "baseLayerMD5": "32416e6b2ef8e45fb5fd10778c1b9a9f.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 71,
-                    "rotationCenterY": 56
+                    "baseLayerMD5": "a12f40b18067bb31746f9cf461de88aa.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 208,
+                    "rotationCenterY": 268
                 },
                 {
-                    "costumeName": "hedgehog-b",
+                    "costumeName": "jo top R cross",
                     "baseLayerID": 1,
-                    "baseLayerMD5": "4d3ccc06660e07b55bd38246e1f82f7f.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 71,
-                    "rotationCenterY": 56
+                    "baseLayerMD5": "c2d5519e8a0f2214ff757117038c28dc.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 144,
+                    "rotationCenterY": 270
                 },
                 {
-                    "costumeName": "hedgehog-c",
+                    "costumeName": "jo top L cross",
                     "baseLayerID": 2,
-                    "baseLayerMD5": "2446f79c0f553594cfbcdbe6b1e459a5.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 71,
-                    "rotationCenterY": 56
+                    "baseLayerMD5": "2e2a6534d33883fdd2f8471a1adbebb7.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 84,
+                    "rotationCenterY": 268
                 },
                 {
-                    "costumeName": "hedgehog-d",
+                    "costumeName": "jo pop front",
                     "baseLayerID": 3,
-                    "baseLayerMD5": "bdb7c8e86125092da0c4848d1ffd901c.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 71,
-                    "rotationCenterY": 56
+                    "baseLayerMD5": "3d3ea804243800981acabc7caba10939.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 70,
+                    "rotationCenterY": 228
                 },
                 {
-                    "costumeName": "hedgehog-e",
+                    "costumeName": "jo pop down",
                     "baseLayerID": 4,
-                    "baseLayerMD5": "78a0e3789f6d778e20f9bf3d308a0b19.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 61,
-                    "rotationCenterY": 45
+                    "baseLayerMD5": "a55fbb529c10f70bcb374aef8a63571b.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 74
+                },
+                {
+                    "costumeName": "jo pop left",
+                    "baseLayerID": 5,
+                    "baseLayerMD5": "ea812b4c2b2405aa2b73158023298f71.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 196,
+                    "rotationCenterY": 226
+                },
+                {
+                    "costumeName": "jo pop right",
+                    "baseLayerID": 6,
+                    "baseLayerMD5": "01dd2f553c7262329ebaba2516e3a2b1.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 66,
+                    "rotationCenterY": 242
+                },
+                {
+                    "costumeName": "jo pop L arm",
+                    "baseLayerID": 7,
+                    "baseLayerMD5": "a9fbc01a4124d555da12630312e46197.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 108,
+                    "rotationCenterY": 258
+                },
+                {
+                    "costumeName": "jo pop stand",
+                    "baseLayerID": 8,
+                    "baseLayerMD5": "75ee2383fd83992b401c8a0730521d94.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 78,
+                    "rotationCenterY": 262
+                },
+                {
+                    "costumeName": "jo pop R arm",
+                    "baseLayerID": 9,
+                    "baseLayerMD5": "a35a3bbc4e21ce2f5de940adb7017fa6.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 108,
+                    "rotationCenterY": 260
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -134,
-            "scratchY": -77,
+            "scratchX": -58,
+            "scratchY": -27,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6570,18 +8315,11 @@
         }
     },
     {
-        "name": "Hippo1",
-        "md5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg",
+        "name": "Kai",
+        "md5": "6e007fde15e49c66ee7996561f80b452.png",
         "type": "sprite",
         "tags": [
-            "animals",
-            "mammals",
-            "flying",
-            "fantasy",
-            "insect",
-            "pachydermata",
-            "snortyboys",
-            "flappers"
+            "people"
         ],
         "info": [
             0,
@@ -6589,38 +8327,38 @@
             1
         ],
         "json": {
-            "objName": "Hippo1",
+            "objName": "Kai",
             "sounds": [
                 {
-                    "soundName": "meow",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "83c36d806dc92327b9e7049a565c6bff.wav",
-                    "sampleCount": 18688,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "hippo1-a",
+                    "costumeName": "kai-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 69,
-                    "rotationCenterY": 65
+                    "baseLayerMD5": "6e007fde15e49c66ee7996561f80b452.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 160
                 },
                 {
-                    "costumeName": "hippo1-b",
+                    "costumeName": "kai-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "e65ed93bbb9cccf698fc7e774ab609a6.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 69,
-                    "rotationCenterY": 68
+                    "baseLayerMD5": "c1e1149f6d7e308e3e4eba14ccc8a751.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 158
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 59,
-            "scratchY": 37,
+            "scratchX": 57,
+            "scratchY": 47,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6630,12 +8368,12 @@
         }
     },
     {
-        "name": "Home Button",
-        "md5": "1bac530a0701a8fc88bb0802ae6787a3.svg",
+        "name": "Key",
+        "md5": "af35300cef35803e11f4ed744dc5e818.svg",
         "type": "sprite",
         "tags": [
-            "ui",
-            "thing"
+            "thing",
+            "fantasy"
         ],
         "info": [
             0,
@@ -6643,7 +8381,7 @@
             1
         ],
         "json": {
-            "objName": "Home Button",
+            "objName": "Key",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -6656,17 +8394,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "home button",
+                    "costumeName": "key",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "1bac530a0701a8fc88bb0802ae6787a3.svg",
+                    "baseLayerMD5": "af35300cef35803e11f4ed744dc5e818.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 72,
-                    "rotationCenterY": 72
+                    "rotationCenterX": 42,
+                    "rotationCenterY": 27
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 42,
-            "scratchY": 42,
+            "scratchX": -14,
+            "scratchY": 0,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6676,63 +8414,107 @@
         }
     },
     {
-        "name": "Horse1",
-        "md5": "32f4d80477cd070cb0848e555d374060.svg",
+        "name": "Keyboard",
+        "md5": "c67d180e964926b6393ac14781541b39.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "hoof",
-            "hooves",
-            "mammal",
-            "racing",
-            "saddle"
+            "music",
+            "andrew rae"
         ],
         "info": [
             0,
             2,
-            2
+            8
         ],
         "json": {
-            "objName": "Horse1",
+            "objName": "Keyboard",
             "sounds": [
                 {
-                    "soundName": "horse",
+                    "soundName": "C elec piano",
                     "soundID": -1,
-                    "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav",
-                    "sampleCount": 14464,
-                    "rate": 11025,
+                    "md5": "8366ee963cc57ad24a8a35a26f722c2b.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
                     "format": ""
                 },
                 {
-                    "soundName": "horse gallop",
+                    "soundName": "D elec piano",
                     "soundID": -1,
-                    "md5": "058a34b5fb8b57178b5322d994b6b8c8.wav",
-                    "sampleCount": 38336,
-                    "rate": 11025,
+                    "md5": "835f136ca8d346a17b4d4baf8405be37.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "E elec piano",
+                    "soundID": -1,
+                    "md5": "ab3c198f8e36efff14f0a5bad35fa3cd.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "F elec piano",
+                    "soundID": -1,
+                    "md5": "dc5e368fc0d0dad1da609bfc3e29aa15.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "G elec piano",
+                    "soundID": -1,
+                    "md5": "39525f6545d62a95d05153f92d63301a.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "A elec piano",
+                    "soundID": -1,
+                    "md5": "0cfa8e84d6a5cd63afa31d541625a9ef.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "B elec piano",
+                    "soundID": -1,
+                    "md5": "9cc77167419f228503dd57fddaa5b2a6.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "C2 elec piano",
+                    "soundID": -1,
+                    "md5": "366c7edbd4dd5cca68bf62902999bd66.wav",
+                    "sampleCount": 44100,
+                    "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "horse1-a",
+                    "costumeName": "keyboard-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "32f4d80477cd070cb0848e555d374060.svg",
+                    "baseLayerMD5": "c67d180e964926b6393ac14781541b39.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 119,
-                    "rotationCenterY": 83
+                    "rotationCenterX": 72,
+                    "rotationCenterY": 68
                 },
                 {
-                    "costumeName": "horse1-b",
+                    "costumeName": "keyboard-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "ffa6431c5ef2a4e975ecffacdb0efea7.svg",
+                    "baseLayerMD5": "dbaf62b33de45093c3c7d13b5d49d637.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 103,
-                    "rotationCenterY": 97
+                    "rotationCenterX": 72,
+                    "rotationCenterY": 68
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -4,
-            "scratchY": -26,
+            "scratchX": 135,
+            "scratchY": -90,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6742,22 +8524,21 @@
         }
     },
     {
-        "name": "Jamie",
-        "md5": "90f9166fe6500d0c0caad8b1964d6b74.svg",
+        "name": "Kiran",
+        "md5": "9de23c4a7a7fbb67136b539241346854.svg",
         "type": "sprite",
         "tags": [
-            "sports",
-            "basketball",
+            "space",
             "people",
-            "alex eben meyer"
+            "wren mcdonald"
         ],
         "info": [
             0,
-            4,
+            6,
             1
         ],
         "json": {
-            "objName": "Jamie",
+            "objName": "Kiran",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -6770,41 +8551,57 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "jamie-a",
-                    "baseLayerID": 8,
-                    "baseLayerMD5": "90f9166fe6500d0c0caad8b1964d6b74.svg",
+                    "costumeName": "kiran-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "9de23c4a7a7fbb67136b539241346854.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 105
+                    "rotationCenterX": 67,
+                    "rotationCenterY": 95
                 },
                 {
-                    "costumeName": "jamie-b",
-                    "baseLayerID": 9,
-                    "baseLayerMD5": "c3d96ef7e99440c2fa76effce1235d3f.svg",
+                    "costumeName": "kiran-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "f1e74f3c02333e9e2068e8baf4e77aa0.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 105
+                    "rotationCenterX": 67,
+                    "rotationCenterY": 95
                 },
                 {
-                    "costumeName": "jamie-c",
-                    "baseLayerID": 10,
-                    "baseLayerMD5": "1fb8b9ca79f2c0a327913bd647b53fe5.svg",
+                    "costumeName": "kiran-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e2482cf509c312935f08be0e2e2c9d84.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 105
+                    "rotationCenterX": 67,
+                    "rotationCenterY": 95
                 },
                 {
-                    "costumeName": "jamie-d",
-                    "baseLayerID": 11,
-                    "baseLayerMD5": "4adb87e6123161fcaf02f7ac022a5757.svg",
+                    "costumeName": "kiran-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "569e736b519199efddfbae2572f7e92b.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 105
+                    "rotationCenterX": 67,
+                    "rotationCenterY": 95
+                },
+                {
+                    "costumeName": "kiran-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "2261bed0f2cc819def17969158297b4f.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 77,
+                    "rotationCenterY": 95
+                },
+                {
+                    "costumeName": "kiran-f",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "d7f44adb3dc7906b9dfb3599a028e0d6.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 62,
+                    "rotationCenterY": 94
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 56,
-            "scratchY": 37,
+            "scratchX": 57,
+            "scratchY": -42,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6814,21 +8611,21 @@
         }
     },
     {
-        "name": "Jar",
-        "md5": "73784b267083733e08bcf06aa7d6536a.svg",
+        "name": "Knight",
+        "md5": "f2c5e8bc24d001b81566879dbf2f1a13.svg",
         "type": "sprite",
         "tags": [
-            "food",
-            "ipzy",
-            "things"
+            "people",
+            "castle",
+            "armor"
         ],
         "info": [
             0,
-            2,
+            1,
             1
         ],
         "json": {
-            "objName": "Jar",
+            "objName": "Knight",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -6841,25 +8638,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "jar-a",
-                    "baseLayerID": 33,
-                    "baseLayerMD5": "73784b267083733e08bcf06aa7d6536a.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 20,
-                    "rotationCenterY": 25
-                },
-                {
-                    "costumeName": "jar-b",
-                    "baseLayerID": 34,
-                    "baseLayerMD5": "a37eb72115966a75bc1bf521deeccc0c.svg",
+                    "costumeName": "knight",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "f2c5e8bc24d001b81566879dbf2f1a13.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 20,
-                    "rotationCenterY": 25
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 9,
-            "scratchY": -11,
+            "scratchX": 90,
+            "scratchY": -18,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6869,50 +8658,139 @@
         }
     },
     {
-        "name": "Jeans",
-        "md5": "4e283da8c59bcbb9803bdc0016b14c21.svg",
+        "name": "LB Dance",
+        "md5": "9d64910e84c39660b19ca4ca8b45e2be.png",
         "type": "sprite",
         "tags": [
-            "fashion"
+            "people",
+            "dance"
         ],
         "info": [
             0,
-            2,
+            13,
             1
         ],
         "json": {
-            "objName": "Jeans",
+            "objName": "LB Dance",
             "sounds": [
                 {
-                    "soundName": "pop",
-                    "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
-                    "format": ""
-                }
-            ],
-            "costumes": [
+                    "soundName": "dance celebrate",
+                    "soundID": -1,
+                    "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav",
+                    "sampleCount": 176401,
+                    "rate": 22050,
+                    "format": "adpcm"
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "lb stance",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "9d64910e84c39660b19ca4ca8b45e2be.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 54,
+                    "rotationCenterY": 244
+                },
+                {
+                    "costumeName": "lb top stand",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e68d899e178309ff3eae3e1de8a8ec28.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 70,
+                    "rotationCenterY": 248
+                },
+                {
+                    "costumeName": "lb top R leg",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "79ca528d13ffb557a236f0a35a0eb486.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 244,
+                    "rotationCenterY": 250
+                },
+                {
+                    "costumeName": "lb top L leg",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "63d099e94aa8a973dcfa4c5d8b4a3e7a.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 234,
+                    "rotationCenterY": 286
+                },
+                {
+                    "costumeName": "lb top L cross",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "645d6e2674452009df7a9a844a604791.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 148,
+                    "rotationCenterY": 258
+                },
+                {
+                    "costumeName": "lb top R cross",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "4423159d81378ada5ffd7f053d7ef471.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 174,
+                    "rotationCenterY": 256
+                },
+                {
+                    "costumeName": "lb pop front",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "cdd52259075b75628001672d375e4985.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 66,
+                    "rotationCenterY": 272
+                },
+                {
+                    "costumeName": "lb pop down",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "563f86443cb102b9241cebb62eb2d81a.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 56,
+                    "rotationCenterY": 90
+                },
+                {
+                    "costumeName": "lb pop left",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "525285312925e1e6b4e237a119b61305.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 198,
+                    "rotationCenterY": 266
+                },
                 {
-                    "costumeName": "jeans-a",
+                    "costumeName": "lb pop right",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "4e283da8c59bcbb9803bdc0016b14c21.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 22,
-                    "rotationCenterY": 25
+                    "baseLayerMD5": "0a2461b3b9a4b8603e75565d78b1d4d7.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 264
                 },
                 {
-                    "costumeName": "jeans-b",
+                    "costumeName": "lb pop L arm",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "01732aa03a48482093fbed3ea402c4a9.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 22,
-                    "rotationCenterY": 25
+                    "baseLayerMD5": "b508808c087adb55ce156f5cfbdac61b.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 100,
+                    "rotationCenterY": 262
+                },
+                {
+                    "costumeName": "lb pop stand",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "5f176ef763be18f7c342dc2e2de7bf16.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 66,
+                    "rotationCenterY": 268
+                },
+                {
+                    "costumeName": "lb pop R arm",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "0725440743391e7c622bb5df6a94e1d4.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 78,
+                    "rotationCenterY": 258
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 69,
-            "scratchY": 26,
+            "scratchX": 12,
+            "scratchY": 17,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6922,24 +8800,22 @@
         }
     },
     {
-        "name": "Jellyfish",
-        "md5": "9e6563e417350af3094c2ed02b9b0bbd.svg",
+        "name": "Ladybug1",
+        "md5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg",
         "type": "sprite",
         "tags": [
             "animals",
-            "ocean",
-            "sea",
-            "underwater",
-            "emotions",
-            "daria skrybchencko"
+            "insect",
+            "bug",
+            "antennae"
         ],
         "info": [
             0,
-            4,
+            1,
             1
         ],
         "json": {
-            "objName": "Jellyfish",
+            "objName": "Ladybug1",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -6952,41 +8828,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "jellyfish-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "9e6563e417350af3094c2ed02b9b0bbd.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 99,
-                    "rotationCenterY": 86
-                },
-                {
-                    "costumeName": "jellyfish-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "31a42fad0891f1298c522a6d5008930a.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 99,
-                    "rotationCenterY": 86
-                },
-                {
-                    "costumeName": "jellyfish-c",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "697262d9ed04467bae52cca786c36bd3.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 99,
-                    "rotationCenterY": 86
-                },
-                {
-                    "costumeName": "jellyfish-d",
+                    "costumeName": "ladybug2",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "6a949493aaf62954f1c74f8369d494c4.svg",
+                    "baseLayerMD5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 99,
-                    "rotationCenterY": 86
+                    "rotationCenterX": 41,
+                    "rotationCenterY": 43
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -163,
-            "scratchY": 99,
+            "scratchX": -90,
+            "scratchY": 42,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -6996,23 +8848,23 @@
         }
     },
     {
-        "name": "Jordyn",
-        "md5": "8dd2a2abbb8e639da8576b6e72ef9e59.svg",
+        "name": "Ladybug2",
+        "md5": "c018a3eed966d5f92c69f2188dfd2aae.svg",
         "type": "sprite",
         "tags": [
-            "sports",
-            "soccer",
-            "football",
-            "people",
-            "alex eben meyer"
+            "animal",
+            "insect",
+            "arthropod",
+            "antennae",
+            "aphids"
         ],
         "info": [
             0,
-            4,
+            2,
             1
         ],
         "json": {
-            "objName": "Jordyn",
+            "objName": "Ladybug2",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7025,41 +8877,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "jordyn-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "8dd2a2abbb8e639da8576b6e72ef9e59.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
-                },
-                {
-                    "costumeName": "jordyn-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "9665f543147961551d8dc6f612d9cc41.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
-                },
-                {
-                    "costumeName": "jordyn-c",
+                    "costumeName": "ladybug2-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "ec8c2286070c77ebd9dd40c96eaae3fc.svg",
+                    "baseLayerMD5": "c018a3eed966d5f92c69f2188dfd2aae.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
+                    "rotationCenterX": 49,
+                    "rotationCenterY": 28
                 },
                 {
-                    "costumeName": "jordyn-d",
+                    "costumeName": "ladybug2-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "1f9ed7f29800f31ce2ee53196143a3c8.svg",
+                    "baseLayerMD5": "a2bb15ace808e070a2b815502952b292.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
+                    "rotationCenterX": 49,
+                    "rotationCenterY": 28
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -164,
-            "scratchY": -41,
+            "scratchX": 26,
+            "scratchY": -3,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7069,12 +8905,12 @@
         }
     },
     {
-        "name": "Key",
-        "md5": "af35300cef35803e11f4ed744dc5e818.svg",
+        "name": "Laptop",
+        "md5": "76f456b30b98eeefd7c942b27b524e31.svg",
         "type": "sprite",
         "tags": [
-            "thing",
-            "fantasy"
+            "things",
+            "computers"
         ],
         "info": [
             0,
@@ -7082,7 +8918,7 @@
             1
         ],
         "json": {
-            "objName": "Key",
+            "objName": "Laptop",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7095,17 +8931,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "key",
+                    "costumeName": "laptop",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "af35300cef35803e11f4ed744dc5e818.svg",
+                    "baseLayerMD5": "76f456b30b98eeefd7c942b27b524e31.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 42,
-                    "rotationCenterY": 27
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -14,
-            "scratchY": 0,
+            "scratchX": -22,
+            "scratchY": 7,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7115,107 +8951,46 @@
         }
     },
     {
-        "name": "Keyboard",
-        "md5": "c67d180e964926b6393ac14781541b39.svg",
+        "name": "Lightning",
+        "md5": "c2d636ab2b491e591536afc3d49cbecd.svg",
         "type": "sprite",
         "tags": [
-            "music",
-            "andrew rae"
+            "weather",
+            "whether",
+            "fantasy",
+            "storm",
+            "thunder"
         ],
         "info": [
             0,
-            2,
-            8
+            1,
+            1
         ],
         "json": {
-            "objName": "Keyboard",
+            "objName": "Lightning",
             "sounds": [
                 {
-                    "soundName": "C elec piano",
-                    "soundID": -1,
-                    "md5": "8366ee963cc57ad24a8a35a26f722c2b.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "D elec piano",
-                    "soundID": -1,
-                    "md5": "835f136ca8d346a17b4d4baf8405be37.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "E elec piano",
-                    "soundID": -1,
-                    "md5": "ab3c198f8e36efff14f0a5bad35fa3cd.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "F elec piano",
-                    "soundID": -1,
-                    "md5": "dc5e368fc0d0dad1da609bfc3e29aa15.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "G elec piano",
-                    "soundID": -1,
-                    "md5": "39525f6545d62a95d05153f92d63301a.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "A elec piano",
-                    "soundID": -1,
-                    "md5": "0cfa8e84d6a5cd63afa31d541625a9ef.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "B elec piano",
-                    "soundID": -1,
-                    "md5": "9cc77167419f228503dd57fddaa5b2a6.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "C2 elec piano",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "366c7edbd4dd5cca68bf62902999bd66.wav",
-                    "sampleCount": 44100,
-                    "rate": 22050,
-                    "format": ""
-                }
-            ],
-            "costumes": [
-                {
-                    "costumeName": "keyboard-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "c67d180e964926b6393ac14781541b39.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 72,
-                    "rotationCenterY": 68
-                },
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
                 {
-                    "costumeName": "keyboard-b",
+                    "costumeName": "lightning",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "dbaf62b33de45093c3c7d13b5d49d637.svg",
+                    "baseLayerMD5": "c2d636ab2b491e591536afc3d49cbecd.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 72,
-                    "rotationCenterY": 68
+                    "rotationCenterX": 21,
+                    "rotationCenterY": 83
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 135,
-            "scratchY": -90,
+            "scratchX": 65,
+            "scratchY": 25,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7225,21 +9000,21 @@
         }
     },
     {
-        "name": "Kiran",
-        "md5": "9de23c4a7a7fbb67136b539241346854.svg",
+        "name": "Line",
+        "md5": "1b2cfb4d4746522aeb84e16a62820299.svg",
         "type": "sprite",
         "tags": [
-            "space",
-            "people",
-            "wren mcdonald"
+            "lava",
+            "shape",
+            "red"
         ],
         "info": [
             0,
-            6,
+            1,
             1
         ],
         "json": {
-            "objName": "Kiran",
+            "objName": "Line",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7252,57 +9027,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "kiran-a",
-                    "baseLayerID": 11,
-                    "baseLayerMD5": "9de23c4a7a7fbb67136b539241346854.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 67,
-                    "rotationCenterY": 95
-                },
-                {
-                    "costumeName": "kiran-b",
-                    "baseLayerID": 12,
-                    "baseLayerMD5": "f1e74f3c02333e9e2068e8baf4e77aa0.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 67,
-                    "rotationCenterY": 95
-                },
-                {
-                    "costumeName": "kiran-c",
-                    "baseLayerID": 13,
-                    "baseLayerMD5": "e2482cf509c312935f08be0e2e2c9d84.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 67,
-                    "rotationCenterY": 95
-                },
-                {
-                    "costumeName": "kiran-d",
-                    "baseLayerID": 14,
-                    "baseLayerMD5": "569e736b519199efddfbae2572f7e92b.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 67,
-                    "rotationCenterY": 95
-                },
-                {
-                    "costumeName": "kiran-e",
-                    "baseLayerID": 15,
-                    "baseLayerMD5": "2261bed0f2cc819def17969158297b4f.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 77,
-                    "rotationCenterY": 95
-                },
-                {
-                    "costumeName": "kiran-f",
-                    "baseLayerID": 16,
-                    "baseLayerMD5": "d7f44adb3dc7906b9dfb3599a028e0d6.svg",
+                    "costumeName": "line",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "1b2cfb4d4746522aeb84e16a62820299.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 62,
-                    "rotationCenterY": 94
+                    "rotationCenterX": 239,
+                    "rotationCenterY": 7
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 57,
-            "scratchY": -42,
+            "scratchX": 43,
+            "scratchY": -13,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7312,21 +9047,23 @@
         }
     },
     {
-        "name": "Knight",
-        "md5": "f2c5e8bc24d001b81566879dbf2f1a13.svg",
+        "name": "Lion",
+        "md5": "701a41dec023bc03a5ad4e35988b9a86.svg",
         "type": "sprite",
         "tags": [
-            "people",
-            "castle",
-            "armor"
+            "cat",
+            "animals",
+            "africa",
+            "savanna",
+            "robert hunter"
         ],
         "info": [
             0,
-            1,
+            3,
             1
         ],
         "json": {
-            "objName": "Knight",
+            "objName": "Lion",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7339,17 +9076,33 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "knight",
+                    "costumeName": "lion-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "f2c5e8bc24d001b81566879dbf2f1a13.svg",
+                    "baseLayerMD5": "701a41dec023bc03a5ad4e35988b9a86.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 95,
+                    "rotationCenterY": 43
+                },
+                {
+                    "costumeName": "lion-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "28ac215a2574eeabc2b390a14de3c152.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 95,
+                    "rotationCenterY": 43
+                },
+                {
+                    "costumeName": "lion-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "4dbe981721314eb631ef4f7fa920e1a4.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 95,
+                    "rotationCenterY": 43
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 90,
-            "scratchY": -18,
+            "scratchX": 25,
+            "scratchY": -87,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7359,22 +9112,21 @@
         }
     },
     {
-        "name": "Ladybug1",
-        "md5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg",
+        "name": "Llama",
+        "md5": "07158eb6d62e309bb60a6bc36baf2300.svg",
         "type": "sprite",
         "tags": [
             "animals",
-            "insect",
-            "bug",
-            "antennae"
+            "mammal",
+            "robert hunter"
         ],
         "info": [
             0,
-            1,
+            3,
             1
         ],
         "json": {
-            "objName": "Ladybug1",
+            "objName": "Llama",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7387,17 +9139,33 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "ladybug2",
+                    "costumeName": "llama",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg",
+                    "baseLayerMD5": "07158eb6d62e309bb60a6bc36baf2300.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 41,
-                    "rotationCenterY": 43
+                    "rotationCenterX": 100,
+                    "rotationCenterY": 100
+                },
+                {
+                    "costumeName": "llama-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "2021eea71514bd2b23e96076750727ae.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 100,
+                    "rotationCenterY": 100
+                },
+                {
+                    "costumeName": "llama-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "7837d7247acbc4eebb793452a35aa1f5.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 100,
+                    "rotationCenterY": 100
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -90,
-            "scratchY": 42,
+            "scratchX": -143,
+            "scratchY": -14,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7407,23 +9175,21 @@
         }
     },
     {
-        "name": "Ladybug2",
-        "md5": "c018a3eed966d5f92c69f2188dfd2aae.svg",
+        "name": "Magic Wand",
+        "md5": "3db9bfe57d561557795633c5cda44e8c.svg",
         "type": "sprite",
         "tags": [
-            "animal",
-            "insect",
-            "arthropod",
-            "antennae",
-            "aphids"
+            "fantasy",
+            "things",
+            "zap"
         ],
         "info": [
             0,
-            2,
+            1,
             1
         ],
         "json": {
-            "objName": "Ladybug2",
+            "objName": "Magic Wand",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7436,25 +9202,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "ladybug2-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "c018a3eed966d5f92c69f2188dfd2aae.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 49,
-                    "rotationCenterY": 28
-                },
-                {
-                    "costumeName": "ladybug2-b",
+                    "costumeName": "magicwand",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "a2bb15ace808e070a2b815502952b292.svg",
+                    "baseLayerMD5": "3db9bfe57d561557795633c5cda44e8c.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 49,
-                    "rotationCenterY": 28
+                    "rotationCenterX": 41,
+                    "rotationCenterY": 18
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 26,
-            "scratchY": -3,
+            "scratchX": 78,
+            "scratchY": 35,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7464,20 +9222,22 @@
         }
     },
     {
-        "name": "Laptop",
-        "md5": "76f456b30b98eeefd7c942b27b524e31.svg",
+        "name": "Max",
+        "md5": "e10cca3bdbc09d039c2f937574f7a6ea.svg",
         "type": "sprite",
         "tags": [
-            "things",
-            "computers"
+            "sports",
+            "basketball",
+            "people",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            1,
+            4,
             1
         ],
         "json": {
-            "objName": "Laptop",
+            "objName": "Max",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7490,17 +9250,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "laptop",
+                    "costumeName": "max-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "76f456b30b98eeefd7c942b27b524e31.svg",
+                    "baseLayerMD5": "e10cca3bdbc09d039c2f937574f7a6ea.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 68
+                },
+                {
+                    "costumeName": "max-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "6d8ee139a741cf945d600a8cef0ea2e6.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 68
+                },
+                {
+                    "costumeName": "max-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "aa66109994d27de02711f6a0ef6de9ec.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 68
+                },
+                {
+                    "costumeName": "max-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a0dbf509d542c7eff6d2ddfc9c9410f1.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 68
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -22,
-            "scratchY": 7,
+            "scratchX": 143,
+            "scratchY": -71,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7510,23 +9294,22 @@
         }
     },
     {
-        "name": "Lightning",
-        "md5": "c2d636ab2b491e591536afc3d49cbecd.svg",
+        "name": "Mermaid",
+        "md5": "36db41c47259881c26d9b98a806d3308.svg",
         "type": "sprite",
         "tags": [
-            "weather",
-            "whether",
             "fantasy",
-            "storm",
-            "thunder"
+            "people",
+            "underwater",
+            "ipzy"
         ],
         "info": [
             0,
-            1,
+            2,
             1
         ],
         "json": {
-            "objName": "Lightning",
+            "objName": "Mermaid",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7539,17 +9322,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "lightning",
+                    "costumeName": "mermaid-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "c2d636ab2b491e591536afc3d49cbecd.svg",
+                    "baseLayerMD5": "36db41c47259881c26d9b98a806d3308.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 21,
-                    "rotationCenterY": 83
+                    "rotationCenterX": 92,
+                    "rotationCenterY": 130
+                },
+                {
+                    "costumeName": "mermaid-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "564bf3f466df3b3e8aba71eeae8255ab.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 92,
+                    "rotationCenterY": 130
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 65,
-            "scratchY": 25,
+            "scratchX": -110,
+            "scratchY": -21,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7559,21 +9350,22 @@
         }
     },
     {
-        "name": "Line",
-        "md5": "1b2cfb4d4746522aeb84e16a62820299.svg",
+        "name": "Mermaid-swimming",
+        "md5": "9f973b89b68f7d8147f157cbac8af341.svg",
         "type": "sprite",
         "tags": [
-            "lava",
-            "shape",
-            "red"
+            "fantasy",
+            "people",
+            "underwater",
+            "ipzy"
         ],
         "info": [
             0,
-            1,
+            2,
             1
         ],
         "json": {
-            "objName": "Line",
+            "objName": "Mermaid-swimming",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7586,17 +9378,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "line",
+                    "costumeName": "mermaid-swim-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "1b2cfb4d4746522aeb84e16a62820299.svg",
+                    "baseLayerMD5": "9f973b89b68f7d8147f157cbac8af341.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 239,
-                    "rotationCenterY": 7
+                    "rotationCenterX": 150,
+                    "rotationCenterY": 115
+                },
+                {
+                    "costumeName": "mermaid-swim-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "2295784bb8e6354bfa7676089235cb9f.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 150,
+                    "rotationCenterY": 115
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 43,
-            "scratchY": -13,
+            "scratchX": 141,
+            "scratchY": -8,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7606,56 +9406,115 @@
         }
     },
     {
-        "name": "Lion",
-        "md5": "692a3c84366bf8ae4d16858e20e792f5.svg",
+        "name": "Microphone",
+        "md5": "9126b6362313e20578fb88d38902cd4c.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "mammals",
-            "big cat",
-            "carnivore",
-            "king",
-            "jungle",
-            "roar"
+            "music",
+            "andrew rae"
         ],
         "info": [
             0,
             2,
-            1
+            9
         ],
         "json": {
-            "objName": "Lion",
+            "objName": "Microphone",
             "sounds": [
                 {
-                    "soundName": "meow",
+                    "soundName": "bass beatbox",
                     "soundID": -1,
-                    "md5": "83c36d806dc92327b9e7049a565c6bff.wav",
-                    "sampleCount": 18688,
+                    "md5": "28153621d293c86da0b246d314458faf.wav",
+                    "sampleCount": 6720,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "clap beatbox",
+                    "soundID": -1,
+                    "md5": "abc70bb390f8e55f22f32265500d814a.wav",
+                    "sampleCount": 4224,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "hi beatbox",
+                    "soundID": -1,
+                    "md5": "5a07847bf246c227204728b05a3fc8f3.wav",
+                    "sampleCount": 5856,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "scratch beatbox",
+                    "soundID": -1,
+                    "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav",
+                    "sampleCount": 11552,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "snare beatbox",
+                    "soundID": -1,
+                    "md5": "c642c4c00135d890998f351faec55498.wav",
+                    "sampleCount": 5630,
+                    "rate": 22050,
+                    "format": "adpcm"
+                },
+                {
+                    "soundName": "snare beatbox2",
+                    "soundID": -1,
+                    "md5": "7ede1382b578d8fc32850b48d082d914.wav",
+                    "sampleCount": 4960,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "wah beatbox",
+                    "soundID": -1,
+                    "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav",
+                    "sampleCount": 6624,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "crash beatbox",
+                    "soundID": -1,
+                    "md5": "725e29369e9138a43f11e0e5eb3eb562.wav",
+                    "sampleCount": 26883,
+                    "rate": 22050,
+                    "format": ""
+                },
+                {
+                    "soundName": "wub beatbox",
+                    "soundID": -1,
+                    "md5": "e1f32c057411da4237181ce72ae15d23.wav",
+                    "sampleCount": 7392,
                     "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "lion-a",
+                    "costumeName": "microphone-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "692a3c84366bf8ae4d16858e20e792f5.svg",
+                    "baseLayerMD5": "9126b6362313e20578fb88d38902cd4c.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 40,
+                    "rotationCenterY": 88
                 },
                 {
-                    "costumeName": "lion-b",
+                    "costumeName": "microphone-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "a519ef168a345a2846d0201bf092a6d0.svg",
+                    "baseLayerMD5": "29988ebbde49beaceb06d9eb66138b80.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 40,
+                    "rotationCenterY": 88
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 8,
-            "scratchY": 36,
+            "scratchX": 125,
+            "scratchY": 49,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7665,21 +9524,21 @@
         }
     },
     {
-        "name": "Llama",
-        "md5": "07158eb6d62e309bb60a6bc36baf2300.svg",
+        "name": "Milk",
+        "md5": "e6a7964bc4ea38c79a5a31d6ddfb5ba9.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "mammal",
-            "robert hunter"
+            "food",
+            "drink",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            3,
+            5,
             1
         ],
         "json": {
-            "objName": "Llama",
+            "objName": "Milk",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7692,33 +9551,49 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "llama",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "07158eb6d62e309bb60a6bc36baf2300.svg",
+                    "costumeName": "milk-a",
+                    "baseLayerID": 0,
+                    "baseLayerMD5": "e6a7964bc4ea38c79a5a31d6ddfb5ba9.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 100,
-                    "rotationCenterY": 100
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 71
                 },
                 {
-                    "costumeName": "llama-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "2021eea71514bd2b23e96076750727ae.svg",
+                    "costumeName": "milk-b",
+                    "baseLayerID": 1,
+                    "baseLayerMD5": "82d4c1855fe0d400433c7344fb2af3b5.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 100,
-                    "rotationCenterY": 100
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 71
                 },
                 {
-                    "costumeName": "llama-c",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "7837d7247acbc4eebb793452a35aa1f5.svg",
+                    "costumeName": "milk-c",
+                    "baseLayerID": 2,
+                    "baseLayerMD5": "50afc991b6fdad4b6547ba98ecf8a6af.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 100,
-                    "rotationCenterY": 100
+                    "rotationCenterX": 47,
+                    "rotationCenterY": 44
+                },
+                {
+                    "costumeName": "milk-d",
+                    "baseLayerID": 3,
+                    "baseLayerMD5": "8fc7606a176149d225a541a04fa67473.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 71
+                },
+                {
+                    "costumeName": "milk-e",
+                    "baseLayerID": 4,
+                    "baseLayerMD5": "f2373d449b1226c44436dced422c2935.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 71
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -143,
-            "scratchY": -14,
+            "scratchX": -2,
+            "scratchY": -85,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7728,21 +9603,21 @@
         }
     },
     {
-        "name": "Magic Wand",
-        "md5": "3db9bfe57d561557795633c5cda44e8c.svg",
+        "name": "Monet",
+        "md5": "11c46aaa5e30ad46f5c1883d6feb47b8.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "things",
-            "zap"
+            "space",
+            "people",
+            "wren mcdonald"
         ],
         "info": [
             0,
-            1,
+            5,
             1
         ],
         "json": {
-            "objName": "Magic Wand",
+            "objName": "Monet",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7755,17 +9630,49 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "magicwand",
+                    "costumeName": "monet-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "11c46aaa5e30ad46f5c1883d6feb47b8.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 64,
+                    "rotationCenterY": 87
+                },
+                {
+                    "costumeName": "monet-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "9c8f83e39dc8ac49d57c0622ffe2063f.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 64,
+                    "rotationCenterY": 87
+                },
+                {
+                    "costumeName": "monet-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "4435678d26e8fbc266d647693f65f5d7.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 64,
+                    "rotationCenterY": 87
+                },
+                {
+                    "costumeName": "monet-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "3db9bfe57d561557795633c5cda44e8c.svg",
+                    "baseLayerMD5": "42113ca3eca593c3a8f232a9202d6f14.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 41,
-                    "rotationCenterY": 18
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 87
+                },
+                {
+                    "costumeName": "monet-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e530d0dac5290c5366af719cfb4e5953.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 65,
+                    "rotationCenterY": 89
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 78,
-            "scratchY": 35,
+            "scratchX": -53,
+            "scratchY": -50,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7775,69 +9682,61 @@
         }
     },
     {
-        "name": "Max",
-        "md5": "e10cca3bdbc09d039c2f937574f7a6ea.svg",
+        "name": "Monkey",
+        "md5": "6e4de762dbd52cd2b6356694a9668211.svg",
         "type": "sprite",
         "tags": [
-            "sports",
-            "basketball",
-            "people",
-            "alex eben meyer"
+            "animals",
+            "mammals",
+            "primate",
+            "prehensile tail"
         ],
         "info": [
             0,
-            4,
+            3,
             1
         ],
         "json": {
-            "objName": "Max",
+            "objName": "Monkey",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "chee chee",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
+                    "md5": "25f4826cdd61e0a1c623ec2324c16ca0.wav",
+                    "sampleCount": 34560,
+                    "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "max-a",
-                    "baseLayerID": 12,
-                    "baseLayerMD5": "e10cca3bdbc09d039c2f937574f7a6ea.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 68
-                },
-                {
-                    "costumeName": "max-b",
-                    "baseLayerID": 13,
-                    "baseLayerMD5": "6d8ee139a741cf945d600a8cef0ea2e6.svg",
+                    "costumeName": "monkey-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "6e4de762dbd52cd2b6356694a9668211.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 68
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 99
                 },
                 {
-                    "costumeName": "max-c",
-                    "baseLayerID": 14,
-                    "baseLayerMD5": "aa66109994d27de02711f6a0ef6de9ec.svg",
+                    "costumeName": "monkey-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "7662a3a0f4c6fa21fdf2de33bd80fe5f.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 68
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 99
                 },
                 {
-                    "costumeName": "max-d",
-                    "baseLayerID": 15,
-                    "baseLayerMD5": "a0dbf509d542c7eff6d2ddfc9c9410f1.svg",
+                    "costumeName": "monkey-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "db8eb50b948047181922310bb94511fb.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 68
+                    "rotationCenterX": 68,
+                    "rotationCenterY": 99
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 143,
-            "scratchY": -71,
+            "scratchX": -61,
+            "scratchY": 24,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7847,14 +9746,13 @@
         }
     },
     {
-        "name": "Mermaid",
-        "md5": "36db41c47259881c26d9b98a806d3308.svg",
+        "name": "Mouse1",
+        "md5": "e1f0c26afecbe9d4b9923d8e6bf489a8.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "people",
-            "underwater",
-            "ipzy"
+            "animals",
+            "mammals",
+            "rodents"
         ],
         "info": [
             0,
@@ -7862,7 +9760,7 @@
             1
         ],
         "json": {
-            "objName": "Mermaid",
+            "objName": "Mouse1",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7875,25 +9773,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "mermaid-a",
-                    "baseLayerID": 50,
-                    "baseLayerMD5": "36db41c47259881c26d9b98a806d3308.svg",
+                    "costumeName": "mouse1-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e1f0c26afecbe9d4b9923d8e6bf489a8.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 92,
-                    "rotationCenterY": 130
+                    "rotationCenterX": 50,
+                    "rotationCenterY": 27
                 },
                 {
-                    "costumeName": "mermaid-b",
-                    "baseLayerID": 51,
-                    "baseLayerMD5": "564bf3f466df3b3e8aba71eeae8255ab.svg",
+                    "costumeName": "mouse1-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "f5e477a3f94fc98ba3cd927228405646.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 92,
-                    "rotationCenterY": 130
+                    "rotationCenterX": 65,
+                    "rotationCenterY": 21
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -110,
-            "scratchY": -21,
+            "scratchX": -10,
+            "scratchY": -20,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7903,14 +9801,11 @@
         }
     },
     {
-        "name": "Mermaid-swimming",
-        "md5": "9f973b89b68f7d8147f157cbac8af341.svg",
+        "name": "Muffin",
+        "md5": "18da0857a1b7f1c960146d2b85edd10f.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "people",
-            "underwater",
-            "ipzy"
+            "food"
         ],
         "info": [
             0,
@@ -7918,7 +9813,7 @@
             1
         ],
         "json": {
-            "objName": "Mermaid-swimming",
+            "objName": "Muffin",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -7931,25 +9826,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "mermaid-swim-a",
-                    "baseLayerID": 54,
-                    "baseLayerMD5": "9f973b89b68f7d8147f157cbac8af341.svg",
+                    "costumeName": "muffin-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "18da0857a1b7f1c960146d2b85edd10f.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 150,
-                    "rotationCenterY": 115
+                    "rotationCenterX": 85,
+                    "rotationCenterY": 48
                 },
                 {
-                    "costumeName": "mermaid-swim-b",
-                    "baseLayerID": 55,
-                    "baseLayerMD5": "2295784bb8e6354bfa7676089235cb9f.svg",
+                    "costumeName": "muffin-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a89f3b99bf4cccfaeb1b39e25633c53c.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 150,
-                    "rotationCenterY": 115
+                    "rotationCenterX": 85,
+                    "rotationCenterY": 48
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 141,
-            "scratchY": -8,
+            "scratchX": -74,
+            "scratchY": -3,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -7959,115 +9854,113 @@
         }
     },
     {
-        "name": "Microphone",
-        "md5": "9126b6362313e20578fb88d38902cd4c.svg",
+        "name": "Nano",
+        "md5": "02c5433118f508038484bbc5b111e187.svg",
         "type": "sprite",
         "tags": [
-            "music",
-            "andrew rae"
+            "fantasy",
+            "drawing"
         ],
         "info": [
             0,
-            2,
-            9
+            4,
+            1
         ],
         "json": {
-            "objName": "Microphone",
+            "objName": "Nano",
             "sounds": [
                 {
-                    "soundName": "bass beatbox",
-                    "soundID": -1,
-                    "md5": "28153621d293c86da0b246d314458faf.wav",
-                    "sampleCount": 6720,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "clap beatbox",
-                    "soundID": -1,
-                    "md5": "abc70bb390f8e55f22f32265500d814a.wav",
-                    "sampleCount": 4224,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "hi beatbox",
-                    "soundID": -1,
-                    "md5": "5a07847bf246c227204728b05a3fc8f3.wav",
-                    "sampleCount": 5856,
-                    "rate": 22050,
-                    "format": ""
-                },
-                {
-                    "soundName": "scratch beatbox",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav",
-                    "sampleCount": 11552,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
-                },
+                }
+            ],
+            "costumes": [
                 {
-                    "soundName": "snare beatbox",
-                    "soundID": -1,
-                    "md5": "c642c4c00135d890998f351faec55498.wav",
-                    "sampleCount": 5630,
-                    "rate": 22050,
-                    "format": "adpcm"
+                    "costumeName": "nano-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "02c5433118f508038484bbc5b111e187.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 61,
+                    "rotationCenterY": 60
                 },
                 {
-                    "soundName": "snare beatbox2",
-                    "soundID": -1,
-                    "md5": "7ede1382b578d8fc32850b48d082d914.wav",
-                    "sampleCount": 4960,
-                    "rate": 22050,
-                    "format": ""
+                    "costumeName": "nano-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "10d6d9130618cd092ae02158cde2e113.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 61,
+                    "rotationCenterY": 60
                 },
                 {
-                    "soundName": "wah beatbox",
-                    "soundID": -1,
-                    "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav",
-                    "sampleCount": 6624,
-                    "rate": 22050,
-                    "format": ""
+                    "costumeName": "nano-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "85e762d45bc626ca2edb3472c7cfaa32.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 61,
+                    "rotationCenterY": 60
                 },
                 {
-                    "soundName": "crash beatbox",
-                    "soundID": -1,
-                    "md5": "725e29369e9138a43f11e0e5eb3eb562.wav",
-                    "sampleCount": 26883,
-                    "rate": 22050,
-                    "format": ""
-                },
+                    "costumeName": "nano-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b10925346da8080443f27e7dfaeff6f7.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 61,
+                    "rotationCenterY": 60
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -18,
+            "scratchY": 28,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Neigh Pony",
+        "md5": "176c4fb4df80df899ca28a48bd1f0edf.svg",
+        "type": "sprite",
+        "tags": [
+            "animals",
+            "fantasy"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Neigh Pony",
+            "sounds": [
                 {
-                    "soundName": "wub beatbox",
+                    "soundName": "horse",
                     "soundID": -1,
-                    "md5": "e1f32c057411da4237181ce72ae15d23.wav",
-                    "sampleCount": 7392,
-                    "rate": 22050,
+                    "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav",
+                    "sampleCount": 14464,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "microphone-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "9126b6362313e20578fb88d38902cd4c.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 40,
-                    "rotationCenterY": 88
-                },
-                {
-                    "costumeName": "microphone-b",
+                    "costumeName": "neigh pony",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "29988ebbde49beaceb06d9eb66138b80.svg",
+                    "baseLayerMD5": "176c4fb4df80df899ca28a48bd1f0edf.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 40,
-                    "rotationCenterY": 88
+                    "rotationCenterX": 74,
+                    "rotationCenterY": 78
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 125,
-            "scratchY": 49,
+            "scratchX": 3,
+            "scratchY": 37,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8077,13 +9970,15 @@
         }
     },
     {
-        "name": "Milk",
-        "md5": "e6a7964bc4ea38c79a5a31d6ddfb5ba9.svg",
+        "name": "Octopus",
+        "md5": "038df646d2f935d2a5dd601b343fc1d9.svg",
         "type": "sprite",
         "tags": [
-            "food",
-            "drink",
-            "alex eben meyer"
+            "animals",
+            "ocean",
+            "sea",
+            "underwater",
+            "daria skrybchencko"
         ],
         "info": [
             0,
@@ -8091,7 +9986,7 @@
             1
         ],
         "json": {
-            "objName": "Milk",
+            "objName": "Octopus",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -8104,49 +9999,49 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "milk-a",
-                    "baseLayerID": 0,
-                    "baseLayerMD5": "e6a7964bc4ea38c79a5a31d6ddfb5ba9.svg",
+                    "costumeName": "octopus-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "038df646d2f935d2a5dd601b343fc1d9.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 71
+                    "rotationCenterX": 88,
+                    "rotationCenterY": 86
                 },
                 {
-                    "costumeName": "milk-b",
-                    "baseLayerID": 1,
-                    "baseLayerMD5": "82d4c1855fe0d400433c7344fb2af3b5.svg",
+                    "costumeName": "octopus-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "31bdcbdf05688c01aace3fd94c5e82df.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 71
+                    "rotationCenterX": 88,
+                    "rotationCenterY": 86
                 },
                 {
-                    "costumeName": "milk-c",
-                    "baseLayerID": 2,
-                    "baseLayerMD5": "50afc991b6fdad4b6547ba98ecf8a6af.svg",
+                    "costumeName": "octopus-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "51e80c09323e36489ad452250acd827c.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 47,
-                    "rotationCenterY": 44
+                    "rotationCenterX": 88,
+                    "rotationCenterY": 86
                 },
                 {
-                    "costumeName": "milk-d",
-                    "baseLayerID": 3,
-                    "baseLayerMD5": "8fc7606a176149d225a541a04fa67473.svg",
+                    "costumeName": "octopus-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b4242e6cde0392bb9a5fb43a8f232962.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 71
+                    "rotationCenterX": 88,
+                    "rotationCenterY": 86
                 },
                 {
-                    "costumeName": "milk-e",
-                    "baseLayerID": 4,
-                    "baseLayerMD5": "f2373d449b1226c44436dced422c2935.svg",
+                    "costumeName": "octopus-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "edfda0a36d9cd8482e3a8dc317107d56.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 71
+                    "rotationCenterX": 88,
+                    "rotationCenterY": 86
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -2,
-            "scratchY": -85,
+            "scratchX": 157,
+            "scratchY": 83,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8156,21 +10051,20 @@
         }
     },
     {
-        "name": "Monet",
-        "md5": "11c46aaa5e30ad46f5c1883d6feb47b8.svg",
+        "name": "Orange",
+        "md5": "27d5dfbadceea215e983d2641ce3e51f.svg",
         "type": "sprite",
         "tags": [
-            "space",
-            "people",
-            "wren mcdonald"
+            "food",
+            "fruit"
         ],
         "info": [
             0,
-            5,
+            1,
             1
         ],
         "json": {
-            "objName": "Monet",
+            "objName": "Orange",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -8183,49 +10077,72 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "monet-a",
-                    "baseLayerID": 6,
-                    "baseLayerMD5": "11c46aaa5e30ad46f5c1883d6feb47b8.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 64,
-                    "rotationCenterY": 87
-                },
-                {
-                    "costumeName": "monet-b",
-                    "baseLayerID": 7,
-                    "baseLayerMD5": "9c8f83e39dc8ac49d57c0622ffe2063f.svg",
+                    "costumeName": "orange",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "27d5dfbadceea215e983d2641ce3e51f.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 64,
-                    "rotationCenterY": 87
-                },
+                    "rotationCenterX": 19,
+                    "rotationCenterY": 18
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 44,
+            "scratchY": -6,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Orange2",
+        "md5": "8a7d8515df41f83c1326ec3233a3a42a.svg",
+        "type": "sprite",
+        "tags": [
+            "food",
+            "fruit",
+            "eaten"
+        ],
+        "info": [
+            0,
+            2,
+            1
+        ],
+        "json": {
+            "objName": "Orange2",
+            "sounds": [
                 {
-                    "costumeName": "monet-c",
-                    "baseLayerID": 8,
-                    "baseLayerMD5": "4435678d26e8fbc266d647693f65f5d7.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 64,
-                    "rotationCenterY": 87
-                },
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
                 {
-                    "costumeName": "monet-d",
-                    "baseLayerID": 9,
-                    "baseLayerMD5": "42113ca3eca593c3a8f232a9202d6f14.svg",
+                    "costumeName": "orange2-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "8a7d8515df41f83c1326ec3233a3a42a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 87
+                    "rotationCenterX": 49,
+                    "rotationCenterY": 24
                 },
                 {
-                    "costumeName": "monet-e",
-                    "baseLayerID": 10,
-                    "baseLayerMD5": "e530d0dac5290c5366af719cfb4e5953.svg",
+                    "costumeName": "orange2-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "70c7f1822ffdb37157c304273dae9102.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 65,
-                    "rotationCenterY": 89
+                    "rotationCenterX": 49,
+                    "rotationCenterY": 27
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -53,
-            "scratchY": -50,
+            "scratchX": -60,
+            "scratchY": 9,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8235,61 +10152,69 @@
         }
     },
     {
-        "name": "Monkey",
-        "md5": "6e4de762dbd52cd2b6356694a9668211.svg",
+        "name": "Outfielder",
+        "md5": "fab7218666ba49eae992664acab53159.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "mammals",
-            "primate",
-            "prehensile tail"
+            "baseball",
+            "sports",
+            "people",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            3,
+            4,
             1
         ],
         "json": {
-            "objName": "Monkey",
+            "objName": "Outfielder",
             "sounds": [
                 {
-                    "soundName": "chee chee",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "25f4826cdd61e0a1c623ec2324c16ca0.wav",
-                    "sampleCount": 34560,
-                    "rate": 22050,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "monkey-a",
+                    "costumeName": "outfielder-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "fab7218666ba49eae992664acab53159.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 38,
+                    "rotationCenterY": 61
+                },
+                {
+                    "costumeName": "outfielder-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "6e4de762dbd52cd2b6356694a9668211.svg",
+                    "baseLayerMD5": "a86813067f26947adb68897b870b1b7e.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 99
+                    "rotationCenterX": 38,
+                    "rotationCenterY": 57
                 },
                 {
-                    "costumeName": "monkey-b",
+                    "costumeName": "outfielder-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "7662a3a0f4c6fa21fdf2de33bd80fe5f.svg",
+                    "baseLayerMD5": "f6f1d2b7c6b50cbdac8cdbb55c872114.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 99
+                    "rotationCenterX": 46,
+                    "rotationCenterY": 80
                 },
                 {
-                    "costumeName": "monkey-c",
+                    "costumeName": "outfielder-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "db8eb50b948047181922310bb94511fb.svg",
+                    "baseLayerMD5": "c6fb3a8079bce9630ab9499926c16de9.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 68,
-                    "rotationCenterY": 99
+                    "rotationCenterX": 79,
+                    "rotationCenterY": 96
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -61,
-            "scratchY": 24,
+            "scratchX": -173,
+            "scratchY": -28,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8299,21 +10224,21 @@
         }
     },
     {
-        "name": "Mouse1",
-        "md5": "e1f0c26afecbe9d4b9923d8e6bf489a8.svg",
+        "name": "Owl",
+        "md5": "a312273b198fcacf68976e3cc74fadb4.svg",
         "type": "sprite",
         "tags": [
             "animals",
-            "mammals",
-            "rodents"
+            "bird",
+            "robert hunter"
         ],
         "info": [
             0,
-            2,
+            3,
             1
         ],
         "json": {
-            "objName": "Mouse1",
+            "objName": "Owl",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -8326,25 +10251,33 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "mouse1-a",
+                    "costumeName": "owl-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "e1f0c26afecbe9d4b9923d8e6bf489a8.svg",
+                    "baseLayerMD5": "a312273b198fcacf68976e3cc74fadb4.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 50,
-                    "rotationCenterY": 27
+                    "rotationCenterX": 113,
+                    "rotationCenterY": 54
                 },
                 {
-                    "costumeName": "mouse1-b",
+                    "costumeName": "owl-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "f5e477a3f94fc98ba3cd927228405646.svg",
+                    "baseLayerMD5": "c9916dcfe67302367b05be7f3e5c5ddf.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 65,
-                    "rotationCenterY": 21
+                    "rotationCenterX": 113,
+                    "rotationCenterY": 54
+                },
+                {
+                    "costumeName": "owl-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "8ec3a2507f1d6dc9b39f7ae5a1ebfdd3.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 113,
+                    "rotationCenterY": 54
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -10,
-            "scratchY": -20,
+            "scratchX": 167,
+            "scratchY": -3,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8354,50 +10287,42 @@
         }
     },
     {
-        "name": "Muffin",
-        "md5": "e00161f08c77d10e72e44b6e01243e63.svg",
+        "name": "Paddle",
+        "md5": "8038149bdfe24733ea2144d37d297815.svg",
         "type": "sprite",
         "tags": [
-            "food"
+            "thing"
         ],
         "info": [
             0,
-            2,
+            1,
             1
         ],
         "json": {
-            "objName": "Muffin",
+            "objName": "Paddle",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "boing",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
-                    "format": ""
+                    "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav",
+                    "sampleCount": 6804,
+                    "rate": 22050,
+                    "format": "adpcm"
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "muffin-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "e00161f08c77d10e72e44b6e01243e63.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 85,
-                    "rotationCenterY": 48
-                },
-                {
-                    "costumeName": "muffin-b",
+                    "costumeName": "paddle",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "fb60c3f8d6a892813299daa33b91df23.svg",
+                    "baseLayerMD5": "8038149bdfe24733ea2144d37d297815.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 85,
-                    "rotationCenterY": 48
+                    "rotationCenterX": 44,
+                    "rotationCenterY": 7
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -74,
-            "scratchY": -3,
+            "scratchX": 47,
+            "scratchY": -12,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8407,20 +10332,22 @@
         }
     },
     {
-        "name": "Nano",
-        "md5": "02c5433118f508038484bbc5b111e187.svg",
+        "name": "Panther",
+        "md5": "04ca2c122cff11b9bc23834d6f79361e.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "drawing"
+            "animals",
+            "tiger",
+            "leopard",
+            "robert hunter"
         ],
         "info": [
             0,
-            4,
+            3,
             1
         ],
         "json": {
-            "objName": "Nano",
+            "objName": "Panther",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -8433,41 +10360,33 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "nano-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "02c5433118f508038484bbc5b111e187.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 61,
-                    "rotationCenterY": 60
-                },
-                {
-                    "costumeName": "nano-b",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "10d6d9130618cd092ae02158cde2e113.svg",
+                    "costumeName": "panther-a",
+                    "baseLayerID": 0,
+                    "baseLayerMD5": "04ca2c122cff11b9bc23834d6f79361e.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 61,
-                    "rotationCenterY": 60
+                    "rotationCenterX": 125,
+                    "rotationCenterY": 81
                 },
                 {
-                    "costumeName": "nano-c",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "85e762d45bc626ca2edb3472c7cfaa32.svg",
+                    "costumeName": "panther-b",
+                    "baseLayerID": 1,
+                    "baseLayerMD5": "f8c33765d1105f3bb4cd145fad0f717e.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 61,
-                    "rotationCenterY": 60
+                    "rotationCenterX": 125,
+                    "rotationCenterY": 81
                 },
                 {
-                    "costumeName": "nano-d",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "b10925346da8080443f27e7dfaeff6f7.svg",
+                    "costumeName": "panther-c",
+                    "baseLayerID": 2,
+                    "baseLayerMD5": "096bf9cad84def12eef2b5d84736b393.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 61,
-                    "rotationCenterY": 60
+                    "rotationCenterX": 125,
+                    "rotationCenterY": 81
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -18,
-            "scratchY": 28,
+            "scratchX": -27,
+            "scratchY": 8,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8477,43 +10396,56 @@
         }
     },
     {
-        "name": "Neigh Pony",
-        "md5": "176c4fb4df80df899ca28a48bd1f0edf.svg",
+        "name": "Parrot",
+        "md5": "098570b8e1aa85b32f9b4eb07bea3af2.svg",
         "type": "sprite",
         "tags": [
             "animals",
-            "fantasy"
+            "bird",
+            "birb",
+            "tropical",
+            "color",
+            "flying",
+            "flappers"
         ],
         "info": [
             0,
-            1,
+            2,
             1
         ],
         "json": {
-            "objName": "Neigh Pony",
+            "objName": "Parrot",
             "sounds": [
                 {
-                    "soundName": "horse",
+                    "soundName": "bird",
                     "soundID": -1,
-                    "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav",
-                    "sampleCount": 14464,
+                    "md5": "18bd4b634a3f992a16b30344c7d810e0.wav",
+                    "sampleCount": 3840,
                     "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "neigh pony",
+                    "costumeName": "parrot-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "176c4fb4df80df899ca28a48bd1f0edf.svg",
+                    "baseLayerMD5": "098570b8e1aa85b32f9b4eb07bea3af2.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 74,
-                    "rotationCenterY": 78
+                    "rotationCenterX": 86,
+                    "rotationCenterY": 106
+                },
+                {
+                    "costumeName": "parrot-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "721255a0733c9d8d2ba518ff09b3b7cb.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 49,
+                    "rotationCenterY": 31
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 3,
-            "scratchY": 37,
+            "scratchX": 77,
+            "scratchY": 23,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8523,23 +10455,20 @@
         }
     },
     {
-        "name": "Octopus",
-        "md5": "038df646d2f935d2a5dd601b343fc1d9.svg",
+        "name": "Pencil",
+        "md5": "4495fcb0443cebc5d43e66243a88f1ac.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "ocean",
-            "sea",
-            "underwater",
-            "daria skrybchencko"
+            "thing",
+            "yellow"
         ],
         "info": [
             0,
-            5,
+            2,
             1
         ],
         "json": {
-            "objName": "Octopus",
+            "objName": "Pencil",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -8552,49 +10481,94 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "octopus-a",
+                    "costumeName": "pencil-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "038df646d2f935d2a5dd601b343fc1d9.svg",
+                    "baseLayerMD5": "4495fcb0443cebc5d43e66243a88f1ac.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 88,
-                    "rotationCenterY": 86
+                    "rotationCenterX": 49,
+                    "rotationCenterY": 54
                 },
                 {
-                    "costumeName": "octopus-b",
+                    "costumeName": "pencil-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "31bdcbdf05688c01aace3fd94c5e82df.svg",
+                    "baseLayerMD5": "21088922dbe127f6d2e58e2e83fb632e.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 88,
-                    "rotationCenterY": 86
-                },
+                    "rotationCenterX": 48,
+                    "rotationCenterY": 68
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 57,
+            "scratchY": 42,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Penguin",
+        "md5": "6d85d016129c34c90ef269933a72a7a7.svg",
+        "type": "sprite",
+        "tags": [
+            "animals",
+            "bird",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
+            "robert hunter"
+        ],
+        "info": [
+            0,
+            3,
+            1
+        ],
+        "json": {
+            "objName": "Penguin",
+            "sounds": [
                 {
-                    "costumeName": "octopus-c",
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "penguin-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "51e80c09323e36489ad452250acd827c.svg",
+                    "baseLayerMD5": "6d85d016129c34c90ef269933a72a7a7.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 88,
-                    "rotationCenterY": 86
+                    "rotationCenterX": 36,
+                    "rotationCenterY": 46
                 },
                 {
-                    "costumeName": "octopus-d",
+                    "costumeName": "penguin-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "b4242e6cde0392bb9a5fb43a8f232962.svg",
+                    "baseLayerMD5": "e93ef702208fad2776a34f57c1c746b1.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 88,
-                    "rotationCenterY": 86
+                    "rotationCenterX": 36,
+                    "rotationCenterY": 46
                 },
                 {
-                    "costumeName": "octopus-e",
+                    "costumeName": "penguin-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "edfda0a36d9cd8482e3a8dc317107d56.svg",
+                    "baseLayerMD5": "c6d6ec90b897855831a73b3b3b8f202a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 88,
-                    "rotationCenterY": 86
+                    "rotationCenterX": 36,
+                    "rotationCenterY": 46
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 157,
-            "scratchY": 83,
+            "scratchX": -84,
+            "scratchY": -100,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8604,20 +10578,22 @@
         }
     },
     {
-        "name": "Orange",
-        "md5": "780ee2ef342f79a81b4c353725331138.svg",
+        "name": "Penguin 2",
+        "md5": "c17d9e4bdb59c574e0c34aa70af516da.svg",
         "type": "sprite",
         "tags": [
-            "food",
-            "fruit"
+            "animals",
+            "bird",
+            "winter",
+            "antarctica"
         ],
         "info": [
             0,
-            1,
+            3,
             1
         ],
         "json": {
-            "objName": "Orange",
+            "objName": "Penguin 2",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -8630,17 +10606,33 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "orange",
+                    "costumeName": "penguin2-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "780ee2ef342f79a81b4c353725331138.svg",
+                    "baseLayerMD5": "c17d9e4bdb59c574e0c34aa70af516da.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 19,
-                    "rotationCenterY": 18
+                    "rotationCenterX": 54,
+                    "rotationCenterY": 61
+                },
+                {
+                    "costumeName": "penguin2-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "35fec7aa5f60cca945fe0615413f1f08.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 48,
+                    "rotationCenterY": 62
+                },
+                {
+                    "costumeName": "penguin2-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "18fa51a64ebd5518f0c5c465525346e5.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 48,
+                    "rotationCenterY": 61
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 44,
-            "scratchY": -6,
+            "scratchX": -58,
+            "scratchY": -19,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8650,21 +10642,20 @@
         }
     },
     {
-        "name": "Orange2",
-        "md5": "89b11d2a404c3972b65743f743cc968a.svg",
+        "name": "Pico",
+        "md5": "0579fe60bb3717c49dfd7743caa84ada.svg",
         "type": "sprite",
         "tags": [
-            "food",
-            "fruit",
-            "eaten"
+            "fantasy",
+            "drawing"
         ],
         "info": [
             0,
-            3,
+            4,
             1
         ],
         "json": {
-            "objName": "Orange2",
+            "objName": "Pico",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -8677,33 +10668,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "orange2-a",
+                    "costumeName": "pico-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "89b11d2a404c3972b65743f743cc968a.svg",
+                    "baseLayerMD5": "0579fe60bb3717c49dfd7743caa84ada.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 49,
-                    "rotationCenterY": 24
+                    "rotationCenterX": 55,
+                    "rotationCenterY": 66
                 },
                 {
-                    "costumeName": "orange2-b",
+                    "costumeName": "pico-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "26c688d7544757225ff51cd2fb1519b5.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 55,
+                    "rotationCenterY": 66
+                },
+                {
+                    "costumeName": "pico-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "5f7998e007dfa70e70bbd8d43199ebba.svg",
+                    "baseLayerMD5": "adf61e2090f8060e1e8b2b0604d03751.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 49,
-                    "rotationCenterY": 27
+                    "rotationCenterX": 55,
+                    "rotationCenterY": 66
                 },
                 {
-                    "costumeName": "orange2-c",
+                    "costumeName": "pico-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "466e9e2d62ee135a2dabd5593e6f8407.svg",
+                    "baseLayerMD5": "594704bf12e3c4d9e83bb91661ad709a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 49,
-                    "rotationCenterY": 33
+                    "rotationCenterX": 55,
+                    "rotationCenterY": 66
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -60,
-            "scratchY": 9,
+            "scratchX": 80,
+            "scratchY": -26,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8713,14 +10712,12 @@
         }
     },
     {
-        "name": "Outfielder",
-        "md5": "fab7218666ba49eae992664acab53159.svg",
+        "name": "Pico Walking",
+        "md5": "8eab5fe20dd249bf22964298b1d377eb.svg",
         "type": "sprite",
         "tags": [
-            "baseball",
-            "sports",
-            "people",
-            "alex eben meyer"
+            "fantasy",
+            "walking"
         ],
         "info": [
             0,
@@ -8728,7 +10725,7 @@
             1
         ],
         "json": {
-            "objName": "Outfielder",
+            "objName": "Pico Walking",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -8741,41 +10738,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "outfielder-a",
+                    "costumeName": "Pico walk1",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "fab7218666ba49eae992664acab53159.svg",
+                    "baseLayerMD5": "8eab5fe20dd249bf22964298b1d377eb.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 38,
-                    "rotationCenterY": 61
+                    "rotationCenterX": 54,
+                    "rotationCenterY": 71
                 },
                 {
-                    "costumeName": "outfielder-b",
+                    "costumeName": "Pico walk2",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "a86813067f26947adb68897b870b1b7e.svg",
+                    "baseLayerMD5": "39ecd3c38d3f2cd81e3a17ee6c25699f.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 38,
-                    "rotationCenterY": 57
+                    "rotationCenterX": 54,
+                    "rotationCenterY": 71
                 },
                 {
-                    "costumeName": "outfielder-c",
-                    "baseLayerID": 0,
-                    "baseLayerMD5": "f6f1d2b7c6b50cbdac8cdbb55c872114.svg",
+                    "costumeName": "Pico walk3",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "43f7d92dcf9eadf77c07a6fc1eb4104f.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 46,
-                    "rotationCenterY": 80
+                    "rotationCenterX": 54,
+                    "rotationCenterY": 70
                 },
                 {
-                    "costumeName": "outfielder-d",
-                    "baseLayerID": 1,
-                    "baseLayerMD5": "c6fb3a8079bce9630ab9499926c16de9.svg",
+                    "costumeName": "Pico walk4",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "2582d012d57bca59bc0315c5c5954958.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 79,
-                    "rotationCenterY": 96
+                    "rotationCenterX": 54,
+                    "rotationCenterY": 70
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -173,
-            "scratchY": -28,
+            "scratchX": 98,
+            "scratchY": -32,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8785,21 +10782,22 @@
         }
     },
     {
-        "name": "Owl",
-        "md5": "a312273b198fcacf68976e3cc74fadb4.svg",
+        "name": "Pitcher",
+        "md5": "a8694f8f7867d95c62121e60cb8b4812.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "bird",
-            "robert hunter"
+            "baseball",
+            "sports",
+            "people",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            3,
+            4,
             1
         ],
         "json": {
-            "objName": "Owl",
+            "objName": "Pitcher",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -8812,33 +10810,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "owl-a",
+                    "costumeName": "pitcher-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "a312273b198fcacf68976e3cc74fadb4.svg",
+                    "baseLayerMD5": "a8694f8f7867d95c62121e60cb8b4812.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 113,
-                    "rotationCenterY": 54
+                    "rotationCenterX": 42,
+                    "rotationCenterY": 63
                 },
                 {
-                    "costumeName": "owl-b",
+                    "costumeName": "pitcher-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "c9916dcfe67302367b05be7f3e5c5ddf.svg",
+                    "baseLayerMD5": "13f363056c706870ede82798e6a8bcf6.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 113,
-                    "rotationCenterY": 54
+                    "rotationCenterX": 70,
+                    "rotationCenterY": 86
                 },
                 {
-                    "costumeName": "owl-c",
+                    "costumeName": "pitcher-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "8ec3a2507f1d6dc9b39f7ae5a1ebfdd3.svg",
+                    "baseLayerMD5": "6e26bd644ecd8d1f1606261d1b8f6a75.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 113,
-                    "rotationCenterY": 54
+                    "rotationCenterX": 62,
+                    "rotationCenterY": 87
+                },
+                {
+                    "costumeName": "pitcher-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "120d823290171ad83b6b328a5ffaf60e.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 82,
+                    "rotationCenterY": 46
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 167,
-            "scratchY": -3,
+            "scratchX": -5,
+            "scratchY": -79,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8848,11 +10854,11 @@
         }
     },
     {
-        "name": "Paddle",
-        "md5": "8038149bdfe24733ea2144d37d297815.svg",
+        "name": "Planet2",
+        "md5": "978784738c1d9dd4b1d397fd18bdf406.svg",
         "type": "sprite",
         "tags": [
-            "thing"
+            "space"
         ],
         "info": [
             0,
@@ -8860,30 +10866,30 @@
             1
         ],
         "json": {
-            "objName": "Paddle",
+            "objName": "Planet2",
             "sounds": [
                 {
-                    "soundName": "boing",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav",
-                    "sampleCount": 6804,
-                    "rate": 22050,
-                    "format": "adpcm"
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "paddle",
+                    "costumeName": "planet2",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "8038149bdfe24733ea2144d37d297815.svg",
+                    "baseLayerMD5": "978784738c1d9dd4b1d397fd18bdf406.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 44,
-                    "rotationCenterY": 7
+                    "rotationCenterX": 72,
+                    "rotationCenterY": 72
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 47,
-            "scratchY": -12,
+            "scratchX": 52,
+            "scratchY": 25,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8893,13 +10899,17 @@
         }
     },
     {
-        "name": "Panther",
-        "md5": "04ca2c122cff11b9bc23834d6f79361e.svg",
+        "name": "Polar Bear",
+        "md5": "c96435a1b9ad2ed37b2c9c5aac6d1fb4.svg",
         "type": "sprite",
         "tags": [
             "animals",
-            "tiger",
-            "leopard",
+            "cold",
+            "north pole",
+            "south pole",
+            "ice",
+            "antarctica",
+            "arctic",
             "robert hunter"
         ],
         "info": [
@@ -8908,7 +10918,7 @@
             1
         ],
         "json": {
-            "objName": "Panther",
+            "objName": "Polar Bear",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -8921,33 +10931,33 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "panther-a",
-                    "baseLayerID": 0,
-                    "baseLayerMD5": "04ca2c122cff11b9bc23834d6f79361e.svg",
+                    "costumeName": "polar bear-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "c96435a1b9ad2ed37b2c9c5aac6d1fb4.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 125,
-                    "rotationCenterY": 81
+                    "rotationCenterX": 104,
+                    "rotationCenterY": 46
                 },
                 {
-                    "costumeName": "panther-b",
-                    "baseLayerID": 1,
-                    "baseLayerMD5": "f8c33765d1105f3bb4cd145fad0f717e.svg",
+                    "costumeName": "polar bear-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "4f9b9061414deedeeebd369a496aba07.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 125,
-                    "rotationCenterY": 81
+                    "rotationCenterX": 104,
+                    "rotationCenterY": 46
                 },
                 {
-                    "costumeName": "panther-c",
-                    "baseLayerID": 2,
-                    "baseLayerMD5": "096bf9cad84def12eef2b5d84736b393.svg",
+                    "costumeName": "polar bear-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "defad238b915f766449e9dcb719bb6e0.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 125,
-                    "rotationCenterY": 81
+                    "rotationCenterX": 104,
+                    "rotationCenterY": 46
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -27,
-            "scratchY": 8,
+            "scratchX": 109,
+            "scratchY": -55,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -8957,56 +10967,60 @@
         }
     },
     {
-        "name": "Parrot",
-        "md5": "098570b8e1aa85b32f9b4eb07bea3af2.svg",
+        "name": "Potion",
+        "md5": "a317b50b255a208455a7733091adad23.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "bird",
-            "birb",
-            "tropical",
-            "color",
-            "flying",
-            "flappers"
+            "fantasy",
+            "ipzy",
+            "things"
         ],
         "info": [
             0,
-            2,
+            3,
             1
         ],
         "json": {
-            "objName": "Parrot",
+            "objName": "Potion",
             "sounds": [
                 {
-                    "soundName": "bird",
+                    "soundName": "pop",
                     "soundID": -1,
-                    "md5": "18bd4b634a3f992a16b30344c7d810e0.wav",
-                    "sampleCount": 3840,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
                     "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "parrot-a",
+                    "costumeName": "potion-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "098570b8e1aa85b32f9b4eb07bea3af2.svg",
+                    "baseLayerMD5": "a317b50b255a208455a7733091adad23.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 86,
-                    "rotationCenterY": 106
+                    "rotationCenterX": 15,
+                    "rotationCenterY": 21
                 },
                 {
-                    "costumeName": "parrot-b",
+                    "costumeName": "potion-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "721255a0733c9d8d2ba518ff09b3b7cb.svg",
+                    "baseLayerMD5": "5f96576605c3a022df48278b630da745.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 49,
-                    "rotationCenterY": 31
+                    "rotationCenterX": 15,
+                    "rotationCenterY": 28
+                },
+                {
+                    "costumeName": "potion-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "92d0184c28fac9acb0fb720ec599d61d.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 15,
+                    "rotationCenterY": 42
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 77,
-            "scratchY": 23,
+            "scratchX": 86,
+            "scratchY": 7,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9016,20 +11030,21 @@
         }
     },
     {
-        "name": "Pencil",
-        "md5": "4495fcb0443cebc5d43e66243a88f1ac.svg",
+        "name": "Prince",
+        "md5": "a760bed1cfc28a30b2dc7fd045c90792.svg",
         "type": "sprite",
         "tags": [
-            "thing",
-            "yellow"
+            "people",
+            "☥",
+            "fantasy"
         ],
         "info": [
             0,
-            2,
+            1,
             1
         ],
         "json": {
-            "objName": "Pencil",
+            "objName": "Prince",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -9042,25 +11057,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "pencil-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "4495fcb0443cebc5d43e66243a88f1ac.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 49,
-                    "rotationCenterY": 54
-                },
-                {
-                    "costumeName": "pencil-b",
+                    "costumeName": "prince",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "21088922dbe127f6d2e58e2e83fb632e.svg",
+                    "baseLayerMD5": "a760bed1cfc28a30b2dc7fd045c90792.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 48,
-                    "rotationCenterY": 68
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 75
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 57,
-            "scratchY": 42,
+            "scratchX": -73,
+            "scratchY": -42,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9070,22 +11077,23 @@
         }
     },
     {
-        "name": "Penguin 2",
-        "md5": "c17d9e4bdb59c574e0c34aa70af516da.svg",
+        "name": "Princess",
+        "md5": "fcbf44a543dfda884d8acbd6af66faad.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "bird",
-            "winter",
-            "antarctica"
+            "fantasy",
+            "people",
+            "ipzy",
+            "castle",
+            "emotions"
         ],
         "info": [
             0,
-            3,
+            5,
             1
         ],
         "json": {
-            "objName": "Penguin 2",
+            "objName": "Princess",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -9098,33 +11106,49 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "penguin2-a",
+                    "costumeName": "princess-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "c17d9e4bdb59c574e0c34aa70af516da.svg",
+                    "baseLayerMD5": "fcbf44a543dfda884d8acbd6af66faad.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 54,
-                    "rotationCenterY": 61
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 150
                 },
                 {
-                    "costumeName": "penguin2-b",
+                    "costumeName": "princess-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "35fec7aa5f60cca945fe0615413f1f08.svg",
+                    "baseLayerMD5": "562e5eba4a598118411be3062cfbb26f.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 48,
-                    "rotationCenterY": 62
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 150
                 },
                 {
-                    "costumeName": "penguin2-c",
+                    "costumeName": "princess-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "18fa51a64ebd5518f0c5c465525346e5.svg",
+                    "baseLayerMD5": "f3e5f466d406745cf1b6ce44b0567b9a.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 48,
-                    "rotationCenterY": 61
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 150
+                },
+                {
+                    "costumeName": "princess-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "663134f64588f0c55e77767ba9039cfe.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 150
+                },
+                {
+                    "costumeName": "princess-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ad0ecbf907d132ddbb547666551ac087.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 75,
+                    "rotationCenterY": 150
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -58,
-            "scratchY": -19,
+            "scratchX": 123,
+            "scratchY": -13,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9134,12 +11158,15 @@
         }
     },
     {
-        "name": "Pico",
-        "md5": "0579fe60bb3717c49dfd7743caa84ada.svg",
+        "name": "Pufferfish",
+        "md5": "81d7db99142a39c9082be2c2183f2175.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "drawing"
+            "animals",
+            "ocean",
+            "sea",
+            "underwater",
+            "daria skrybchencko"
         ],
         "info": [
             0,
@@ -9147,7 +11174,7 @@
             1
         ],
         "json": {
-            "objName": "Pico",
+            "objName": "Pufferfish",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -9160,41 +11187,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "pico-a",
+                    "costumeName": "pufferfish-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "0579fe60bb3717c49dfd7743caa84ada.svg",
+                    "baseLayerMD5": "81d7db99142a39c9082be2c2183f2175.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 55,
-                    "rotationCenterY": 66
+                    "rotationCenterX": 69,
+                    "rotationCenterY": 61
                 },
                 {
-                    "costumeName": "pico-b",
+                    "costumeName": "pufferfish-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "26c688d7544757225ff51cd2fb1519b5.svg",
+                    "baseLayerMD5": "6ea79950db63f5ac24d6c5091df3836b.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 55,
-                    "rotationCenterY": 66
+                    "rotationCenterX": 69,
+                    "rotationCenterY": 61
                 },
                 {
-                    "costumeName": "pico-c",
+                    "costumeName": "pufferfish-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "adf61e2090f8060e1e8b2b0604d03751.svg",
+                    "baseLayerMD5": "4acf5bc398c19d58acf69fce047ee8f6.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 55,
-                    "rotationCenterY": 66
+                    "rotationCenterX": 69,
+                    "rotationCenterY": 61
                 },
                 {
-                    "costumeName": "pico-d",
+                    "costumeName": "pufferfish-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "594704bf12e3c4d9e83bb91661ad709a.svg",
+                    "baseLayerMD5": "c214fa8a9ceed06db03664007b8ad5c6.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 55,
-                    "rotationCenterY": 66
+                    "rotationCenterX": 69,
+                    "rotationCenterY": 61
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 80,
-            "scratchY": -26,
+            "scratchX": -30,
+            "scratchY": 53,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9204,12 +11231,13 @@
         }
     },
     {
-        "name": "Pico Walking",
-        "md5": "8eab5fe20dd249bf22964298b1d377eb.svg",
+        "name": "Puppy",
+        "md5": "2768d9e44a0aab055856d301bbc2b04e.png",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "walking"
+            "animals",
+            "dog",
+            "puppy"
         ],
         "info": [
             0,
@@ -9217,54 +11245,54 @@
             1
         ],
         "json": {
-            "objName": "Pico Walking",
+            "objName": "Puppy",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "dog2",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
+                    "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav",
+                    "sampleCount": 3168,
+                    "rate": 22050,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "Pico walk1",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "8eab5fe20dd249bf22964298b1d377eb.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 54,
-                    "rotationCenterY": 71
-                },
-                {
-                    "costumeName": "Pico walk2",
+                    "costumeName": "puppy right",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "39ecd3c38d3f2cd81e3a17ee6c25699f.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 54,
-                    "rotationCenterY": 71
+                    "baseLayerMD5": "2768d9e44a0aab055856d301bbc2b04e.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 107,
+                    "rotationCenterY": 103
                 },
                 {
-                    "costumeName": "Pico walk3",
+                    "costumeName": "puppy sit",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "43f7d92dcf9eadf77c07a6fc1eb4104f.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 54,
-                    "rotationCenterY": 70
+                    "baseLayerMD5": "c7817052ed9e78057f877d0d56b5c6a6.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 87,
+                    "rotationCenterY": 112
                 },
                 {
-                    "costumeName": "Pico walk4",
+                    "costumeName": "puppy side",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "2582d012d57bca59bc0315c5c5954958.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 54,
-                    "rotationCenterY": 70
+                    "baseLayerMD5": "c4aeb5c39b39ef57a3f18ace54cf7db1.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 104,
+                    "rotationCenterY": 114
+                },
+                {
+                    "costumeName": "puppy back",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "05630bfa94501a3e5d61ce443a0cea70.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 234,
+                    "rotationCenterY": 94
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 98,
-            "scratchY": -32,
+            "scratchX": -91,
+            "scratchY": 33,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9274,22 +11302,24 @@
         }
     },
     {
-        "name": "Pitcher",
-        "md5": "a8694f8f7867d95c62121e60cb8b4812.svg",
+        "name": "Rabbit",
+        "md5": "2f42891c3f3d63c0e591aeabc5946533.svg",
         "type": "sprite",
         "tags": [
-            "baseball",
-            "sports",
-            "people",
-            "alex eben meyer"
+            "animals",
+            "daria skrybchencko",
+            "mammal",
+            "bunny",
+            "bunnies",
+            "fluffy"
         ],
         "info": [
             0,
-            4,
+            5,
             1
         ],
         "json": {
-            "objName": "Pitcher",
+            "objName": "Rabbit",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -9302,41 +11332,49 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "pitcher-a",
-                    "baseLayerID": 2,
-                    "baseLayerMD5": "a8694f8f7867d95c62121e60cb8b4812.svg",
+                    "costumeName": "rabbit-a",
+                    "baseLayerID": 5,
+                    "baseLayerMD5": "2f42891c3f3d63c0e591aeabc5946533.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 42,
-                    "rotationCenterY": 63
+                    "rotationCenterX": 84,
+                    "rotationCenterY": 84
                 },
                 {
-                    "costumeName": "pitcher-b",
-                    "baseLayerID": 3,
-                    "baseLayerMD5": "13f363056c706870ede82798e6a8bcf6.svg",
+                    "costumeName": "rabbit-b",
+                    "baseLayerID": 6,
+                    "baseLayerMD5": "80e05ff501040cdc9f52fa6782e06fd2.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 70,
-                    "rotationCenterY": 86
+                    "rotationCenterX": 84,
+                    "rotationCenterY": 84
                 },
                 {
-                    "costumeName": "pitcher-c",
-                    "baseLayerID": 4,
-                    "baseLayerMD5": "6e26bd644ecd8d1f1606261d1b8f6a75.svg",
+                    "costumeName": "rabbit-c",
+                    "baseLayerID": 7,
+                    "baseLayerMD5": "88ed8b7925baa025b6c7fc628a64b9b1.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 62,
-                    "rotationCenterY": 87
+                    "rotationCenterX": 84,
+                    "rotationCenterY": 84
                 },
                 {
-                    "costumeName": "pitcher-d",
-                    "baseLayerID": 5,
-                    "baseLayerMD5": "120d823290171ad83b6b328a5ffaf60e.svg",
+                    "costumeName": "rabbit-d",
+                    "baseLayerID": 8,
+                    "baseLayerMD5": "5f3b8df4d6ab8a72e887f89f554db0be.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 82,
-                    "rotationCenterY": 46
+                    "rotationCenterX": 84,
+                    "rotationCenterY": 84
+                },
+                {
+                    "costumeName": "rabbit-e",
+                    "baseLayerID": 9,
+                    "baseLayerMD5": "3003f1135f4aa3b6c361734243621260.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 84,
+                    "rotationCenterY": 84
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -5,
-            "scratchY": -79,
+            "scratchX": 71,
+            "scratchY": -48,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9346,11 +11384,14 @@
         }
     },
     {
-        "name": "Planet2",
-        "md5": "978784738c1d9dd4b1d397fd18bdf406.svg",
+        "name": "Rainbow",
+        "md5": "680a806bd87a28c8b25b5f9b6347f022.svg",
         "type": "sprite",
         "tags": [
-            "space"
+            "things",
+            "flying",
+            "drawing",
+            "color"
         ],
         "info": [
             0,
@@ -9358,7 +11399,7 @@
             1
         ],
         "json": {
-            "objName": "Planet2",
+            "objName": "Rainbow",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -9371,17 +11412,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "planet2",
+                    "costumeName": "rainbow",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "978784738c1d9dd4b1d397fd18bdf406.svg",
+                    "baseLayerMD5": "680a806bd87a28c8b25b5f9b6347f022.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 72,
-                    "rotationCenterY": 72
+                    "rotationCenterY": 36
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 52,
-            "scratchY": 25,
+            "scratchX": -91,
+            "scratchY": 11,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9391,21 +11432,22 @@
         }
     },
     {
-        "name": "Potion",
-        "md5": "a317b50b255a208455a7733091adad23.svg",
+        "name": "Referee",
+        "md5": "0959403aeb134ed2932a85c77e261122.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
-            "ipzy",
-            "things"
+            "sports",
+            "soccer",
+            "football",
+            "alex eben meyer"
         ],
         "info": [
             0,
-            3,
+            4,
             1
         ],
         "json": {
-            "objName": "Potion",
+            "objName": "Referee",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -9418,33 +11460,41 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "potion-a",
-                    "baseLayerID": 30,
-                    "baseLayerMD5": "a317b50b255a208455a7733091adad23.svg",
+                    "costumeName": "referee-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "0959403aeb134ed2932a85c77e261122.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 15,
-                    "rotationCenterY": 21
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
                 },
                 {
-                    "costumeName": "potion-b",
-                    "baseLayerID": 31,
-                    "baseLayerMD5": "5f96576605c3a022df48278b630da745.svg",
+                    "costumeName": "referee-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "866b9e1ad2e0584216dd45fe7d50d6f5.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 15,
-                    "rotationCenterY": 28
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
                 },
                 {
-                    "costumeName": "potion-c",
-                    "baseLayerID": 32,
-                    "baseLayerMD5": "92d0184c28fac9acb0fb720ec599d61d.svg",
+                    "costumeName": "referee-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "21a3869435fbd470ef60960a78b06b16.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 15,
-                    "rotationCenterY": 42
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
+                },
+                {
+                    "costumeName": "referee-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "5e037aca5446a7e57093e45fe6f18c9e.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 68
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 86,
-            "scratchY": 7,
+            "scratchX": 170,
+            "scratchY": 8,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9454,13 +11504,13 @@
         }
     },
     {
-        "name": "Prince",
-        "md5": "a760bed1cfc28a30b2dc7fd045c90792.svg",
+        "name": "Reindeer",
+        "md5": "0fff0b181cc4d9250b5b985cc283b049.svg",
         "type": "sprite",
         "tags": [
-            "people",
-            "☥",
-            "fantasy"
+            "animals",
+            "mammals",
+            "holiday"
         ],
         "info": [
             0,
@@ -9468,7 +11518,7 @@
             1
         ],
         "json": {
-            "objName": "Prince",
+            "objName": "Reindeer",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -9481,17 +11531,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "prince",
+                    "costumeName": "reindeer",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "a760bed1cfc28a30b2dc7fd045c90792.svg",
+                    "baseLayerMD5": "0fff0b181cc4d9250b5b985cc283b049.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 75
+                    "rotationCenterX": 39,
+                    "rotationCenterY": 70
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -73,
-            "scratchY": -42,
+            "scratchX": 13,
+            "scratchY": 26,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9501,23 +11551,21 @@
         }
     },
     {
-        "name": "Princess",
-        "md5": "fcbf44a543dfda884d8acbd6af66faad.svg",
+        "name": "Ripley",
+        "md5": "417ec9f25ad70281564e85e67c97aa08.svg",
         "type": "sprite",
         "tags": [
-            "fantasy",
+            "space",
             "people",
-            "ipzy",
-            "castle",
-            "emotions"
+            "wren mcdonald"
         ],
         "info": [
             0,
-            5,
+            6,
             1
         ],
         "json": {
-            "objName": "Princess",
+            "objName": "Ripley",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -9530,49 +11578,57 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "princess-a",
-                    "baseLayerID": 56,
-                    "baseLayerMD5": "fcbf44a543dfda884d8acbd6af66faad.svg",
+                    "costumeName": "ripley-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "417ec9f25ad70281564e85e67c97aa08.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 150
+                    "rotationCenterX": 57,
+                    "rotationCenterY": 89
                 },
                 {
-                    "costumeName": "princess-b",
-                    "baseLayerID": 57,
-                    "baseLayerMD5": "562e5eba4a598118411be3062cfbb26f.svg",
+                    "costumeName": "ripley-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e40918acf5c4d1d0d42b437b6b6e965d.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 150
+                    "rotationCenterX": 57,
+                    "rotationCenterY": 89
                 },
                 {
-                    "costumeName": "princess-c",
-                    "baseLayerID": 58,
-                    "baseLayerMD5": "f3e5f466d406745cf1b6ce44b0567b9a.svg",
+                    "costumeName": "ripley-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "5fb713effcdae17208e6e89527bf720c.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 150
+                    "rotationCenterX": 57,
+                    "rotationCenterY": 89
                 },
                 {
-                    "costumeName": "princess-d",
-                    "baseLayerID": 59,
-                    "baseLayerMD5": "663134f64588f0c55e77767ba9039cfe.svg",
+                    "costumeName": "ripley-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "6c6597c221c9a5b46c160f537b9795a2.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 150
+                    "rotationCenterX": 85,
+                    "rotationCenterY": 89
                 },
                 {
-                    "costumeName": "princess-e",
-                    "baseLayerID": 60,
-                    "baseLayerMD5": "ad0ecbf907d132ddbb547666551ac087.svg",
+                    "costumeName": "ripley-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "92909161afd79673c93a77d15fe8d456.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 75,
-                    "rotationCenterY": 150
+                    "rotationCenterX": 56,
+                    "rotationCenterY": 89
+                },
+                {
+                    "costumeName": "ripley-f",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "16e31a6b510ba4e8c1215e6e3a41d9f9.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 58,
+                    "rotationCenterY": 90
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 123,
-            "scratchY": -13,
+            "scratchX": 163,
+            "scratchY": -51,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9582,70 +11638,76 @@
         }
     },
     {
-        "name": "Pufferfish",
-        "md5": "81d7db99142a39c9082be2c2183f2175.svg",
+        "name": "Robot",
+        "md5": "cb3985cd066ccbab11954709b3d54c17.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "ocean",
-            "sea",
-            "underwater",
-            "daria skrybchencko"
+            "space",
+            "robot",
+            "wren mcdonald"
         ],
         "info": [
             0,
             4,
-            1
+            2
         ],
         "json": {
-            "objName": "Pufferfish",
+            "objName": "Robot",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "computer beep",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
+                    "md5": "28c76b6bebd04be1383fe9ba4933d263.wav",
+                    "sampleCount": 9536,
+                    "rate": 11025,
+                    "format": ""
+                },
+                {
+                    "soundName": "buzz whir",
+                    "soundID": -1,
+                    "md5": "d4f76ded6bccd765958d15b63804de55.wav",
+                    "sampleCount": 9037,
                     "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "pufferfish-a",
+                    "costumeName": "robot-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "81d7db99142a39c9082be2c2183f2175.svg",
+                    "baseLayerMD5": "cb3985cd066ccbab11954709b3d54c17.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 69,
-                    "rotationCenterY": 61
+                    "rotationCenterX": 74,
+                    "rotationCenterY": 109
                 },
                 {
-                    "costumeName": "pufferfish-b",
+                    "costumeName": "robot-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "6ea79950db63f5ac24d6c5091df3836b.svg",
+                    "baseLayerMD5": "fc9276d0909539fd31c30db7b2e08bf9.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 69,
-                    "rotationCenterY": 61
+                    "rotationCenterX": 56,
+                    "rotationCenterY": 97
                 },
                 {
-                    "costumeName": "pufferfish-c",
+                    "costumeName": "robot-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "4acf5bc398c19d58acf69fce047ee8f6.svg",
+                    "baseLayerMD5": "c5e02f00d233199fea1c51b71c402ce4.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 69,
-                    "rotationCenterY": 61
+                    "rotationCenterX": 63,
+                    "rotationCenterY": 97
                 },
                 {
-                    "costumeName": "pufferfish-d",
+                    "costumeName": "robot-d",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "c214fa8a9ceed06db03664007b8ad5c6.svg",
+                    "baseLayerMD5": "ca2cf7d6c0446fbce36621006a4b0fac.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 69,
-                    "rotationCenterY": 61
+                    "rotationCenterX": 59,
+                    "rotationCenterY": 95
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -30,
-            "scratchY": 53,
+            "scratchX": -183,
+            "scratchY": 15,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9655,79 +11717,92 @@
         }
     },
     {
-        "name": "Rabbit",
-        "md5": "2f42891c3f3d63c0e591aeabc5946533.svg",
+        "name": "Rocketship",
+        "md5": "7d51af7c52e137ef137012595bac928d.svg",
         "type": "sprite",
         "tags": [
-            "animals",
-            "daria skrybchencko",
-            "mammal",
-            "bunny",
-            "bunnies",
-            "fluffy"
+            "space",
+            "spaceship",
+            "wren mcdonald"
         ],
         "info": [
             0,
             5,
-            1
+            3
         ],
         "json": {
-            "objName": "Rabbit",
+            "objName": "Rocketship",
             "sounds": [
                 {
-                    "soundName": "pop",
+                    "soundName": "space ripple",
                     "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
+                    "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav",
+                    "sampleCount": 41149,
+                    "rate": 11025,
+                    "format": ""
+                },
+                {
+                    "soundName": "laser1",
+                    "soundID": -1,
+                    "md5": "46571f8ec0f2cc91666c80e312579082.wav",
+                    "sampleCount": 516,
+                    "rate": 11025,
+                    "format": ""
+                },
+                {
+                    "soundName": "laser2",
+                    "soundID": -1,
+                    "md5": "27654ed2e3224f0a3f77c244e4fae9aa.wav",
+                    "sampleCount": 755,
                     "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "rabbit-a",
-                    "baseLayerID": 5,
-                    "baseLayerMD5": "2f42891c3f3d63c0e591aeabc5946533.svg",
+                    "costumeName": "rocketship-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "7d51af7c52e137ef137012595bac928d.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 84,
-                    "rotationCenterY": 84
+                    "rotationCenterX": 66,
+                    "rotationCenterY": 107
                 },
                 {
-                    "costumeName": "rabbit-b",
-                    "baseLayerID": 6,
-                    "baseLayerMD5": "80e05ff501040cdc9f52fa6782e06fd2.svg",
+                    "costumeName": "rocketship-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ae2634705b7a4fd31f4c1d1bb0e12545.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 84,
-                    "rotationCenterY": 84
+                    "rotationCenterX": 53,
+                    "rotationCenterY": 106
                 },
                 {
-                    "costumeName": "rabbit-c",
-                    "baseLayerID": 7,
-                    "baseLayerMD5": "88ed8b7925baa025b6c7fc628a64b9b1.svg",
+                    "costumeName": "rocketship-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "3d375cd033f1a7161cae56b114f4cfdb.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 84,
-                    "rotationCenterY": 84
+                    "rotationCenterX": 61,
+                    "rotationCenterY": 107
                 },
                 {
-                    "costumeName": "rabbit-d",
-                    "baseLayerID": 8,
-                    "baseLayerMD5": "5f3b8df4d6ab8a72e887f89f554db0be.svg",
+                    "costumeName": "rocketship-d",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "a456964f32cd7e7bd83fe076bf29558b.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 84,
-                    "rotationCenterY": 84
+                    "rotationCenterX": 63,
+                    "rotationCenterY": 107
                 },
                 {
-                    "costumeName": "rabbit-e",
-                    "baseLayerID": 9,
-                    "baseLayerMD5": "3003f1135f4aa3b6c361734243621260.svg",
+                    "costumeName": "rocketship-e",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "5b5cc9904ba63ca2801b61a73d4dcb7e.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 84,
-                    "rotationCenterY": 84
+                    "rotationCenterX": 71,
+                    "rotationCenterY": 107
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 71,
-            "scratchY": -48,
+            "scratchX": 116,
+            "scratchY": 82,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9737,14 +11812,12 @@
         }
     },
     {
-        "name": "Rainbow",
-        "md5": "680a806bd87a28c8b25b5f9b6347f022.svg",
+        "name": "Rocks",
+        "md5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg",
         "type": "sprite",
         "tags": [
             "things",
-            "flying",
-            "drawing",
-            "color"
+            "potassium"
         ],
         "info": [
             0,
@@ -9752,7 +11825,7 @@
             1
         ],
         "json": {
-            "objName": "Rainbow",
+            "objName": "Rocks",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -9765,17 +11838,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "rainbow",
+                    "costumeName": "rocks",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "680a806bd87a28c8b25b5f9b6347f022.svg",
+                    "baseLayerMD5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 72,
-                    "rotationCenterY": 36
+                    "rotationCenterX": 59,
+                    "rotationCenterY": 15
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -91,
-            "scratchY": 11,
+            "scratchX": 35,
+            "scratchY": 36,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9785,22 +11858,22 @@
         }
     },
     {
-        "name": "Referee",
-        "md5": "0959403aeb134ed2932a85c77e261122.svg",
+        "name": "Rooster",
+        "md5": "8a6f3145a24db10d5a2f90975ce8140c.svg",
         "type": "sprite",
         "tags": [
-            "sports",
-            "soccer",
-            "football",
-            "alex eben meyer"
+            "animals",
+            "chicken",
+            "farm",
+            "owen davey"
         ],
         "info": [
             0,
-            4,
+            3,
             1
         ],
         "json": {
-            "objName": "Referee",
+            "objName": "Rooster",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -9813,88 +11886,33 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "referee-a",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "0959403aeb134ed2932a85c77e261122.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
-                },
-                {
-                    "costumeName": "referee-b",
+                    "costumeName": "rooster-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "866b9e1ad2e0584216dd45fe7d50d6f5.svg",
+                    "baseLayerMD5": "8a6f3145a24db10d5a2f90975ce8140c.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
+                    "rotationCenterX": 55,
+                    "rotationCenterY": 58
                 },
                 {
-                    "costumeName": "referee-c",
+                    "costumeName": "rooster-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "21a3869435fbd470ef60960a78b06b16.svg",
+                    "baseLayerMD5": "6a14a205b117fdb0b7a6fad91a989e96.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
+                    "rotationCenterX": 55,
+                    "rotationCenterY": 59
                 },
                 {
-                    "costumeName": "referee-d",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "5e037aca5446a7e57093e45fe6f18c9e.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 76,
-                    "rotationCenterY": 68
-                }
-            ],
-            "currentCostumeIndex": 0,
-            "scratchX": 170,
-            "scratchY": 8,
-            "scale": 1,
-            "direction": 90,
-            "rotationStyle": "normal",
-            "isDraggable": false,
-            "visible": true,
-            "spriteInfo": {}
-        }
-    },
-    {
-        "name": "Reindeer",
-        "md5": "0fff0b181cc4d9250b5b985cc283b049.svg",
-        "type": "sprite",
-        "tags": [
-            "animals",
-            "mammals",
-            "holiday"
-        ],
-        "info": [
-            0,
-            1,
-            1
-        ],
-        "json": {
-            "objName": "Reindeer",
-            "sounds": [
-                {
-                    "soundName": "pop",
-                    "soundID": -1,
-                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
-                    "sampleCount": 258,
-                    "rate": 11025,
-                    "format": ""
-                }
-            ],
-            "costumes": [
-                {
-                    "costumeName": "reindeer",
+                    "costumeName": "rooster-c",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "0fff0b181cc4d9250b5b985cc283b049.svg",
+                    "baseLayerMD5": "f23408efb8f47022da51c8fba6003cbb.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 39,
-                    "rotationCenterY": 70
+                    "rotationCenterX": 55,
+                    "rotationCenterY": 59
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 13,
-            "scratchY": 26,
+            "scratchX": 125,
+            "scratchY": -99,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9904,21 +11922,19 @@
         }
     },
     {
-        "name": "Ripley",
-        "md5": "417ec9f25ad70281564e85e67c97aa08.svg",
+        "name": "Ruby",
+        "md5": "c30210e8f719c3a4d2c7cc6917a39300.png",
         "type": "sprite",
         "tags": [
-            "space",
-            "people",
-            "wren mcdonald"
+            "people"
         ],
         "info": [
             0,
-            6,
+            2,
             1
         ],
         "json": {
-            "objName": "Ripley",
+            "objName": "Ruby",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -9931,57 +11947,25 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "ripley-a",
-                    "baseLayerID": 0,
-                    "baseLayerMD5": "417ec9f25ad70281564e85e67c97aa08.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 57,
-                    "rotationCenterY": 89
-                },
-                {
-                    "costumeName": "ripley-b",
-                    "baseLayerID": 1,
-                    "baseLayerMD5": "e40918acf5c4d1d0d42b437b6b6e965d.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 57,
-                    "rotationCenterY": 89
-                },
-                {
-                    "costumeName": "ripley-c",
-                    "baseLayerID": 2,
-                    "baseLayerMD5": "5fb713effcdae17208e6e89527bf720c.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 57,
-                    "rotationCenterY": 89
-                },
-                {
-                    "costumeName": "ripley-d",
-                    "baseLayerID": 3,
-                    "baseLayerMD5": "6c6597c221c9a5b46c160f537b9795a2.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 85,
-                    "rotationCenterY": 89
-                },
-                {
-                    "costumeName": "ripley-e",
-                    "baseLayerID": 4,
-                    "baseLayerMD5": "92909161afd79673c93a77d15fe8d456.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 56,
-                    "rotationCenterY": 89
+                    "costumeName": "ruby-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "c30210e8f719c3a4d2c7cc6917a39300.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 54,
+                    "rotationCenterY": 172
                 },
                 {
-                    "costumeName": "ripley-f",
-                    "baseLayerID": 5,
-                    "baseLayerMD5": "16e31a6b510ba4e8c1215e6e3a41d9f9.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 58,
-                    "rotationCenterY": 90
+                    "costumeName": "ruby-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "fc15fdbcc535473f6140cab28197f3be.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 76,
+                    "rotationCenterY": 142
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 163,
-            "scratchY": -51,
+            "scratchX": -39,
+            "scratchY": 37,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -9991,76 +11975,43 @@
         }
     },
     {
-        "name": "Robot",
-        "md5": "cb3985cd066ccbab11954709b3d54c17.svg",
+        "name": "Sailboat",
+        "md5": "ca241a938a2c44a0de6b91230012ff39.png",
         "type": "sprite",
         "tags": [
-            "space",
-            "robot",
-            "wren mcdonald"
+            "boat",
+            "transportation"
         ],
         "info": [
             0,
-            4,
-            2
+            1,
+            1
         ],
         "json": {
-            "objName": "Robot",
+            "objName": "Sailboat",
             "sounds": [
                 {
-                    "soundName": "computer beep",
-                    "soundID": 3,
-                    "md5": "28c76b6bebd04be1383fe9ba4933d263.wav",
-                    "sampleCount": 9536,
-                    "rate": 11025,
-                    "format": ""
-                },
-                {
-                    "soundName": "buzz whir",
-                    "soundID": 4,
-                    "md5": "d4f76ded6bccd765958d15b63804de55.wav",
-                    "sampleCount": 9037,
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
                     "rate": 11025,
                     "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "robot-a",
-                    "baseLayerID": 22,
-                    "baseLayerMD5": "cb3985cd066ccbab11954709b3d54c17.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 74,
-                    "rotationCenterY": 109
-                },
-                {
-                    "costumeName": "robot-b",
-                    "baseLayerID": 23,
-                    "baseLayerMD5": "fc9276d0909539fd31c30db7b2e08bf9.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 56,
-                    "rotationCenterY": 97
-                },
-                {
-                    "costumeName": "robot-c",
-                    "baseLayerID": 24,
-                    "baseLayerMD5": "c5e02f00d233199fea1c51b71c402ce4.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 63,
-                    "rotationCenterY": 97
-                },
-                {
-                    "costumeName": "robot-d",
-                    "baseLayerID": 25,
-                    "baseLayerMD5": "ca2cf7d6c0446fbce36621006a4b0fac.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 59,
-                    "rotationCenterY": 95
+                    "costumeName": "sailboat",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ca241a938a2c44a0de6b91230012ff39.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 224,
+                    "rotationCenterY": 182
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -183,
-            "scratchY": 15,
+            "scratchX": 18,
+            "scratchY": 49,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -10070,12 +12021,11 @@
         }
     },
     {
-        "name": "Rocks",
-        "md5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg",
+        "name": "Sam",
+        "md5": "8208e99159b36c957fb9fbc187e51bc7.png",
         "type": "sprite",
         "tags": [
-            "things",
-            "potassium"
+            "people"
         ],
         "info": [
             0,
@@ -10083,7 +12033,7 @@
             1
         ],
         "json": {
-            "objName": "Rocks",
+            "objName": "Sam",
             "sounds": [
                 {
                     "soundName": "pop",
@@ -10096,17 +12046,17 @@
             ],
             "costumes": [
                 {
-                    "costumeName": "rocks",
-                    "baseLayerID": -1,
-                    "baseLayerMD5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 59,
-                    "rotationCenterY": 15
+                    "costumeName": "sam",
+                    "baseLayerID": 0,
+                    "baseLayerMD5": "8208e99159b36c957fb9fbc187e51bc7.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 117,
+                    "rotationCenterY": 159
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": 35,
-            "scratchY": 36,
+            "scratchX": 50,
+            "scratchY": -28,
             "scale": 1,
             "direction": 90,
             "rotationStyle": "normal",
@@ -10347,7 +12297,7 @@
             "costumes": [
                 {
                     "costumeName": "shark-a",
-                    "baseLayerID": 8,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "4ca6776e9c021e8b21c3346793c9361d.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 150,
@@ -10355,7 +12305,7 @@
                 },
                 {
                     "costumeName": "shark-b",
-                    "baseLayerID": 9,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "0bb623f0bbec53ee9667cee0b7ad6d47.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 150,
@@ -10782,7 +12732,7 @@
     },
     {
         "name": "Skates",
-        "md5": "00e5e173400662875a26bb7d6556346a.svg",
+        "md5": "97936eccad5c8d86ea9008c5bbb50b63.svg",
         "type": "sprite",
         "tags": [
             "fashion",
@@ -10810,10 +12760,10 @@
                 {
                     "costumeName": "skates",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "00e5e173400662875a26bb7d6556346a.svg",
+                    "baseLayerMD5": "97936eccad5c8d86ea9008c5bbb50b63.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 44,
-                    "rotationCenterY": -21
+                    "rotationCenterX": 39,
+                    "rotationCenterY": 19
                 }
             ],
             "currentCostumeIndex": 0,
@@ -11112,100 +13062,6 @@
             "spriteInfo": {}
         }
     },
-    {
-        "name": "Spaceship",
-        "md5": "7d51af7c52e137ef137012595bac928d.svg",
-        "type": "sprite",
-        "tags": [
-            "space",
-            "wren mcdonald"
-        ],
-        "info": [
-            0,
-            5,
-            3
-        ],
-        "json": {
-            "objName": "Spaceship",
-            "sounds": [
-                {
-                    "soundName": "space ripple",
-                    "soundID": 0,
-                    "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav",
-                    "sampleCount": 41149,
-                    "rate": 11025,
-                    "format": ""
-                },
-                {
-                    "soundName": "laser1",
-                    "soundID": 1,
-                    "md5": "46571f8ec0f2cc91666c80e312579082.wav",
-                    "sampleCount": 516,
-                    "rate": 11025,
-                    "format": ""
-                },
-                {
-                    "soundName": "laser2",
-                    "soundID": 2,
-                    "md5": "27654ed2e3224f0a3f77c244e4fae9aa.wav",
-                    "sampleCount": 755,
-                    "rate": 11025,
-                    "format": ""
-                }
-            ],
-            "costumes": [
-                {
-                    "costumeName": "spaceship-a",
-                    "baseLayerID": 17,
-                    "baseLayerMD5": "7d51af7c52e137ef137012595bac928d.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 66,
-                    "rotationCenterY": 107
-                },
-                {
-                    "costumeName": "spaceship-b",
-                    "baseLayerID": 18,
-                    "baseLayerMD5": "ae2634705b7a4fd31f4c1d1bb0e12545.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 53,
-                    "rotationCenterY": 106
-                },
-                {
-                    "costumeName": "spaceship-c",
-                    "baseLayerID": 19,
-                    "baseLayerMD5": "3d375cd033f1a7161cae56b114f4cfdb.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 61,
-                    "rotationCenterY": 107
-                },
-                {
-                    "costumeName": "spaceship-d",
-                    "baseLayerID": 20,
-                    "baseLayerMD5": "a456964f32cd7e7bd83fe076bf29558b.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 63,
-                    "rotationCenterY": 107
-                },
-                {
-                    "costumeName": "spaceship-e",
-                    "baseLayerID": 21,
-                    "baseLayerMD5": "5b5cc9904ba63ca2801b61a73d4dcb7e.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 71,
-                    "rotationCenterY": 107
-                }
-            ],
-            "currentCostumeIndex": 0,
-            "scratchX": 116,
-            "scratchY": 82,
-            "scale": 1,
-            "direction": 90,
-            "rotationStyle": "normal",
-            "isDraggable": false,
-            "visible": true,
-            "spriteInfo": {}
-        }
-    },
     {
         "name": "Speaker",
         "md5": "44dc3a2ec161999545914d1f77332d76.svg",
@@ -11296,26 +13152,71 @@
                     "format": "adpcm"
                 },
                 {
-                    "soundName": "drum funky",
+                    "soundName": "drum funky",
+                    "soundID": -1,
+                    "md5": "fb56022366d21b299cbc3fd5e16000c2.wav",
+                    "sampleCount": 44748,
+                    "rate": 22050,
+                    "format": "adpcm"
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "speaker",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "44dc3a2ec161999545914d1f77332d76.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 53,
+                    "rotationCenterY": 79
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -1,
+            "scratchY": -28,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Squirrel",
+        "md5": "b86efb7f23387300cf9037a61f328ab9.png",
+        "type": "sprite",
+        "tags": [
+            "animals"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Squirrel",
+            "sounds": [
+                {
+                    "soundName": "meow",
                     "soundID": -1,
-                    "md5": "fb56022366d21b299cbc3fd5e16000c2.wav",
-                    "sampleCount": 44748,
+                    "md5": "83c36d806dc92327b9e7049a565c6bff.wav",
+                    "sampleCount": 18688,
                     "rate": 22050,
-                    "format": "adpcm"
+                    "format": ""
                 }
             ],
             "costumes": [
                 {
-                    "costumeName": "speaker",
+                    "costumeName": "squirrel",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "44dc3a2ec161999545914d1f77332d76.svg",
-                    "bitmapResolution": 1,
-                    "rotationCenterX": 53,
-                    "rotationCenterY": 79
+                    "baseLayerMD5": "b86efb7f23387300cf9037a61f328ab9.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 158,
+                    "rotationCenterY": 146
                 }
             ],
             "currentCostumeIndex": 0,
-            "scratchX": -1,
+            "scratchX": 52,
             "scratchY": -28,
             "scale": 1,
             "direction": 90,
@@ -11697,7 +13598,7 @@
     },
     {
         "name": "Taco",
-        "md5": "d224b30c54bd4d6000c935938c7f5d7e.svg",
+        "md5": "d4a2cea411c6030f017f25184562559d.svg",
         "type": "sprite",
         "tags": [
             "food",
@@ -11726,15 +13627,15 @@
                 {
                     "costumeName": "taco-a",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "d224b30c54bd4d6000c935938c7f5d7e.svg",
+                    "baseLayerMD5": "d4a2cea411c6030f017f25184562559d.svg",
                     "bitmapResolution": 1,
-                    "rotationCenterX": 20,
+                    "rotationCenterX": 19,
                     "rotationCenterY": 15
                 },
                 {
                     "costumeName": "taco-b",
                     "baseLayerID": -1,
-                    "baseLayerMD5": "6dee4f866d79e6475d9824ba11973037.svg",
+                    "baseLayerMD5": "cef6f6d7c92fc1f008077319ac12dc5e.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 56,
                     "rotationCenterY": 15
@@ -11829,6 +13730,194 @@
             "spriteInfo": {}
         }
     },
+    {
+        "name": "Ten80 Dance",
+        "md5": "90ca0205c56c6c7f0e8892469de49bda.png",
+        "type": "sprite",
+        "tags": [
+            "people",
+            "dance"
+        ],
+        "info": [
+            0,
+            13,
+            1
+        ],
+        "json": {
+            "objName": "Ten80 Dance",
+            "sounds": [
+                {
+                    "soundName": "dance celebrate",
+                    "soundID": -1,
+                    "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav",
+                    "sampleCount": 176401,
+                    "rate": 22050,
+                    "format": "adpcm"
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "Ten80 stance",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "90ca0205c56c6c7f0e8892469de49bda.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 70,
+                    "rotationCenterY": 278
+                },
+                {
+                    "costumeName": "Ten80 top stand",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b2f75ac1cd84615efaea6a7d7a4ee205.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 74,
+                    "rotationCenterY": 274
+                },
+                {
+                    "costumeName": "Ten80 top R step",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "733d05c17699758e2723599de333fdc0.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 200,
+                    "rotationCenterY": 270
+                },
+                {
+                    "costumeName": "Ten80 top L step",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e51942bb4651e616549cfce1ad36ff83.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 144,
+                    "rotationCenterY": 266
+                },
+                {
+                    "costumeName": "Ten80 top freeze",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "8313a2229d555bbdb8ce92dffed067ad.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 54,
+                    "rotationCenterY": 258
+                },
+                {
+                    "costumeName": "Ten80 top R cross",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "e06ac61e96e3a5abf4ca0863816f5d28.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 206,
+                    "rotationCenterY": 252
+                },
+                {
+                    "costumeName": "Ten80 pop front",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "86602007ae2952236d47d7fd587a56b6.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 72,
+                    "rotationCenterY": 266
+                },
+                {
+                    "costumeName": "Ten80 pop down",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "14685e432d683c918328e7fb070b7029.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 74,
+                    "rotationCenterY": 188
+                },
+                {
+                    "costumeName": "Ten80 pop left",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "3c9a7eac1d696ae74ee40c6efa8fa4dd.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 184,
+                    "rotationCenterY": 266
+                },
+                {
+                    "costumeName": "Ten80 pop right",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "548bdf23904e409c1fcc0992f44d0b4c.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 78,
+                    "rotationCenterY": 276
+                },
+                {
+                    "costumeName": "Ten80 pop L arm",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "ce2141ce97921ddc333bc65ff5bec27d.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 100,
+                    "rotationCenterY": 280
+                },
+                {
+                    "costumeName": "Ten80 pop stand",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "377b8521c436f4f39ed2100fa1cb7c2f.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 92,
+                    "rotationCenterY": 280
+                },
+                {
+                    "costumeName": "Ten80 pop R arm",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "279bd5499329f98a68cf92c68014e198.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 74,
+                    "rotationCenterY": 278
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": -86,
+            "scratchY": 4,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
+    {
+        "name": "Tennis Ball",
+        "md5": "34fa36004be0340ec845ba6bbeb5e5d5.png",
+        "type": "sprite",
+        "tags": [
+            "ball",
+            "sports"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Tennis Ball",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "tennisball",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "34fa36004be0340ec845ba6bbeb5e5d5.png",
+                    "bitmapResolution": 2,
+                    "rotationCenterX": 30,
+                    "rotationCenterY": 30
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 39,
+            "scratchY": -20,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
     {
         "name": "Tera",
         "md5": "b54a4a9087435863ab6f6c908f1cac99.svg",
@@ -11962,6 +14051,51 @@
             "spriteInfo": {}
         }
     },
+    {
+        "name": "Trampoline",
+        "md5": "20b16bcb61396df304cad5e8886ceb46.png",
+        "type": "sprite",
+        "tags": [
+            "sports"
+        ],
+        "info": [
+            0,
+            1,
+            1
+        ],
+        "json": {
+            "objName": "Trampoline",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "trampoline",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "20b16bcb61396df304cad5e8886ceb46.png",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 100,
+                    "rotationCenterY": 41
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 20,
+            "scratchY": -40,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
     {
         "name": "Tree1",
         "md5": "8c40e2662c55d17bc384f47165ac43c1.svg",
@@ -12203,7 +14337,7 @@
             "costumes": [
                 {
                     "costumeName": "unicorn",
-                    "baseLayerID": 7,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "bd2cf980966c13d5ad3ab403bae4bb05.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 100,
@@ -12298,7 +14432,7 @@
             "costumes": [
                 {
                     "costumeName": "unicorn-run-a",
-                    "baseLayerID": 65,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "c6456df027561c74b70b8b25ab83fec9.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -12306,7 +14440,7 @@
                 },
                 {
                     "costumeName": "unicorn-run-b",
-                    "baseLayerID": 66,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "f2d6c5b62b56d0cc51598126c74e0ace.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -12314,7 +14448,7 @@
                 },
                 {
                     "costumeName": "unicorn-run-c",
-                    "baseLayerID": 67,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "fba367b11a710bf542333649c4d68e1e.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -12322,7 +14456,7 @@
                 },
                 {
                     "costumeName": "unicorn-run-d",
-                    "baseLayerID": 68,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "20bad70a67e0c7ed3255c65780cdb2a8.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -12330,7 +14464,7 @@
                 },
                 {
                     "costumeName": "unicorn-run-e",
-                    "baseLayerID": 69,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "39db08aafdde1542e755b8ead8df7a1f.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -12338,7 +14472,7 @@
                 },
                 {
                     "costumeName": "unicorn-run-f",
-                    "baseLayerID": 70,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "d66d0625702433a4cbd7591e39676700.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 130,
@@ -12438,7 +14572,7 @@
             "costumes": [
                 {
                     "costumeName": "wand",
-                    "baseLayerID": 29,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "1aa56e9ef7043eaf36ecfe8e330271b7.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 12,
@@ -12599,7 +14733,7 @@
             "costumes": [
                 {
                     "costumeName": "witch-a",
-                    "baseLayerID": 36,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "cbc54e15cd62f0c16369587377636099.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 65,
@@ -12607,7 +14741,7 @@
                 },
                 {
                     "costumeName": "witch-b",
-                    "baseLayerID": 37,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "64d2c4c51e6cb6008cd5e93f77e6f591.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 65,
@@ -12615,7 +14749,7 @@
                 },
                 {
                     "costumeName": "witch-c",
-                    "baseLayerID": 38,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "00b768c3da5b4ee3efddf05d1eb88de2.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 65,
@@ -12623,7 +14757,7 @@
                 },
                 {
                     "costumeName": "witch-d",
-                    "baseLayerID": 39,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "4fe4c0ee34a9028f2c6988b7294a61c1.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 65,
@@ -12673,7 +14807,7 @@
             "costumes": [
                 {
                     "costumeName": "wizard-a",
-                    "baseLayerID": 0,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "9632aab80fce1c5bdb58150b29cb0067.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 87,
@@ -12681,7 +14815,7 @@
                 },
                 {
                     "costumeName": "wizard-b",
-                    "baseLayerID": 1,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "36c9b8b93ddb2c392b7145862fc4e8d8.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 79,
@@ -12689,7 +14823,7 @@
                 },
                 {
                     "costumeName": "wizard-c",
-                    "baseLayerID": 2,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "16d4d221a2182278cfa6b0621f455cf6.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 87,
@@ -12739,7 +14873,7 @@
             "costumes": [
                 {
                     "costumeName": "wizard-toad-a",
-                    "baseLayerID": 52,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "fd5c4cce36e866489febc227e23b21aa.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 87,
@@ -12747,7 +14881,7 @@
                 },
                 {
                     "costumeName": "wizard-toad-b",
-                    "baseLayerID": 53,
+                    "baseLayerID": -1,
                     "baseLayerMD5": "4c260807d4ac4c0ad39760f1efeef1de.svg",
                     "bitmapResolution": 1,
                     "rotationCenterX": 87,
@@ -12765,6 +14899,69 @@
             "spriteInfo": {}
         }
     },
+    {
+        "name": "Zebra",
+        "md5": "d8392aea6e767a4b5032cffd04e688e3.svg",
+        "type": "sprite",
+        "tags": [
+            "animals",
+            "savanna",
+            "robert hunter"
+        ],
+        "info": [
+            0,
+            3,
+            1
+        ],
+        "json": {
+            "objName": "Zebra",
+            "sounds": [
+                {
+                    "soundName": "pop",
+                    "soundID": -1,
+                    "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav",
+                    "sampleCount": 258,
+                    "rate": 11025,
+                    "format": ""
+                }
+            ],
+            "costumes": [
+                {
+                    "costumeName": "zebra-a",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "d8392aea6e767a4b5032cffd04e688e3.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 97,
+                    "rotationCenterY": 56
+                },
+                {
+                    "costumeName": "zebra-b",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "3a6be1df1d9d9865b6bba4f569de6793.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 97,
+                    "rotationCenterY": 56
+                },
+                {
+                    "costumeName": "zebra-c",
+                    "baseLayerID": -1,
+                    "baseLayerMD5": "b0d2d3e746493640fc34fd7b2efd6612.svg",
+                    "bitmapResolution": 1,
+                    "rotationCenterX": 97,
+                    "rotationCenterY": 56
+                }
+            ],
+            "currentCostumeIndex": 0,
+            "scratchX": 122,
+            "scratchY": 11,
+            "scale": 1,
+            "direction": 90,
+            "rotationStyle": "normal",
+            "isDraggable": false,
+            "visible": true,
+            "spriteInfo": {}
+        }
+    },
     {
         "name": "Block-A",
         "md5": "602a16930a8050e1298e1a0ae844363e.svg",