gitextract_8o2dwx8g/ ├── .editorconfig ├── .gitignore ├── .prettierrc ├── README.md ├── dev/ │ ├── docs/ │ │ └── stack.md │ └── test/ │ └── helpers.spec.js ├── guide.htm ├── index.htm ├── src/ │ ├── assets/ │ │ └── favicon/ │ │ ├── browserconfig.xml │ │ └── manifest.json │ ├── css/ │ │ ├── style-dark.css │ │ └── style.css │ ├── js/ │ │ ├── constants.js │ │ ├── events.js │ │ ├── exporters.js │ │ ├── generators.js │ │ ├── graphics.js │ │ ├── helpers.js │ │ ├── keymap.js │ │ ├── midi/ │ │ │ ├── commands.js │ │ │ ├── constants.js │ │ │ ├── math.js │ │ │ ├── midi.js │ │ │ └── ui.js │ │ ├── modifiers.js │ │ ├── scaleworkshop.js │ │ ├── state/ │ │ │ ├── actions-dom.js │ │ │ ├── actions.js │ │ │ ├── on-ready.js │ │ │ ├── reactions-dom.js │ │ │ ├── reactions.js │ │ │ └── state.js │ │ ├── synth/ │ │ │ ├── Delay.js │ │ │ ├── Synth.js │ │ │ └── Voice.js │ │ ├── synth.js │ │ ├── ui.js │ │ └── user.js │ └── lib/ │ ├── bootstrap-3.3.7-dist/ │ │ ├── css/ │ │ │ ├── bootstrap-theme.css │ │ │ └── bootstrap.css │ │ └── js/ │ │ ├── bootstrap.js │ │ └── npm.js │ ├── decimal.js │ ├── eventemitter3.js │ ├── jquery-ui-1.12.1/ │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── external/ │ │ │ └── jquery/ │ │ │ └── jquery.js │ │ ├── index.html │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.theme.css │ │ └── package.json │ └── socicon/ │ ├── Read Me.txt │ ├── demo-files/ │ │ ├── demo.css │ │ └── demo.js │ ├── demo.html │ ├── selection.json │ ├── style.css │ ├── style.less │ └── variables.less └── test.html