├── .dockerignore ├── .github └── workflows │ ├── bioconda-install.yml │ └── python-package-conda.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── LICENSES_THIRD_PARTY ├── MANIFEST.in ├── Makefile ├── README.md ├── biophi ├── __init__.py ├── __version__.py ├── common │ ├── __init__.py │ ├── cli │ │ ├── __init__.py │ │ ├── main.py │ │ └── web.py │ ├── utils │ │ ├── __init__.py │ │ ├── formatting.py │ │ ├── io.py │ │ ├── resources.py │ │ ├── scheduler.py │ │ ├── seq.py │ │ └── stats.py │ └── web │ │ ├── __init__.py │ │ ├── app_config.py │ │ ├── celery_config.py │ │ ├── static │ │ ├── bio.css │ │ ├── bootstrap-icons-1.0.0 │ │ │ ├── alarm-fill.svg │ │ │ ├── alarm.svg │ │ │ ├── align-bottom.svg │ │ │ ├── align-center.svg │ │ │ ├── align-end.svg │ │ │ ├── align-middle.svg │ │ │ ├── align-start.svg │ │ │ ├── align-top.svg │ │ │ ├── alt.svg │ │ │ ├── app-indicator.svg │ │ │ ├── app.svg │ │ │ ├── archive-fill.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-90deg-down.svg │ │ │ ├── arrow-90deg-left.svg │ │ │ ├── arrow-90deg-right.svg │ │ │ ├── arrow-90deg-up.svg │ │ │ ├── arrow-bar-down.svg │ │ │ ├── arrow-bar-left.svg │ │ │ ├── arrow-bar-right.svg │ │ │ ├── arrow-bar-up.svg │ │ │ ├── arrow-clockwise.svg │ │ │ ├── arrow-counterclockwise.svg │ │ │ ├── arrow-down-circle-fill.svg │ │ │ ├── arrow-down-circle.svg │ │ │ ├── arrow-down-left-circle-fill.svg │ │ │ ├── arrow-down-left-circle.svg │ │ │ ├── arrow-down-left-square-fill.svg │ │ │ ├── arrow-down-left-square.svg │ │ │ ├── arrow-down-left.svg │ │ │ ├── arrow-down-right-circle-fill.svg │ │ │ ├── arrow-down-right-circle.svg │ │ │ ├── arrow-down-right-square-fill.svg │ │ │ ├── arrow-down-right-square.svg │ │ │ ├── arrow-down-right.svg │ │ │ ├── arrow-down-short.svg │ │ │ ├── arrow-down-square-fill.svg │ │ │ ├── arrow-down-square.svg │ │ │ ├── arrow-down-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left-circle-fill.svg │ │ │ ├── arrow-left-circle.svg │ │ │ ├── arrow-left-right.svg │ │ │ ├── arrow-left-short.svg │ │ │ ├── arrow-left-square-fill.svg │ │ │ ├── arrow-left-square.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-repeat.svg │ │ │ ├── arrow-return-left.svg │ │ │ ├── arrow-return-right.svg │ │ │ ├── arrow-right-circle-fill.svg │ │ │ ├── arrow-right-circle.svg │ │ │ ├── arrow-right-short.svg │ │ │ ├── arrow-right-square-fill.svg │ │ │ ├── arrow-right-square.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up-circle-fill.svg │ │ │ ├── arrow-up-circle.svg │ │ │ ├── arrow-up-left-circle-fill.svg │ │ │ ├── arrow-up-left-circle.svg │ │ │ ├── arrow-up-left-square-fill.svg │ │ │ ├── arrow-up-left-square.svg │ │ │ ├── arrow-up-left.svg │ │ │ ├── arrow-up-right-circle-fill.svg │ │ │ ├── arrow-up-right-circle.svg │ │ │ ├── arrow-up-right-square-fill.svg │ │ │ ├── arrow-up-right-square.svg │ │ │ ├── arrow-up-right.svg │ │ │ ├── arrow-up-short.svg │ │ │ ├── arrow-up-square-fill.svg │ │ │ ├── arrow-up-square.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-angle-contract.svg │ │ │ ├── arrows-angle-expand.svg │ │ │ ├── arrows-collapse.svg │ │ │ ├── arrows-expand.svg │ │ │ ├── arrows-fullscreen.svg │ │ │ ├── arrows-move.svg │ │ │ ├── aspect-ratio-fill.svg │ │ │ ├── aspect-ratio.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── award-fill.svg │ │ │ ├── award.svg │ │ │ ├── back.svg │ │ │ ├── backspace-fill.svg │ │ │ ├── backspace-reverse-fill.svg │ │ │ ├── backspace-reverse.svg │ │ │ ├── backspace.svg │ │ │ ├── badge-4k-fill.svg │ │ │ ├── badge-4k.svg │ │ │ ├── badge-8k-fill.svg │ │ │ ├── badge-8k.svg │ │ │ ├── badge-ad-fill.svg │ │ │ ├── badge-ad.svg │ │ │ ├── badge-cc-fill.svg │ │ │ ├── badge-cc.svg │ │ │ ├── badge-hd-fill.svg │ │ │ ├── badge-hd.svg │ │ │ ├── badge-tm-fill.svg │ │ │ ├── badge-tm.svg │ │ │ ├── badge-vo-fill.svg │ │ │ ├── badge-vo.svg │ │ │ ├── bag-check-fill.svg │ │ │ ├── bag-check.svg │ │ │ ├── bag-dash-fill.svg │ │ │ ├── bag-dash.svg │ │ │ ├── bag-fill.svg │ │ │ ├── bag-plus-fill.svg │ │ │ ├── bag-plus.svg │ │ │ ├── bag-x-fill.svg │ │ │ ├── bag-x.svg │ │ │ ├── bag.svg │ │ │ ├── bar-chart-fill.svg │ │ │ ├── bar-chart-line-fill.svg │ │ │ ├── bar-chart-line.svg │ │ │ ├── bar-chart-steps.svg │ │ │ ├── bar-chart.svg │ │ │ ├── basket-fill.svg │ │ │ ├── basket.svg │ │ │ ├── basket2-fill.svg │ │ │ ├── basket2.svg │ │ │ ├── basket3-fill.svg │ │ │ ├── basket3.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery.svg │ │ │ ├── bell-fill.svg │ │ │ ├── bell.svg │ │ │ ├── bezier.svg │ │ │ ├── bezier2.svg │ │ │ ├── bicycle.svg │ │ │ ├── binoculars-fill.svg │ │ │ ├── binoculars.svg │ │ │ ├── blockquote-left.svg │ │ │ ├── blockquote-right.svg │ │ │ ├── book-fill.svg │ │ │ ├── book-half.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-check-fill.svg │ │ │ ├── bookmark-check.svg │ │ │ ├── bookmark-dash-fill.svg │ │ │ ├── bookmark-dash.svg │ │ │ ├── bookmark-fill.svg │ │ │ ├── bookmark-heart-fill.svg │ │ │ ├── bookmark-heart.svg │ │ │ ├── bookmark-plus-fill.svg │ │ │ ├── bookmark-plus.svg │ │ │ ├── bookmark-star-fill.svg │ │ │ ├── bookmark-star.svg │ │ │ ├── bookmark-x-fill.svg │ │ │ ├── bookmark-x.svg │ │ │ ├── bookmark.svg │ │ │ ├── bookmarks-fill.svg │ │ │ ├── bookmarks.svg │ │ │ ├── bookshelf.svg │ │ │ ├── bootstrap-fill.svg │ │ │ ├── bootstrap-icons.svg │ │ │ ├── bootstrap-reboot.svg │ │ │ ├── bootstrap.svg │ │ │ ├── border-style.svg │ │ │ ├── border-width.svg │ │ │ ├── bounding-box-circles.svg │ │ │ ├── bounding-box.svg │ │ │ ├── box-arrow-down-left.svg │ │ │ ├── box-arrow-down-right.svg │ │ │ ├── box-arrow-down.svg │ │ │ ├── box-arrow-in-down-left.svg │ │ │ ├── box-arrow-in-down-right.svg │ │ │ ├── box-arrow-in-down.svg │ │ │ ├── box-arrow-in-left.svg │ │ │ ├── box-arrow-in-right.svg │ │ │ ├── box-arrow-in-up-left.svg │ │ │ ├── box-arrow-in-up-right.svg │ │ │ ├── box-arrow-in-up.svg │ │ │ ├── box-arrow-left.svg │ │ │ ├── box-arrow-right.svg │ │ │ ├── box-arrow-up-left.svg │ │ │ ├── box-arrow-up-right.svg │ │ │ ├── box-arrow-up.svg │ │ │ ├── box-seam.svg │ │ │ ├── box.svg │ │ │ ├── braces.svg │ │ │ ├── bricks.svg │ │ │ ├── briefcase-fill.svg │ │ │ ├── briefcase.svg │ │ │ ├── brightness-alt-high-fill.svg │ │ │ ├── brightness-alt-high.svg │ │ │ ├── brightness-alt-low-fill.svg │ │ │ ├── brightness-alt-low.svg │ │ │ ├── brightness-high-fill.svg │ │ │ ├── brightness-high.svg │ │ │ ├── brightness-low-fill.svg │ │ │ ├── brightness-low.svg │ │ │ ├── broadcast-pin.svg │ │ │ ├── broadcast.svg │ │ │ ├── brush-fill.svg │ │ │ ├── brush.svg │ │ │ ├── bucket-fill.svg │ │ │ ├── bucket.svg │ │ │ ├── bug-fill.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullseye.svg │ │ │ ├── calculator-fill.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-check-fill.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-date-fill.svg │ │ │ ├── calendar-date.svg │ │ │ ├── calendar-day-fill.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-event-fill.svg │ │ │ ├── calendar-event.svg │ │ │ ├── calendar-fill.svg │ │ │ ├── calendar-minus-fill.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-month-fill.svg │ │ │ ├── calendar-month.svg │ │ │ ├── calendar-plus-fill.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-range-fill.svg │ │ │ ├── calendar-range.svg │ │ │ ├── calendar-week-fill.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar-x-fill.svg │ │ │ ├── calendar-x.svg │ │ │ ├── calendar.svg │ │ │ ├── calendar2-check-fill.svg │ │ │ ├── calendar2-check.svg │ │ │ ├── calendar2-date-fill.svg │ │ │ ├── calendar2-date.svg │ │ │ ├── calendar2-day-fill.svg │ │ │ ├── calendar2-day.svg │ │ │ ├── calendar2-event-fill.svg │ │ │ ├── calendar2-event.svg │ │ │ ├── calendar2-fill.svg │ │ │ ├── calendar2-minus-fill.svg │ │ │ ├── calendar2-minus.svg │ │ │ ├── calendar2-month-fill.svg │ │ │ ├── calendar2-month.svg │ │ │ ├── calendar2-plus-fill.svg │ │ │ ├── calendar2-plus.svg │ │ │ ├── calendar2-range-fill.svg │ │ │ ├── calendar2-range.svg │ │ │ ├── calendar2-week-fill.svg │ │ │ ├── calendar2-week.svg │ │ │ ├── calendar2-x-fill.svg │ │ │ ├── calendar2-x.svg │ │ │ ├── calendar2.svg │ │ │ ├── calendar3-event-fill.svg │ │ │ ├── calendar3-event.svg │ │ │ ├── calendar3-fill.svg │ │ │ ├── calendar3-range-fill.svg │ │ │ ├── calendar3-range.svg │ │ │ ├── calendar3-week-fill.svg │ │ │ ├── calendar3-week.svg │ │ │ ├── calendar3.svg │ │ │ ├── calendar4-event.svg │ │ │ ├── calendar4-range.svg │ │ │ ├── calendar4-week.svg │ │ │ ├── calendar4.svg │ │ │ ├── camera-fill.svg │ │ │ ├── camera-reels-fill.svg │ │ │ ├── camera-reels.svg │ │ │ ├── camera-video-fill.svg │ │ │ ├── camera-video-off-fill.svg │ │ │ ├── camera-video-off.svg │ │ │ ├── camera-video.svg │ │ │ ├── camera.svg │ │ │ ├── camera2.svg │ │ │ ├── capslock-fill.svg │ │ │ ├── capslock.svg │ │ │ ├── card-checklist.svg │ │ │ ├── card-heading.svg │ │ │ ├── card-image.svg │ │ │ ├── card-list.svg │ │ │ ├── card-text.svg │ │ │ ├── caret-down-fill.svg │ │ │ ├── caret-down-square-fill.svg │ │ │ ├── caret-down-square.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left-fill.svg │ │ │ ├── caret-left-square-fill.svg │ │ │ ├── caret-left-square.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right-fill.svg │ │ │ ├── caret-right-square-fill.svg │ │ │ ├── caret-right-square.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-up-fill.svg │ │ │ ├── caret-up-square-fill.svg │ │ │ ├── caret-up-square.svg │ │ │ ├── caret-up.svg │ │ │ ├── cart-check-fill.svg │ │ │ ├── cart-check.svg │ │ │ ├── cart-dash-fill.svg │ │ │ ├── cart-dash.svg │ │ │ ├── cart-fill.svg │ │ │ ├── cart-plus-fill.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cart-x-fill.svg │ │ │ ├── cart-x.svg │ │ │ ├── cart.svg │ │ │ ├── cart2.svg │ │ │ ├── cart3.svg │ │ │ ├── cart4.svg │ │ │ ├── cash-stack.svg │ │ │ ├── cash.svg │ │ │ ├── cast.svg │ │ │ ├── chat-dots-fill.svg │ │ │ ├── chat-dots.svg │ │ │ ├── chat-fill.svg │ │ │ ├── chat-left-dots-fill.svg │ │ │ ├── chat-left-dots.svg │ │ │ ├── chat-left-fill.svg │ │ │ ├── chat-left-quote-fill.svg │ │ │ ├── chat-left-quote.svg │ │ │ ├── chat-left-text-fill.svg │ │ │ ├── chat-left-text.svg │ │ │ ├── chat-left.svg │ │ │ ├── chat-quote-fill.svg │ │ │ ├── chat-quote.svg │ │ │ ├── chat-right-dots-fill.svg │ │ │ ├── chat-right-dots.svg │ │ │ ├── chat-right-fill.svg │ │ │ ├── chat-right-quote-fill.svg │ │ │ ├── chat-right-quote.svg │ │ │ ├── chat-right-text-fill.svg │ │ │ ├── chat-right-text.svg │ │ │ ├── chat-right.svg │ │ │ ├── chat-square-dots-fill.svg │ │ │ ├── chat-square-dots.svg │ │ │ ├── chat-square-fill.svg │ │ │ ├── chat-square-quote-fill.svg │ │ │ ├── chat-square-quote.svg │ │ │ ├── chat-square-text-fill.svg │ │ │ ├── chat-square-text.svg │ │ │ ├── chat-square.svg │ │ │ ├── chat-text-fill.svg │ │ │ ├── chat-text.svg │ │ │ ├── chat.svg │ │ │ ├── check-all.svg │ │ │ ├── check-circle-fill.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-square-fill.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── check2-all.svg │ │ │ ├── check2-circle.svg │ │ │ ├── check2-square.svg │ │ │ ├── check2.svg │ │ │ ├── chevron-bar-contract.svg │ │ │ ├── chevron-bar-down.svg │ │ │ ├── chevron-bar-expand.svg │ │ │ ├── chevron-bar-left.svg │ │ │ ├── chevron-bar-right.svg │ │ │ ├── chevron-bar-up.svg │ │ │ ├── chevron-compact-down.svg │ │ │ ├── chevron-compact-left.svg │ │ │ ├── chevron-compact-right.svg │ │ │ ├── chevron-compact-up.svg │ │ │ ├── chevron-contract.svg │ │ │ ├── chevron-double-down.svg │ │ │ ├── chevron-double-left.svg │ │ │ ├── chevron-double-right.svg │ │ │ ├── chevron-double-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-expand.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── circle-fill.svg │ │ │ ├── circle-half.svg │ │ │ ├── circle-square.svg │ │ │ ├── circle.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-data.svg │ │ │ ├── clipboard-minus.svg │ │ │ ├── clipboard-plus.svg │ │ │ ├── clipboard-x.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock-fill.svg │ │ │ ├── clock-history.svg │ │ │ ├── clock.svg │ │ │ ├── cloud-arrow-down-fill.svg │ │ │ ├── cloud-arrow-down.svg │ │ │ ├── cloud-arrow-up-fill.svg │ │ │ ├── cloud-arrow-up.svg │ │ │ ├── cloud-check-fill.svg │ │ │ ├── cloud-check.svg │ │ │ ├── cloud-download-fill.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-fill.svg │ │ │ ├── cloud-minus-fill.svg │ │ │ ├── cloud-minus.svg │ │ │ ├── cloud-plus-fill.svg │ │ │ ├── cloud-plus.svg │ │ │ ├── cloud-slash-fill.svg │ │ │ ├── cloud-slash.svg │ │ │ ├── cloud-upload-fill.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── code-slash.svg │ │ │ ├── code-square.svg │ │ │ ├── code.svg │ │ │ ├── collection-fill.svg │ │ │ ├── collection-play-fill.svg │ │ │ ├── collection-play.svg │ │ │ ├── collection.svg │ │ │ ├── columns-gap.svg │ │ │ ├── columns.svg │ │ │ ├── command.svg │ │ │ ├── compass-fill.svg │ │ │ ├── compass.svg │ │ │ ├── cone-striped.svg │ │ │ ├── cone.svg │ │ │ ├── controller.svg │ │ │ ├── cpu-fill.svg │ │ │ ├── cpu.svg │ │ │ ├── credit-card-2-back-fill.svg │ │ │ ├── credit-card-2-back.svg │ │ │ ├── credit-card-2-front-fill.svg │ │ │ ├── credit-card-2-front.svg │ │ │ ├── credit-card-fill.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop.svg │ │ │ ├── cup-fill.svg │ │ │ ├── cup-straw.svg │ │ │ ├── cup.svg │ │ │ ├── cursor-fill.svg │ │ │ ├── cursor-text.svg │ │ │ ├── cursor.svg │ │ │ ├── dash-circle-fill.svg │ │ │ ├── dash-circle.svg │ │ │ ├── dash-square-fill.svg │ │ │ ├── dash-square.svg │ │ │ ├── dash.svg │ │ │ ├── diagram-2-fill.svg │ │ │ ├── diagram-2.svg │ │ │ ├── diagram-3-fill.svg │ │ │ ├── diagram-3.svg │ │ │ ├── diamond-fill.svg │ │ │ ├── diamond-half.svg │ │ │ ├── diamond.svg │ │ │ ├── dice-1-fill.svg │ │ │ ├── dice-1.svg │ │ │ ├── dice-2-fill.svg │ │ │ ├── dice-2.svg │ │ │ ├── dice-3-fill.svg │ │ │ ├── dice-3.svg │ │ │ ├── dice-4-fill.svg │ │ │ ├── dice-4.svg │ │ │ ├── dice-5-fill.svg │ │ │ ├── dice-5.svg │ │ │ ├── dice-6-fill.svg │ │ │ ├── dice-6.svg │ │ │ ├── display-fill.svg │ │ │ ├── display.svg │ │ │ ├── distribute-horizontal.svg │ │ │ ├── distribute-vertical.svg │ │ │ ├── door-closed-fill.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open-fill.svg │ │ │ ├── door-open.svg │ │ │ ├── dot.svg │ │ │ ├── download.svg │ │ │ ├── droplet-fill.svg │ │ │ ├── droplet-half.svg │ │ │ ├── droplet.svg │ │ │ ├── earbuds.svg │ │ │ ├── easel-fill.svg │ │ │ ├── easel.svg │ │ │ ├── egg-fill.svg │ │ │ ├── egg-fried.svg │ │ │ ├── egg.svg │ │ │ ├── eject-fill.svg │ │ │ ├── eject.svg │ │ │ ├── emoji-angry.svg │ │ │ ├── emoji-dizzy.svg │ │ │ ├── emoji-expressionless.svg │ │ │ ├── emoji-frown.svg │ │ │ ├── emoji-laughing.svg │ │ │ ├── emoji-neutral.svg │ │ │ ├── emoji-smile-upside-down.svg │ │ │ ├── emoji-smile.svg │ │ │ ├── emoji-sunglasses.svg │ │ │ ├── envelope-fill.svg │ │ │ ├── envelope-open-fill.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope.svg │ │ │ ├── exclamation-circle-fill.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-diamond-fill.svg │ │ │ ├── exclamation-diamond.svg │ │ │ ├── exclamation-octagon-fill.svg │ │ │ ├── exclamation-octagon.svg │ │ │ ├── exclamation-square-fill.svg │ │ │ ├── exclamation-square.svg │ │ │ ├── exclamation-triangle-fill.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── exclude.svg │ │ │ ├── eye-fill.svg │ │ │ ├── eye-slash-fill.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── eyeglasses.svg │ │ │ ├── file-arrow-down-fill.svg │ │ │ ├── file-arrow-down.svg │ │ │ ├── file-arrow-up-fill.svg │ │ │ ├── file-arrow-up.svg │ │ │ ├── file-binary-fill.svg │ │ │ ├── file-binary.svg │ │ │ ├── file-break-fill.svg │ │ │ ├── file-break.svg │ │ │ ├── file-check-fill.svg │ │ │ ├── file-check.svg │ │ │ ├── file-code-fill.svg │ │ │ ├── file-code.svg │ │ │ ├── file-diff-fill.svg │ │ │ ├── file-diff.svg │ │ │ ├── file-earmark-arrow-down-fill.svg │ │ │ ├── file-earmark-arrow-down.svg │ │ │ ├── file-earmark-arrow-up-fill.svg │ │ │ ├── file-earmark-arrow-up.svg │ │ │ ├── file-earmark-binary-fill.svg │ │ │ ├── file-earmark-binary.svg │ │ │ ├── file-earmark-break-fill.svg │ │ │ ├── file-earmark-break.svg │ │ │ ├── file-earmark-check-fill.svg │ │ │ ├── file-earmark-check.svg │ │ │ ├── file-earmark-code-fill.svg │ │ │ ├── file-earmark-code.svg │ │ │ ├── file-earmark-diff-fill.svg │ │ │ ├── file-earmark-diff.svg │ │ │ ├── file-earmark-easel-fill.svg │ │ │ ├── file-earmark-easel.svg │ │ │ ├── file-earmark-fill.svg │ │ │ ├── file-earmark-font-fill.svg │ │ │ ├── file-earmark-font.svg │ │ │ ├── file-earmark-image-fill.svg │ │ │ ├── file-earmark-image.svg │ │ │ ├── file-earmark-lock-fill.svg │ │ │ ├── file-earmark-lock.svg │ │ │ ├── file-earmark-lock2-fill.svg │ │ │ ├── file-earmark-lock2.svg │ │ │ ├── file-earmark-medical-fill.svg │ │ │ ├── file-earmark-medical.svg │ │ │ ├── file-earmark-minus-fill.svg │ │ │ ├── file-earmark-minus.svg │ │ │ ├── file-earmark-music-fill.svg │ │ │ ├── file-earmark-music.svg │ │ │ ├── file-earmark-person-fill.svg │ │ │ ├── file-earmark-person.svg │ │ │ ├── file-earmark-play-fill.svg │ │ │ ├── file-earmark-play.svg │ │ │ ├── file-earmark-plus-fill.svg │ │ │ ├── file-earmark-plus.svg │ │ │ ├── file-earmark-post-fill.svg │ │ │ ├── file-earmark-post.svg │ │ │ ├── file-earmark-richtext-fill.svg │ │ │ ├── file-earmark-richtext.svg │ │ │ ├── file-earmark-ruled-fill.svg │ │ │ ├── file-earmark-ruled.svg │ │ │ ├── file-earmark-slides-fill.svg │ │ │ ├── file-earmark-slides.svg │ │ │ ├── file-earmark-spreadsheet-fill.svg │ │ │ ├── file-earmark-spreadsheet.svg │ │ │ ├── file-earmark-text-fill.svg │ │ │ ├── file-earmark-text.svg │ │ │ ├── file-earmark-x-fill.svg │ │ │ ├── file-earmark-x.svg │ │ │ ├── file-earmark-zip-fill.svg │ │ │ ├── file-earmark-zip.svg │ │ │ ├── file-earmark.svg │ │ │ ├── file-easel-fill.svg │ │ │ ├── file-easel.svg │ │ │ ├── file-fill.svg │ │ │ ├── file-font-fill.svg │ │ │ ├── file-font.svg │ │ │ ├── file-image-fill.svg │ │ │ ├── file-image.svg │ │ │ ├── file-lock-fill.svg │ │ │ ├── file-lock.svg │ │ │ ├── file-lock2-fill.svg │ │ │ ├── file-lock2.svg │ │ │ ├── file-medical-fill.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-minus-fill.svg │ │ │ ├── file-minus.svg │ │ │ ├── file-music-fill.svg │ │ │ ├── file-music.svg │ │ │ ├── file-person-fill.svg │ │ │ ├── file-person.svg │ │ │ ├── file-play-fill.svg │ │ │ ├── file-play.svg │ │ │ ├── file-plus-fill.svg │ │ │ ├── file-plus.svg │ │ │ ├── file-post-fill.svg │ │ │ ├── file-post.svg │ │ │ ├── file-richtext-fill.svg │ │ │ ├── file-richtext.svg │ │ │ ├── file-ruled-fill.svg │ │ │ ├── file-ruled.svg │ │ │ ├── file-slides-fill.svg │ │ │ ├── file-slides.svg │ │ │ ├── file-spreadsheet-fill.svg │ │ │ ├── file-spreadsheet.svg │ │ │ ├── file-text-fill.svg │ │ │ ├── file-text.svg │ │ │ ├── file-x-fill.svg │ │ │ ├── file-x.svg │ │ │ ├── file-zip-fill.svg │ │ │ ├── file-zip.svg │ │ │ ├── file.svg │ │ │ ├── files-alt.svg │ │ │ ├── files.svg │ │ │ ├── film.svg │ │ │ ├── filter-circle-fill.svg │ │ │ ├── filter-circle.svg │ │ │ ├── filter-left.svg │ │ │ ├── filter-right.svg │ │ │ ├── filter-square-fill.svg │ │ │ ├── filter-square.svg │ │ │ ├── filter.svg │ │ │ ├── flag-fill.svg │ │ │ ├── flag.svg │ │ │ ├── flower1.svg │ │ │ ├── flower2.svg │ │ │ ├── flower3.svg │ │ │ ├── folder-check.svg │ │ │ ├── folder-fill.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder-symlink-fill.svg │ │ │ ├── folder-symlink.svg │ │ │ ├── folder-x.svg │ │ │ ├── folder.svg │ │ │ ├── folder2-open.svg │ │ │ ├── folder2.svg │ │ │ ├── fonts.svg │ │ │ ├── forward-fill.svg │ │ │ ├── forward.svg │ │ │ ├── front.svg │ │ │ ├── fullscreen-exit.svg │ │ │ ├── fullscreen.svg │ │ │ ├── funnel-fill.svg │ │ │ ├── funnel.svg │ │ │ ├── gear-fill.svg │ │ │ ├── gear-wide-connected.svg │ │ │ ├── gear-wide.svg │ │ │ ├── gear.svg │ │ │ ├── gem.svg │ │ │ ├── geo-alt-fill.svg │ │ │ ├── geo-alt.svg │ │ │ ├── geo-fill.svg │ │ │ ├── geo.svg │ │ │ ├── gift-fill.svg │ │ │ ├── gift.svg │ │ │ ├── globe.svg │ │ │ ├── globe2.svg │ │ │ ├── graph-down.svg │ │ │ ├── graph-up.svg │ │ │ ├── grid-1x2-fill.svg │ │ │ ├── grid-1x2.svg │ │ │ ├── grid-3x2-gap-fill.svg │ │ │ ├── grid-3x2-gap.svg │ │ │ ├── grid-3x2.svg │ │ │ ├── grid-3x3-gap-fill.svg │ │ │ ├── grid-3x3-gap.svg │ │ │ ├── grid-3x3.svg │ │ │ ├── grid-fill.svg │ │ │ ├── grid.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── hammer.svg │ │ │ ├── hand-index-thumb.svg │ │ │ ├── hand-index.svg │ │ │ ├── hand-thumbs-down.svg │ │ │ ├── hand-thumbs-up.svg │ │ │ ├── handbag-fill.svg │ │ │ ├── handbag.svg │ │ │ ├── hash.svg │ │ │ ├── hdd-fill.svg │ │ │ ├── hdd-network-fill.svg │ │ │ ├── hdd-network.svg │ │ │ ├── hdd-rack-fill.svg │ │ │ ├── hdd-rack.svg │ │ │ ├── hdd-stack-fill.svg │ │ │ ├── hdd-stack.svg │ │ │ ├── hdd.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-fill.svg │ │ │ ├── heart-half.svg │ │ │ ├── heart.svg │ │ │ ├── heptagon-fill.svg │ │ │ ├── heptagon-half.svg │ │ │ ├── heptagon.svg │ │ │ ├── hexagon-fill.svg │ │ │ ├── hexagon-half.svg │ │ │ ├── hexagon.svg │ │ │ ├── hourglass-bottom.svg │ │ │ ├── hourglass-split.svg │ │ │ ├── hourglass-top.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-door-fill.svg │ │ │ ├── house-door.svg │ │ │ ├── house-fill.svg │ │ │ ├── house.svg │ │ │ ├── hr.svg │ │ │ ├── image-alt.svg │ │ │ ├── image-fill.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox-fill.svg │ │ │ ├── inbox.svg │ │ │ ├── inboxes-fill.svg │ │ │ ├── inboxes.svg │ │ │ ├── info-circle-fill.svg │ │ │ ├── info-circle.svg │ │ │ ├── info-square-fill.svg │ │ │ ├── info-square.svg │ │ │ ├── info.svg │ │ │ ├── input-cursor-text.svg │ │ │ ├── input-cursor.svg │ │ │ ├── intersect.svg │ │ │ ├── journal-album.svg │ │ │ ├── journal-arrow-down.svg │ │ │ ├── journal-arrow-up.svg │ │ │ ├── journal-check.svg │ │ │ ├── journal-code.svg │ │ │ ├── journal-medical.svg │ │ │ ├── journal-minus.svg │ │ │ ├── journal-plus.svg │ │ │ ├── journal-richtext.svg │ │ │ ├── journal-text.svg │ │ │ ├── journal-x.svg │ │ │ ├── journal.svg │ │ │ ├── journals.svg │ │ │ ├── joystick.svg │ │ │ ├── justify-left.svg │ │ │ ├── justify-right.svg │ │ │ ├── justify.svg │ │ │ ├── kanban-fill.svg │ │ │ ├── kanban.svg │ │ │ ├── key-fill.svg │ │ │ ├── key.svg │ │ │ ├── keyboard-fill.svg │ │ │ ├── keyboard.svg │ │ │ ├── ladder.svg │ │ │ ├── lamp-fill.svg │ │ │ ├── lamp.svg │ │ │ ├── laptop-fill.svg │ │ │ ├── laptop.svg │ │ │ ├── layers-fill.svg │ │ │ ├── layers-half.svg │ │ │ ├── layers.svg │ │ │ ├── layout-sidebar-inset-reverse.svg │ │ │ ├── layout-sidebar-inset.svg │ │ │ ├── layout-sidebar-reverse.svg │ │ │ ├── layout-sidebar.svg │ │ │ ├── layout-split.svg │ │ │ ├── layout-text-sidebar-reverse.svg │ │ │ ├── layout-text-sidebar.svg │ │ │ ├── layout-text-window-reverse.svg │ │ │ ├── layout-text-window.svg │ │ │ ├── layout-three-columns.svg │ │ │ ├── layout-wtf.svg │ │ │ ├── life-preserver.svg │ │ │ ├── lightning-fill.svg │ │ │ ├── lightning.svg │ │ │ ├── link-45deg.svg │ │ │ ├── link.svg │ │ │ ├── list-check.svg │ │ │ ├── list-nested.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-stars.svg │ │ │ ├── list-task.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── lock-fill.svg │ │ │ ├── lock.svg │ │ │ ├── mailbox.svg │ │ │ ├── mailbox2.svg │ │ │ ├── map-fill.svg │ │ │ ├── map.svg │ │ │ ├── markdown-fill.svg │ │ │ ├── markdown.svg │ │ │ ├── menu-app-fill.svg │ │ │ ├── menu-app.svg │ │ │ ├── menu-button-fill.svg │ │ │ ├── menu-button-wide-fill.svg │ │ │ ├── menu-button-wide.svg │ │ │ ├── menu-button.svg │ │ │ ├── menu-down.svg │ │ │ ├── menu-up.svg │ │ │ ├── mic-fill.svg │ │ │ ├── mic-mute-fill.svg │ │ │ ├── mic-mute.svg │ │ │ ├── mic.svg │ │ │ ├── minecart-loaded.svg │ │ │ ├── minecart.svg │ │ │ ├── moon.svg │ │ │ ├── mouse.svg │ │ │ ├── mouse2.svg │ │ │ ├── mouse3.svg │ │ │ ├── music-note-beamed.svg │ │ │ ├── music-note-list.svg │ │ │ ├── music-note.svg │ │ │ ├── music-player-fill.svg │ │ │ ├── music-player.svg │ │ │ ├── newspaper.svg │ │ │ ├── node-minus-fill.svg │ │ │ ├── node-minus.svg │ │ │ ├── node-plus-fill.svg │ │ │ ├── node-plus.svg │ │ │ ├── nut-fill.svg │ │ │ ├── nut.svg │ │ │ ├── octagon-fill.svg │ │ │ ├── octagon-half.svg │ │ │ ├── octagon.svg │ │ │ ├── option.svg │ │ │ ├── outlet.svg │ │ │ ├── paperclip.svg │ │ │ ├── paragraph.svg │ │ │ ├── patch-check-fll.svg │ │ │ ├── patch-check.svg │ │ │ ├── patch-exclamation-fll.svg │ │ │ ├── patch-exclamation.svg │ │ │ ├── patch-minus-fll.svg │ │ │ ├── patch-minus.svg │ │ │ ├── patch-plus-fll.svg │ │ │ ├── patch-plus.svg │ │ │ ├── patch-question-fll.svg │ │ │ ├── patch-question.svg │ │ │ ├── pause-fill.svg │ │ │ ├── pause.svg │ │ │ ├── peace-fill.svg │ │ │ ├── peace.svg │ │ │ ├── pen-fill.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-fill.svg │ │ │ ├── pencil-square.svg │ │ │ ├── pencil.svg │ │ │ ├── pentagon-fill.svg │ │ │ ├── pentagon-half.svg │ │ │ ├── pentagon.svg │ │ │ ├── people-fill.svg │ │ │ ├── people.svg │ │ │ ├── percent.svg │ │ │ ├── person-badge-fill.svg │ │ │ ├── person-badge.svg │ │ │ ├── person-bounding-box.svg │ │ │ ├── person-check-fill.svg │ │ │ ├── person-check.svg │ │ │ ├── person-circle.svg │ │ │ ├── person-dash-fill.svg │ │ │ ├── person-dash.svg │ │ │ ├── person-fill.svg │ │ │ ├── person-lines-fill.svg │ │ │ ├── person-plus-fill.svg │ │ │ ├── person-plus.svg │ │ │ ├── person-square.svg │ │ │ ├── person-x-fill.svg │ │ │ ├── person-x.svg │ │ │ ├── person.svg │ │ │ ├── phone-fill.svg │ │ │ ├── phone-landscape-fill.svg │ │ │ ├── phone-landscape.svg │ │ │ ├── phone-vibrate.svg │ │ │ ├── phone.svg │ │ │ ├── pie-chart-fill.svg │ │ │ ├── pie-chart.svg │ │ │ ├── pip-fill.svg │ │ │ ├── pip.svg │ │ │ ├── play-fill.svg │ │ │ ├── play.svg │ │ │ ├── plug-fill.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle-fill.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-square-fill.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── power.svg │ │ │ ├── printer-fill.svg │ │ │ ├── printer.svg │ │ │ ├── puzzle-fill.svg │ │ │ ├── puzzle.svg │ │ │ ├── question-circle-fill.svg │ │ │ ├── question-circle.svg │ │ │ ├── question-diamond-fill.svg │ │ │ ├── question-diamond.svg │ │ │ ├── question-octagon-fill.svg │ │ │ ├── question-octagon.svg │ │ │ ├── question-square-fill.svg │ │ │ ├── question-square.svg │ │ │ ├── question.svg │ │ │ ├── receipt-cutoff.svg │ │ │ ├── receipt.svg │ │ │ ├── reception-0.svg │ │ │ ├── reception-1.svg │ │ │ ├── reception-2.svg │ │ │ ├── reception-3.svg │ │ │ ├── reception-4.svg │ │ │ ├── reply-all-fill.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply-fill.svg │ │ │ ├── reply.svg │ │ │ ├── rss-fill.svg │ │ │ ├── rss.svg │ │ │ ├── scissors.svg │ │ │ ├── screwdriver.svg │ │ │ ├── search.svg │ │ │ ├── segmented-nav.svg │ │ │ ├── server.svg │ │ │ ├── share-fill.svg │ │ │ ├── share.svg │ │ │ ├── shield-check.svg │ │ │ ├── shield-exclamation.svg │ │ │ ├── shield-fill-check.svg │ │ │ ├── shield-fill-exclamation.svg │ │ │ ├── shield-fill-minus.svg │ │ │ ├── shield-fill-plus.svg │ │ │ ├── shield-fill-x.svg │ │ │ ├── shield-fill.svg │ │ │ ├── shield-lock-fill.svg │ │ │ ├── shield-lock.svg │ │ │ ├── shield-minus.svg │ │ │ ├── shield-plus.svg │ │ │ ├── shield-shaded.svg │ │ │ ├── shield-slash-fill.svg │ │ │ ├── shield-slash.svg │ │ │ ├── shield-x.svg │ │ │ ├── shield.svg │ │ │ ├── shift-fill.svg │ │ │ ├── shift.svg │ │ │ ├── shop-window.svg │ │ │ ├── shop.svg │ │ │ ├── shuffle.svg │ │ │ ├── signpost-2-fill.svg │ │ │ ├── signpost-2.svg │ │ │ ├── signpost-fill.svg │ │ │ ├── signpost-split-fill.svg │ │ │ ├── signpost-split.svg │ │ │ ├── signpost.svg │ │ │ ├── sim-fill.svg │ │ │ ├── sim.svg │ │ │ ├── skip-backward-fill.svg │ │ │ ├── skip-backward.svg │ │ │ ├── skip-end-fill.svg │ │ │ ├── skip-end.svg │ │ │ ├── skip-forward-fill.svg │ │ │ ├── skip-forward.svg │ │ │ ├── skip-start-fill.svg │ │ │ ├── skip-start.svg │ │ │ ├── slash-circle-fill.svg │ │ │ ├── slash-circle.svg │ │ │ ├── slash-square-fill.svg │ │ │ ├── slash-square.svg │ │ │ ├── slash.svg │ │ │ ├── sliders.svg │ │ │ ├── smartwatch.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-down-alt.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-up-alt.svg │ │ │ ├── sort-up.svg │ │ │ ├── soundwave.svg │ │ │ ├── speaker-fill.svg │ │ │ ├── speaker.svg │ │ │ ├── spellcheck.svg │ │ │ ├── square-fill.svg │ │ │ ├── square-half.svg │ │ │ ├── square.svg │ │ │ ├── star-fill.svg │ │ │ ├── star-half.svg │ │ │ ├── star.svg │ │ │ ├── stickies-fill.svg │ │ │ ├── stickies.svg │ │ │ ├── sticky-fill.svg │ │ │ ├── sticky.svg │ │ │ ├── stop-fill.svg │ │ │ ├── stop.svg │ │ │ ├── stoplights-fill.svg │ │ │ ├── stoplights.svg │ │ │ ├── stopwatch-fill.svg │ │ │ ├── stopwatch.svg │ │ │ ├── subtract.svg │ │ │ ├── suit-club-fill.svg │ │ │ ├── suit-club.svg │ │ │ ├── suit-diamond-fill.svg │ │ │ ├── suit-diamond.svg │ │ │ ├── suit-heart-fill.svg │ │ │ ├── suit-heart.svg │ │ │ ├── suit-spade-fill.svg │ │ │ ├── suit-spade.svg │ │ │ ├── sun.svg │ │ │ ├── sunglasses.svg │ │ │ ├── table.svg │ │ │ ├── tablet-fill.svg │ │ │ ├── tablet-landscape-fill.svg │ │ │ ├── tablet-landscape.svg │ │ │ ├── tablet.svg │ │ │ ├── tag-fill.svg │ │ │ ├── tag.svg │ │ │ ├── tags-fill.svg │ │ │ ├── tags.svg │ │ │ ├── telephone-fill.svg │ │ │ ├── telephone-forward-fill.svg │ │ │ ├── telephone-forward.svg │ │ │ ├── telephone-inbound-fill.svg │ │ │ ├── telephone-inbound.svg │ │ │ ├── telephone-minus-fill.svg │ │ │ ├── telephone-minus.svg │ │ │ ├── telephone-outbound-fill.svg │ │ │ ├── telephone-outbound.svg │ │ │ ├── telephone-plus-fill.svg │ │ │ ├── telephone-plus.svg │ │ │ ├── telephone-x-fill.svg │ │ │ ├── telephone-x.svg │ │ │ ├── telephone.svg │ │ │ ├── terminal-fill.svg │ │ │ ├── terminal.svg │ │ │ ├── text-center.svg │ │ │ ├── text-indent-left.svg │ │ │ ├── text-indent-right.svg │ │ │ ├── text-left.svg │ │ │ ├── text-paragraph.svg │ │ │ ├── text-right.svg │ │ │ ├── textarea-resize.svg │ │ │ ├── textarea-t.svg │ │ │ ├── textarea.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer.svg │ │ │ ├── three-dots-vertical.svg │ │ │ ├── three-dots.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toggle2-off.svg │ │ │ ├── toggle2-on.svg │ │ │ ├── toggles.svg │ │ │ ├── toggles2.svg │ │ │ ├── tools.svg │ │ │ ├── trash-fill.svg │ │ │ ├── trash.svg │ │ │ ├── trash2-fill.svg │ │ │ ├── trash2.svg │ │ │ ├── tree-fill.svg │ │ │ ├── tree.svg │ │ │ ├── triangle-fill.svg │ │ │ ├── triangle-half.svg │ │ │ ├── triangle.svg │ │ │ ├── trophy-fill.svg │ │ │ ├── trophy.svg │ │ │ ├── truck-flatbed.svg │ │ │ ├── truck.svg │ │ │ ├── tv-fill.svg │ │ │ ├── tv.svg │ │ │ ├── type-bold.svg │ │ │ ├── type-h1.svg │ │ │ ├── type-h2.svg │ │ │ ├── type-h3.svg │ │ │ ├── type-italic.svg │ │ │ ├── type-strikethrough.svg │ │ │ ├── type-underline.svg │ │ │ ├── type.svg │ │ │ ├── ui-checks-grid.svg │ │ │ ├── ui-checks.svg │ │ │ ├── ui-radios-grid.svg │ │ │ ├── ui-radios.svg │ │ │ ├── union.svg │ │ │ ├── unlock-fill.svg │ │ │ ├── unlock.svg │ │ │ ├── upc-scan.svg │ │ │ ├── upc.svg │ │ │ ├── upload.svg │ │ │ ├── vector-pen.svg │ │ │ ├── view-list.svg │ │ │ ├── view-stacked.svg │ │ │ ├── voicemail.svg │ │ │ ├── volume-down-fill.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute-fill.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off-fill.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up-fill.svg │ │ │ ├── volume-up.svg │ │ │ ├── vr.svg │ │ │ ├── wallet-fill.svg │ │ │ ├── wallet.svg │ │ │ ├── wallet2.svg │ │ │ ├── watch.svg │ │ │ ├── wifi-1.svg │ │ │ ├── wifi-2.svg │ │ │ ├── wifi-off.svg │ │ │ ├── wifi.svg │ │ │ ├── window.svg │ │ │ ├── wrench.svg │ │ │ ├── x-circle-fill.svg │ │ │ ├── x-circle.svg │ │ │ ├── x-diamond-fill.svg │ │ │ ├── x-diamond.svg │ │ │ ├── x-octagon-fill.svg │ │ │ ├── x-octagon.svg │ │ │ ├── x-square-fill.svg │ │ │ ├── x-square.svg │ │ │ ├── x.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ ├── common.js │ │ ├── dashboard.css │ │ ├── forms.css │ │ ├── img │ │ │ ├── header.png │ │ │ ├── logo-dark │ │ │ │ ├── 1x │ │ │ │ │ └── biophi_logo.png │ │ │ │ ├── 2x │ │ │ │ │ └── biophi_logo@2x.png │ │ │ │ ├── 3x │ │ │ │ │ └── biophi_logo@3x.png │ │ │ │ └── 4x │ │ │ │ │ └── biophi_logo@4x.png │ │ │ ├── logo-light │ │ │ │ ├── 1x │ │ │ │ │ ├── biophi_logo.png │ │ │ │ │ ├── biophi_symbol.png │ │ │ │ │ └── biophi_vertical.png │ │ │ │ ├── 2x │ │ │ │ │ ├── biophi_logo@2x.png │ │ │ │ │ ├── biophi_symbol@2x.png │ │ │ │ │ └── biophi_vertical@2x.png │ │ │ │ ├── 3x │ │ │ │ │ ├── biophi_logo@3x.png │ │ │ │ │ ├── biophi_symbol@3x.png │ │ │ │ │ └── biophi_vertical@3x.png │ │ │ │ └── 4x │ │ │ │ │ ├── biophi_logo@4x.png │ │ │ │ │ ├── biophi_symbol@4x.png │ │ │ │ │ └── biophi_vertical@4x.png │ │ │ └── preview.png │ │ ├── main.css │ │ └── news.json │ │ ├── tasks.py │ │ ├── templates │ │ ├── antibody_bulk_input_component.html │ │ ├── antibody_input_component.html │ │ ├── antibody_single_input_component.html │ │ ├── dashboard.html │ │ ├── error.html │ │ ├── error_404.html │ │ ├── error_task_not_found.html │ │ ├── flash.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── loading.html │ │ ├── numbering_component.html │ │ └── stats.html │ │ └── views.py └── humanization │ ├── __init__.py │ ├── cli │ ├── __init__.py │ ├── oasis.py │ └── sapiens.py │ ├── methods │ ├── __init__.py │ ├── humanization.py │ ├── humanness.py │ └── stats.py │ └── web │ ├── __init__.py │ ├── static │ └── humanization.css │ ├── tasks.py │ ├── templates │ └── humanization │ │ ├── designer_detail.html │ │ ├── designer_input.html │ │ ├── designer_layout.html │ │ ├── humanize_alignment_component.html │ │ ├── humanize_detail.html │ │ ├── humanize_input.html │ │ ├── humanize_layout.html │ │ ├── humanize_params_summary.html │ │ ├── humanize_results.html │ │ ├── humanize_settings_component.html │ │ ├── humanness_layout.html │ │ ├── humanness_report_detail.html │ │ ├── humanness_report_input.html │ │ ├── humanness_report_table.html │ │ └── humanness_settings_component.html │ └── views.py ├── docker-compose.yml ├── environment.yml ├── setup.py └── tests └── pytest └── test_sapiens.py /.dockerignore: -------------------------------------------------------------------------------- 1 | data 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | *.pyc 3 | *.egg-info 4 | work 5 | .idea 6 | .DS_Store 7 | .kube-tmp-token 8 | tests/robot/results 9 | data 10 | build 11 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include biophi * 2 | -------------------------------------------------------------------------------- /biophi/__init__.py: -------------------------------------------------------------------------------- 1 | from .__version__ import __version__ 2 | -------------------------------------------------------------------------------- /biophi/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0.11' 2 | -------------------------------------------------------------------------------- /biophi/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/__init__.py -------------------------------------------------------------------------------- /biophi/common/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/cli/__init__.py -------------------------------------------------------------------------------- /biophi/common/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/utils/__init__.py -------------------------------------------------------------------------------- /biophi/common/utils/resources.py: -------------------------------------------------------------------------------- 1 | import os 2 | import biophi 3 | 4 | def get_resource_path(name, module): 5 | return os.path.join(os.path.dirname(biophi.__file__), module, 'resources', name) -------------------------------------------------------------------------------- /biophi/common/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/__init__.py -------------------------------------------------------------------------------- /biophi/common/web/celery_config.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | broker_url = os.environ.get('CELERY_BROKER_URL', 'redis://localhost:6379/0'), 4 | result_backend = os.environ.get('CELERY_RESULT_BACKEND', 'redis://localhost:6379/0') 5 | accept_content = ['pickle'] 6 | task_serializer = 'pickle' 7 | result_serializer = 'pickle' 8 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/align-bottom.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/align-center.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/align-end.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/align-middle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/align-start.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/align-top.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/app-indicator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/app.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/archive-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/archive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-90deg-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-90deg-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-90deg-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-90deg-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-bar-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-bar-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-bar-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-bar-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-clockwise.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-counterclockwise.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-down-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-down-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-down-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-down-left-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-down-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-down-right-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-down-short.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-down-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-left-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-left-short.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-left-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-return-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-return-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-right-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-right-short.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-right-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-up-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-up-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-up-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-up-left-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-up-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-up-right-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-up-short.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-up-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/aspect-ratio-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/asterisk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/award-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/back.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/badge-tm-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bag-check-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bag-dash-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bag-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bag-plus-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bar-chart-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bar-chart-line-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bar-chart-line.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bar-chart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/battery-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/battery-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/battery.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bell-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bookmark-check-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bookmark-dash-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bookmark-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bookmark-heart-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bookmark-plus-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bookmarks-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bookshelf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/border-width.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bounding-box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/bucket-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar-check-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar-event-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar-minus-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar-plus-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar-range-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar2-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar3-event-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar3-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar3-range-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar3-week-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/calendar4.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/camera-reels-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/camera-video-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/capslock-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-down-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-down-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-left-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-left-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-right-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-right-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-up-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-up-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/cash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chat-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chat-left-dots-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chat-left-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chat-left-text-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chat-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chat-right-dots-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chat-right-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chat-right-text-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chat-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chat-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/check-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/check-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/check-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/check2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-bar-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-bar-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-bar-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-bar-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-compact-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-compact-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-compact-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-compact-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-contract.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-double-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-expand.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/chevron-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/circle-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/circle-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/clock-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/cloud-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/collection-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/compass-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/compass.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/cone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/credit-card-2-back-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/credit-card-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/credit-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/crop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/cup-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/cup.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/cursor-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/cursor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dash-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dash-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dash-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dash-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/diamond-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/diamond-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dice-1-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dice-1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dice-2-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dice-2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dice-3-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dice-3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dice-4-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/display-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/distribute-horizontal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/distribute-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/door-closed-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/door-closed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/door-open-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/dot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/droplet-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/easel-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/egg-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/eject-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/eject.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/envelope-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/exclamation-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/exclamation-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/exclamation-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/exclamation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/exclude.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/eye-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-arrow-down-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-arrow-up-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-break-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-break.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-check-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-diff-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-earmark-break-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-earmark-break.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-earmark-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-earmark-minus-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-earmark-plus-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-earmark-ruled-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-earmark-ruled.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-earmark-spreadsheet-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-earmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-lock2-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-minus-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-person-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-person.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-play-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-plus-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-post-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-ruled-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-ruled.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-spreadsheet-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-text-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file-x-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/files-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/files.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/film.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/filter-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/filter-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/filter-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/filter-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/fonts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/forward-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/front.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/funnel-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/funnel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/geo-alt-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/graph-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/graph-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/grid-1x2-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/grid-1x2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/grid-3x2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/handbag-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/headphones.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/heart-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/heptagon-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/hexagon-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/hexagon-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/hexagon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/hr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/image-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/image-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/image.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/input-cursor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/intersect.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/justify-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/justify-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/justify.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/key-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/ladder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/lamp-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/laptop-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/laptop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/layout-sidebar-inset.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/layout-sidebar-reverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/layout-sidebar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/layout-split.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/lightning-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/lightning.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/link.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/list-nested.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/list.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/lock-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/mic-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/moon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/mouse2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/music-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/music-player-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/node-minus-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/node-plus-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/nut-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/octagon-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/option.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/paperclip.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/pause-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/peace-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/peace.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/pentagon-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/pentagon-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/pentagon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/people-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/percent.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/person-badge-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/person-check-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/person-dash-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/person-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/person-plus-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/person-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/person.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/phone-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/phone-landscape-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/phone-landscape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/pie-chart-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/pie-chart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/pip-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/play-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/plus-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/plus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/plus-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/power.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/reception-0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/reception-1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/reply-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/rss-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/segmented-nav.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/share-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/shift-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/shift.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/signpost-2-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/signpost-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/signpost-split-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/signpost.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/skip-end-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/skip-end.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/skip-start-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/skip-start.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/slash-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/slash-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/slash-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/speaker-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/square-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/star-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/sticky-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/stop-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/stopwatch-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/stopwatch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/subtract.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/suit-diamond-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/suit-heart-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/suit-spade-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/tablet-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/tablet-landscape-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/tablet-landscape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/tag-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/tag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/terminal-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/text-center.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/text-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/text-paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/text-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/thermometer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/three-dots-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/three-dots.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/toggle-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/toggle2-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/toggle2-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/toggles.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/triangle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/tv-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/type-h1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/type-italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/type-underline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/union.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/unlock-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/upc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/voicemail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/volume-off-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/vr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/wallet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/x-circle-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/x-square-fill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/bootstrap-icons-1.0.0/x.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /biophi/common/web/static/forms.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .numbered-form>div { 4 | padding-left: 60px; 5 | } 6 | 7 | .numbered-form>div:first-child { 8 | padding-left: 45px; 9 | padding-right: 10px; 10 | } 11 | 12 | .numbered-header { 13 | position: relative; 14 | } 15 | 16 | .numbered-header .badge { 17 | position: absolute; 18 | top: 1px; 19 | left: -36px; 20 | width: 27px; 21 | padding: .35em 0; 22 | } 23 | -------------------------------------------------------------------------------- /biophi/common/web/static/img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/header.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-dark/1x/biophi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-dark/1x/biophi_logo.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-dark/2x/biophi_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-dark/2x/biophi_logo@2x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-dark/3x/biophi_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-dark/3x/biophi_logo@3x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-dark/4x/biophi_logo@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-dark/4x/biophi_logo@4x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/1x/biophi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/1x/biophi_logo.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/1x/biophi_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/1x/biophi_symbol.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/1x/biophi_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/1x/biophi_vertical.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/2x/biophi_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/2x/biophi_logo@2x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/2x/biophi_symbol@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/2x/biophi_symbol@2x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/2x/biophi_vertical@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/2x/biophi_vertical@2x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/3x/biophi_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/3x/biophi_logo@3x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/3x/biophi_symbol@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/3x/biophi_symbol@3x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/3x/biophi_vertical@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/3x/biophi_vertical@3x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/4x/biophi_logo@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/4x/biophi_logo@4x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/4x/biophi_symbol@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/4x/biophi_symbol@4x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/logo-light/4x/biophi_vertical@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/logo-light/4x/biophi_vertical@4x.png -------------------------------------------------------------------------------- /biophi/common/web/static/img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merck/BioPhi/bc59cd17b690a634553ac50a60840b9a89bd21b0/biophi/common/web/static/img/preview.png -------------------------------------------------------------------------------- /biophi/common/web/templates/flash.html: -------------------------------------------------------------------------------- 1 | {% with messages = get_flashed_messages() %} 2 | {% if messages %} 3 |