Where to find the pictures from bsd?

function preload() {
scene = this;
// preload background image
scene.load.image(“bg”, “/resources/forest_BG.png”);
scene.load.image(“floor”, “/resources/forest_floor.png”);
scene.load.spritesheet(“dino_run”, “/resources/Dino_RunAnim.png”, { frameWidth: 442, frameHeight: 455 });
scene.load.spritesheet(“dino_fall”, “/resources/Dino_FallAnim.png”, { frameWidth: 632, frameHeight: 402 });
// preload rock image
scene.load.image(“rock”, “/resources/rock.png”);
scene.load.image(“restartButton”, “/resources/restart_btn.png”);
}