├── .gitignore ├── CNAME ├── README.md ├── package.json ├── src ├── index.html ├── js │ ├── background.js │ ├── browser-util.js │ ├── draw.js │ ├── info.js │ ├── json │ │ ├── customNames.json │ │ └── talents.json │ ├── lib │ │ ├── backgroundImages.js │ │ ├── name.js │ │ ├── talent.js │ │ └── util.js │ └── main.js └── style.css ├── static ├── favicon.ico └── images │ ├── backgrounds │ ├── bg0.webp │ ├── bg1.webp │ ├── bg10.webp │ ├── bg11.webp │ ├── bg12.webp │ ├── bg13.webp │ ├── bg14.webp │ ├── bg15.webp │ ├── bg16.webp │ ├── bg17.webp │ ├── bg18.webp │ ├── bg19.webp │ ├── bg2.webp │ ├── bg20.webp │ ├── bg21.webp │ ├── bg22.webp │ ├── bg23.webp │ ├── bg24.webp │ ├── bg25.webp │ ├── bg26.webp │ ├── bg27.webp │ ├── bg3.webp │ ├── bg4.webp │ ├── bg5.webp │ ├── bg6.webp │ ├── bg7.webp │ ├── bg8.webp │ └── bg9.webp │ ├── down.svg │ ├── info-button-animated.webp │ ├── info-button.webp │ ├── info-close.svg │ ├── loading-indicator.webp │ ├── mogu.webp │ ├── random.svg │ ├── swap.svg │ ├── talents │ ├── ame-base.webp │ ├── ame-body-0.webp │ ├── ame-body-1.webp │ ├── ame-etc-0.webp │ ├── ame-eye-left.webp │ ├── ame-hair-0.webp │ ├── ame-hair-1.webp │ ├── ame-medium.webp │ ├── ame-mouth-blend-sub.webp │ ├── ame-mouth-cutout.webp │ ├── ame-nose-sub.webp │ ├── ame-original.webp │ ├── ame-small.webp │ ├── anya-base.webp │ ├── anya-body-0.webp │ ├── anya-body-1.webp │ ├── anya-etc-0.webp │ ├── anya-eye-left.webp │ ├── anya-hair-0.webp │ ├── anya-hair-1.webp │ ├── anya-medium.webp │ ├── anya-mouth-blend-sub.webp │ ├── anya-nose-sub.webp │ ├── anya-original.webp │ ├── anya-small.webp │ ├── calli-base.webp │ ├── calli-body-0.webp │ ├── calli-body-1.webp │ ├── calli-etc-0.webp │ ├── calli-eye-left.webp │ ├── calli-hair-0.webp │ ├── calli-medium.webp │ ├── calli-mouth-blend-sub.webp │ ├── calli-nose-sub.webp │ ├── calli-original.webp │ ├── calli-small.webp │ ├── coco-base.webp │ ├── coco-body-0.webp │ ├── coco-body-1.webp │ ├── coco-body-2.webp │ ├── coco-etc-0.webp │ ├── coco-etc-1.webp │ ├── coco-etc-2.webp │ ├── coco-eye-left.webp │ ├── coco-hair-0.webp │ ├── coco-hair-1.webp │ ├── coco-hair-2.webp │ ├── coco-medium.webp │ ├── coco-mouth-blend-sub.webp │ ├── coco-nose-add.webp │ ├── coco-nose-sub.webp │ ├── coco-original.webp │ ├── coco-small.webp │ ├── fubuki-base.webp │ ├── fubuki-body-0.webp │ ├── fubuki-body-1.webp │ ├── fubuki-etc-0.webp │ ├── fubuki-eye-left.webp │ ├── fubuki-hair-0.webp │ ├── fubuki-hair-1.webp │ ├── fubuki-medium.webp │ ├── fubuki-mouth-blend-sub.webp │ ├── fubuki-nose-sub.webp │ ├── fubuki-original.webp │ ├── fubuki-small.webp │ ├── gura-base.webp │ ├── gura-body-0.webp │ ├── gura-body-1.webp │ ├── gura-eye-left.webp │ ├── gura-hair-0.webp │ ├── gura-hair-1.webp │ ├── gura-medium.webp │ ├── gura-mouth-blend-sub.webp │ ├── gura-nose-sub.webp │ ├── gura-original.webp │ ├── gura-small.webp │ ├── haato-base.webp │ ├── haato-body-0.webp │ ├── haato-body-1.webp │ ├── haato-etc-0.webp │ ├── haato-etc-1.webp │ ├── haato-eye-left.webp │ ├── haato-hair-0.webp │ ├── haato-hair-1.webp │ ├── haato-medium.webp │ ├── haato-mouth-blend-sub.webp │ ├── haato-nose-add.webp │ ├── haato-nose-sub.webp │ ├── haato-original.webp │ ├── haato-small.webp │ ├── ina-base.webp │ ├── ina-body-0.webp │ ├── ina-body-1.webp │ ├── ina-body-2.webp │ ├── ina-etc-0.webp │ ├── ina-eye-left.webp │ ├── ina-hair-0.webp │ ├── ina-hair-1.webp │ ├── ina-hair-2.webp │ ├── ina-medium.webp │ ├── ina-mouth-blend-add.webp │ ├── ina-mouth-blend-sub.webp │ ├── ina-nose-add.webp │ ├── ina-nose-sub.webp │ ├── ina-original.webp │ ├── ina-small.webp │ ├── kiara-base.webp │ ├── kiara-body-0.webp │ ├── kiara-body-1.webp │ ├── kiara-body-2.webp │ ├── kiara-etc-0.webp │ ├── kiara-etc-1.webp │ ├── kiara-etc-2.webp │ ├── kiara-eye-left.webp │ ├── kiara-hair-0.webp │ ├── kiara-hair-1.webp │ ├── kiara-hair-2.webp │ ├── kiara-medium.webp │ ├── kiara-mouth-blend-add.webp │ ├── kiara-mouth-blend-sub.webp │ ├── kiara-nose-add.webp │ ├── kiara-nose-sub.webp │ ├── kiara-original.webp │ ├── kiara-small.webp │ ├── korone-base.webp │ ├── korone-body-0.webp │ ├── korone-body-1.webp │ ├── korone-etc-0.webp │ ├── korone-etc-1.webp │ ├── korone-etc-2.webp │ ├── korone-eye-left.webp │ ├── korone-hair-0.webp │ ├── korone-medium.webp │ ├── korone-mouth-blend-add.webp │ ├── korone-mouth-blend-sub.webp │ ├── korone-nose-sub.webp │ ├── korone-original.webp │ ├── korone-small.webp │ ├── okayu-base.webp │ ├── okayu-body-0.webp │ ├── okayu-body-1.webp │ ├── okayu-etc-0.webp │ ├── okayu-eye-left.webp │ ├── okayu-hair-0.webp │ ├── okayu-medium.webp │ ├── okayu-mouth-blend-add.webp │ ├── okayu-mouth-blend-sub.webp │ ├── okayu-mouth-cutout.webp │ ├── okayu-nose-sub.webp │ ├── okayu-original.webp │ ├── okayu-small.webp │ ├── ollie-base.webp │ ├── ollie-body-0.webp │ ├── ollie-body-1.webp │ ├── ollie-etc-0.webp │ ├── ollie-eye-left.webp │ ├── ollie-eye-right.webp │ ├── ollie-hair-0.webp │ ├── ollie-hair-1.webp │ ├── ollie-hair-2.webp │ ├── ollie-medium.webp │ ├── ollie-mouth-cutout.webp │ ├── ollie-nose-sub.webp │ ├── ollie-original.webp │ ├── ollie-small.webp │ ├── pekora-base.webp │ ├── pekora-body-0.webp │ ├── pekora-body-1.webp │ ├── pekora-body-2.webp │ ├── pekora-eye-left.webp │ ├── pekora-hair-0.webp │ ├── pekora-hair-1.webp │ ├── pekora-medium.webp │ ├── pekora-mouth-blend-add.webp │ ├── pekora-mouth-blend-sub.webp │ ├── pekora-mouth-cutout.webp │ ├── pekora-nose-sub.webp │ ├── pekora-original.webp │ ├── pekora-small.webp │ ├── sora-base.webp │ ├── sora-body-0.webp │ ├── sora-body-1.webp │ ├── sora-etc-0.webp │ ├── sora-etc-1.webp │ ├── sora-eye-left.webp │ ├── sora-hair-0.webp │ ├── sora-medium.webp │ ├── sora-mouth-blend-add.webp │ ├── sora-mouth-blend-sub.webp │ ├── sora-nose-sub.webp │ ├── sora-original.webp │ └── sora-small.webp │ ├── unitinu.svg │ └── up.svg ├── test ├── name.test.js ├── talent.test.js └── util.test.js └── webpack ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/CNAME -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/js/background.js -------------------------------------------------------------------------------- /src/js/browser-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/js/browser-util.js -------------------------------------------------------------------------------- /src/js/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/js/draw.js -------------------------------------------------------------------------------- /src/js/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/js/info.js -------------------------------------------------------------------------------- /src/js/json/customNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/js/json/customNames.json -------------------------------------------------------------------------------- /src/js/json/talents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/js/json/talents.json -------------------------------------------------------------------------------- /src/js/lib/backgroundImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/js/lib/backgroundImages.js -------------------------------------------------------------------------------- /src/js/lib/name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/js/lib/name.js -------------------------------------------------------------------------------- /src/js/lib/talent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/js/lib/talent.js -------------------------------------------------------------------------------- /src/js/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/js/lib/util.js -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/js/main.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/src/style.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/images/backgrounds/bg0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg0.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg1.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg10.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg11.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg12.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg13.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg14.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg15.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg16.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg17.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg17.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg18.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg18.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg19.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg19.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg2.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg20.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg20.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg21.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg21.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg22.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg22.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg23.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg23.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg24.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg25.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg25.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg26.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg26.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg27.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg27.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg3.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg4.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg5.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg6.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg7.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg8.webp -------------------------------------------------------------------------------- /static/images/backgrounds/bg9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/backgrounds/bg9.webp -------------------------------------------------------------------------------- /static/images/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/down.svg -------------------------------------------------------------------------------- /static/images/info-button-animated.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/info-button-animated.webp -------------------------------------------------------------------------------- /static/images/info-button.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/info-button.webp -------------------------------------------------------------------------------- /static/images/info-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/info-close.svg -------------------------------------------------------------------------------- /static/images/loading-indicator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/loading-indicator.webp -------------------------------------------------------------------------------- /static/images/mogu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/mogu.webp -------------------------------------------------------------------------------- /static/images/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/random.svg -------------------------------------------------------------------------------- /static/images/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/swap.svg -------------------------------------------------------------------------------- /static/images/talents/ame-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-base.webp -------------------------------------------------------------------------------- /static/images/talents/ame-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/ame-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/ame-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/ame-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/ame-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/ame-hair-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-hair-1.webp -------------------------------------------------------------------------------- /static/images/talents/ame-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-medium.webp -------------------------------------------------------------------------------- /static/images/talents/ame-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/ame-mouth-cutout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-mouth-cutout.webp -------------------------------------------------------------------------------- /static/images/talents/ame-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/ame-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-original.webp -------------------------------------------------------------------------------- /static/images/talents/ame-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ame-small.webp -------------------------------------------------------------------------------- /static/images/talents/anya-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-base.webp -------------------------------------------------------------------------------- /static/images/talents/anya-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/anya-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/anya-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/anya-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/anya-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/anya-hair-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-hair-1.webp -------------------------------------------------------------------------------- /static/images/talents/anya-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-medium.webp -------------------------------------------------------------------------------- /static/images/talents/anya-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/anya-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/anya-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-original.webp -------------------------------------------------------------------------------- /static/images/talents/anya-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/anya-small.webp -------------------------------------------------------------------------------- /static/images/talents/calli-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/calli-base.webp -------------------------------------------------------------------------------- /static/images/talents/calli-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/calli-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/calli-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/calli-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/calli-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/calli-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/calli-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/calli-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/calli-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/calli-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/calli-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/calli-medium.webp -------------------------------------------------------------------------------- /static/images/talents/calli-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/calli-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/calli-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/calli-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/calli-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/calli-original.webp -------------------------------------------------------------------------------- /static/images/talents/calli-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/calli-small.webp -------------------------------------------------------------------------------- /static/images/talents/coco-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-base.webp -------------------------------------------------------------------------------- /static/images/talents/coco-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/coco-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/coco-body-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-body-2.webp -------------------------------------------------------------------------------- /static/images/talents/coco-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/coco-etc-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-etc-1.webp -------------------------------------------------------------------------------- /static/images/talents/coco-etc-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-etc-2.webp -------------------------------------------------------------------------------- /static/images/talents/coco-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/coco-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/coco-hair-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-hair-1.webp -------------------------------------------------------------------------------- /static/images/talents/coco-hair-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-hair-2.webp -------------------------------------------------------------------------------- /static/images/talents/coco-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-medium.webp -------------------------------------------------------------------------------- /static/images/talents/coco-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/coco-nose-add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-nose-add.webp -------------------------------------------------------------------------------- /static/images/talents/coco-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/coco-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-original.webp -------------------------------------------------------------------------------- /static/images/talents/coco-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/coco-small.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-base.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-hair-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-hair-1.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-medium.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-original.webp -------------------------------------------------------------------------------- /static/images/talents/fubuki-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/fubuki-small.webp -------------------------------------------------------------------------------- /static/images/talents/gura-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/gura-base.webp -------------------------------------------------------------------------------- /static/images/talents/gura-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/gura-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/gura-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/gura-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/gura-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/gura-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/gura-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/gura-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/gura-hair-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/gura-hair-1.webp -------------------------------------------------------------------------------- /static/images/talents/gura-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/gura-medium.webp -------------------------------------------------------------------------------- /static/images/talents/gura-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/gura-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/gura-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/gura-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/gura-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/gura-original.webp -------------------------------------------------------------------------------- /static/images/talents/gura-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/gura-small.webp -------------------------------------------------------------------------------- /static/images/talents/haato-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-base.webp -------------------------------------------------------------------------------- /static/images/talents/haato-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/haato-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/haato-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/haato-etc-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-etc-1.webp -------------------------------------------------------------------------------- /static/images/talents/haato-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/haato-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/haato-hair-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-hair-1.webp -------------------------------------------------------------------------------- /static/images/talents/haato-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-medium.webp -------------------------------------------------------------------------------- /static/images/talents/haato-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/haato-nose-add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-nose-add.webp -------------------------------------------------------------------------------- /static/images/talents/haato-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/haato-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-original.webp -------------------------------------------------------------------------------- /static/images/talents/haato-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/haato-small.webp -------------------------------------------------------------------------------- /static/images/talents/ina-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-base.webp -------------------------------------------------------------------------------- /static/images/talents/ina-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/ina-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/ina-body-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-body-2.webp -------------------------------------------------------------------------------- /static/images/talents/ina-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/ina-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/ina-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/ina-hair-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-hair-1.webp -------------------------------------------------------------------------------- /static/images/talents/ina-hair-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-hair-2.webp -------------------------------------------------------------------------------- /static/images/talents/ina-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-medium.webp -------------------------------------------------------------------------------- /static/images/talents/ina-mouth-blend-add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-mouth-blend-add.webp -------------------------------------------------------------------------------- /static/images/talents/ina-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/ina-nose-add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-nose-add.webp -------------------------------------------------------------------------------- /static/images/talents/ina-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/ina-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-original.webp -------------------------------------------------------------------------------- /static/images/talents/ina-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ina-small.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-base.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-body-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-body-2.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-etc-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-etc-1.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-etc-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-etc-2.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-hair-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-hair-1.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-hair-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-hair-2.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-medium.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-mouth-blend-add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-mouth-blend-add.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-nose-add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-nose-add.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-original.webp -------------------------------------------------------------------------------- /static/images/talents/kiara-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/kiara-small.webp -------------------------------------------------------------------------------- /static/images/talents/korone-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-base.webp -------------------------------------------------------------------------------- /static/images/talents/korone-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/korone-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/korone-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/korone-etc-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-etc-1.webp -------------------------------------------------------------------------------- /static/images/talents/korone-etc-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-etc-2.webp -------------------------------------------------------------------------------- /static/images/talents/korone-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/korone-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/korone-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-medium.webp -------------------------------------------------------------------------------- /static/images/talents/korone-mouth-blend-add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-mouth-blend-add.webp -------------------------------------------------------------------------------- /static/images/talents/korone-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/korone-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/korone-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-original.webp -------------------------------------------------------------------------------- /static/images/talents/korone-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/korone-small.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-base.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-medium.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-mouth-blend-add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-mouth-blend-add.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-mouth-cutout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-mouth-cutout.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-original.webp -------------------------------------------------------------------------------- /static/images/talents/okayu-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/okayu-small.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-base.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-eye-right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-eye-right.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-hair-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-hair-1.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-hair-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-hair-2.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-medium.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-mouth-cutout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-mouth-cutout.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-original.webp -------------------------------------------------------------------------------- /static/images/talents/ollie-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/ollie-small.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-base.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-body-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-body-2.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-hair-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-hair-1.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-medium.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-mouth-blend-add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-mouth-blend-add.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-mouth-cutout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-mouth-cutout.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-original.webp -------------------------------------------------------------------------------- /static/images/talents/pekora-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/pekora-small.webp -------------------------------------------------------------------------------- /static/images/talents/sora-base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-base.webp -------------------------------------------------------------------------------- /static/images/talents/sora-body-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-body-0.webp -------------------------------------------------------------------------------- /static/images/talents/sora-body-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-body-1.webp -------------------------------------------------------------------------------- /static/images/talents/sora-etc-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-etc-0.webp -------------------------------------------------------------------------------- /static/images/talents/sora-etc-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-etc-1.webp -------------------------------------------------------------------------------- /static/images/talents/sora-eye-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-eye-left.webp -------------------------------------------------------------------------------- /static/images/talents/sora-hair-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-hair-0.webp -------------------------------------------------------------------------------- /static/images/talents/sora-medium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-medium.webp -------------------------------------------------------------------------------- /static/images/talents/sora-mouth-blend-add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-mouth-blend-add.webp -------------------------------------------------------------------------------- /static/images/talents/sora-mouth-blend-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-mouth-blend-sub.webp -------------------------------------------------------------------------------- /static/images/talents/sora-nose-sub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-nose-sub.webp -------------------------------------------------------------------------------- /static/images/talents/sora-original.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-original.webp -------------------------------------------------------------------------------- /static/images/talents/sora-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/talents/sora-small.webp -------------------------------------------------------------------------------- /static/images/unitinu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/unitinu.svg -------------------------------------------------------------------------------- /static/images/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/static/images/up.svg -------------------------------------------------------------------------------- /test/name.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/test/name.test.js -------------------------------------------------------------------------------- /test/talent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/test/talent.test.js -------------------------------------------------------------------------------- /test/util.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/test/util.test.js -------------------------------------------------------------------------------- /webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/webpack/webpack.common.js -------------------------------------------------------------------------------- /webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/webpack/webpack.dev.js -------------------------------------------------------------------------------- /webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaexenc/hololive-fusion-generator/HEAD/webpack/webpack.prod.js --------------------------------------------------------------------------------