├── .gitignore ├── LICENSE ├── README.md ├── file └── head │ ├── 00b4d789-c0f4-4874-a9e3-dd7d75bcc156.png │ ├── 1c1b8aed-ad5d-45d5-afee-7983d133565a.png │ ├── 368503c6-7afe-46b7-b6b4-0efee423fe77.png │ ├── 4a096408-6b80-42e5-90b9-a51a1b083e20.png │ ├── 4cd69355-8d20-4b33-8c38-4cab31a4c212.png │ ├── 5edfeaee-200f-4aa1-99ba-dadcdc3114f4.png │ ├── 6efe0c1c-4573-4b70-88d6-3e25ef268644.png │ ├── 7cf11adf-3ae1-4fa2-8ee8-d0313436dfbe.png │ ├── 82979bce-e874-4ed5-a9fa-7a415d7b92eb.png │ ├── 8397ed5d-22f6-48fa-92f5-2e7d58dc17a1.png │ ├── 8b0207f5-79a3-4f68-87d4-71b68b6b4595.png │ ├── a991305c-1863-4b05-b560-5e9480f306c0.png │ ├── c09e50ad-2c7c-4a87-86b9-419d04619c55.png │ ├── c372d385-04b6-4a12-be80-d8faeb110b1d.head │ ├── d2b8537e-581b-48f1-8001-35d75fa0da64.png │ └── fe39d57b-5a23-4066-8a22-55f7a8c08de8.png ├── pom.xml ├── sql └── all.sql ├── src └── main │ ├── java │ └── com │ │ └── acme │ │ └── chat │ │ ├── Application.java │ │ ├── annotation │ │ ├── FastLoginToken.java │ │ ├── LoginToken.java │ │ └── PassToken.java │ │ ├── base │ │ ├── BusinessResult.java │ │ └── Message.java │ │ ├── cache │ │ └── LoginUserInfoCahce.java │ │ ├── chatenum │ │ └── ErrorEnum.java │ │ ├── config │ │ ├── InterceptorConfig.java │ │ ├── JwtInterceptor.java │ │ ├── MyDataSource.java │ │ └── WebSocketConfig.java │ │ ├── controller │ │ ├── FileController.java │ │ ├── LoginController.java │ │ └── RegisterController.java │ │ ├── exception │ │ └── BusinessException.java │ │ ├── mapper │ │ ├── MessgeRecordMapper.java │ │ └── UserMapper.java │ │ ├── po │ │ ├── MessageRecord.java │ │ └── User.java │ │ ├── service │ │ ├── MessageRecordService.java │ │ ├── UserService.java │ │ ├── WebSocketServer.java │ │ └── impl │ │ │ ├── MessageRecordServiceImpl.java │ │ │ └── UserServiceImpl.java │ │ ├── utils │ │ ├── FileUtils.java │ │ ├── JSONUtils.java │ │ ├── RequestWrapper.java │ │ ├── ResponseUtils.java │ │ ├── SchemaTaskUtils.java │ │ ├── SendSms.java │ │ └── TokenUtils.java │ │ └── vo │ │ └── UserVO.java │ └── resources │ ├── application.yml │ ├── codingroam.com.jks │ ├── file │ └── head │ │ └── head.png │ ├── log4j2.xml │ ├── mapper │ ├── MessageRecordMapper.xml │ └── UserMapper.xml │ ├── mybatis-config.xml │ ├── static │ ├── css │ │ ├── all_min.css │ │ ├── chatmain.css │ │ ├── external │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrapValidator.css │ │ │ ├── bootstrapValidator.min.css │ │ │ ├── fontcss │ │ │ │ ├── 0-circle-fill.svg │ │ │ │ ├── 0-circle.svg │ │ │ │ ├── 0-square-fill.svg │ │ │ │ ├── 0-square.svg │ │ │ │ ├── 1-circle-fill.svg │ │ │ │ ├── 1-circle.svg │ │ │ │ ├── 1-square-fill.svg │ │ │ │ ├── 1-square.svg │ │ │ │ ├── 123.svg │ │ │ │ ├── 2-circle-fill.svg │ │ │ │ ├── 2-circle.svg │ │ │ │ ├── 2-square-fill.svg │ │ │ │ ├── 2-square.svg │ │ │ │ ├── 3-circle-fill.svg │ │ │ │ ├── 3-circle.svg │ │ │ │ ├── 3-square-fill.svg │ │ │ │ ├── 3-square.svg │ │ │ │ ├── 4-circle-fill.svg │ │ │ │ ├── 4-circle.svg │ │ │ │ ├── 4-square-fill.svg │ │ │ │ ├── 4-square.svg │ │ │ │ ├── 5-circle-fill.svg │ │ │ │ ├── 5-circle.svg │ │ │ │ ├── 5-square-fill.svg │ │ │ │ ├── 5-square.svg │ │ │ │ ├── 6-circle-fill.svg │ │ │ │ ├── 6-circle.svg │ │ │ │ ├── 6-square-fill.svg │ │ │ │ ├── 6-square.svg │ │ │ │ ├── 7-circle-fill.svg │ │ │ │ ├── 7-circle.svg │ │ │ │ ├── 7-square-fill.svg │ │ │ │ ├── 7-square.svg │ │ │ │ ├── 8-circle-fill.svg │ │ │ │ ├── 8-circle.svg │ │ │ │ ├── 8-square-fill.svg │ │ │ │ ├── 8-square.svg │ │ │ │ ├── 9-circle-fill.svg │ │ │ │ ├── 9-circle.svg │ │ │ │ ├── 9-square-fill.svg │ │ │ │ ├── 9-square.svg │ │ │ │ ├── activity.svg │ │ │ │ ├── airplane-engines-fill.svg │ │ │ │ ├── airplane-engines.svg │ │ │ │ ├── airplane-fill.svg │ │ │ │ ├── airplane.svg │ │ │ │ ├── alarm-fill.svg │ │ │ │ ├── alarm.svg │ │ │ │ ├── alexa.svg │ │ │ │ ├── align-bottom.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-end.svg │ │ │ │ ├── align-middle.svg │ │ │ │ ├── align-start.svg │ │ │ │ ├── align-top.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── alphabet-uppercase.svg │ │ │ │ ├── alphabet.svg │ │ │ │ ├── alt.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amd.svg │ │ │ │ ├── android.svg │ │ │ │ ├── android2.svg │ │ │ │ ├── app-indicator.svg │ │ │ │ ├── app.svg │ │ │ │ ├── apple.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-through-heart-fill.svg │ │ │ │ ├── arrow-through-heart.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-vertical.svg │ │ │ │ ├── arrows-collapse.svg │ │ │ │ ├── arrows-expand-vertical.svg │ │ │ │ ├── arrows-expand.svg │ │ │ │ ├── arrows-fullscreen.svg │ │ │ │ ├── arrows-move.svg │ │ │ │ ├── arrows-vertical.svg │ │ │ │ ├── arrows.svg │ │ │ │ ├── aspect-ratio-fill.svg │ │ │ │ ├── aspect-ratio.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── award-fill.svg │ │ │ │ ├── award.svg │ │ │ │ ├── back.svg │ │ │ │ ├── backpack-fill.svg │ │ │ │ ├── backpack.svg │ │ │ │ ├── backpack2-fill.svg │ │ │ │ ├── backpack2.svg │ │ │ │ ├── backpack3-fill.svg │ │ │ │ ├── backpack3.svg │ │ │ │ ├── backpack4-fill.svg │ │ │ │ ├── backpack4.svg │ │ │ │ ├── backspace-fill.svg │ │ │ │ ├── backspace-reverse-fill.svg │ │ │ │ ├── backspace-reverse.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── badge-3d-fill.svg │ │ │ │ ├── badge-3d.svg │ │ │ │ ├── badge-4k-fill.svg │ │ │ │ ├── badge-4k.svg │ │ │ │ ├── badge-8k-fill.svg │ │ │ │ ├── badge-8k.svg │ │ │ │ ├── badge-ad-fill.svg │ │ │ │ ├── badge-ad.svg │ │ │ │ ├── badge-ar-fill.svg │ │ │ │ ├── badge-ar.svg │ │ │ │ ├── badge-cc-fill.svg │ │ │ │ ├── badge-cc.svg │ │ │ │ ├── badge-hd-fill.svg │ │ │ │ ├── badge-hd.svg │ │ │ │ ├── badge-sd-fill.svg │ │ │ │ ├── badge-sd.svg │ │ │ │ ├── badge-tm-fill.svg │ │ │ │ ├── badge-tm.svg │ │ │ │ ├── badge-vo-fill.svg │ │ │ │ ├── badge-vo.svg │ │ │ │ ├── badge-vr-fill.svg │ │ │ │ ├── badge-vr.svg │ │ │ │ ├── badge-wc-fill.svg │ │ │ │ ├── badge-wc.svg │ │ │ │ ├── bag-check-fill.svg │ │ │ │ ├── bag-check.svg │ │ │ │ ├── bag-dash-fill.svg │ │ │ │ ├── bag-dash.svg │ │ │ │ ├── bag-fill.svg │ │ │ │ ├── bag-heart-fill.svg │ │ │ │ ├── bag-heart.svg │ │ │ │ ├── bag-plus-fill.svg │ │ │ │ ├── bag-plus.svg │ │ │ │ ├── bag-x-fill.svg │ │ │ │ ├── bag-x.svg │ │ │ │ ├── bag.svg │ │ │ │ ├── balloon-fill.svg │ │ │ │ ├── balloon-heart-fill.svg │ │ │ │ ├── balloon-heart.svg │ │ │ │ ├── balloon.svg │ │ │ │ ├── ban-fill.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── bandaid-fill.svg │ │ │ │ ├── bandaid.svg │ │ │ │ ├── bank.svg │ │ │ │ ├── bank2.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 │ │ │ │ ├── behance.svg │ │ │ │ ├── bell-fill.svg │ │ │ │ ├── bell-slash-fill.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier.svg │ │ │ │ ├── bezier2.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── bing.svg │ │ │ │ ├── binoculars-fill.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── blockquote-left.svg │ │ │ │ ├── blockquote-right.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── body-text.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 │ │ │ │ ├── boombox-fill.svg │ │ │ │ ├── boombox.svg │ │ │ │ ├── bootstrap-fill.svg │ │ │ │ ├── bootstrap-icons.css │ │ │ │ ├── bootstrap-icons.json │ │ │ │ ├── bootstrap-icons.min.css │ │ │ │ ├── bootstrap-icons.scss │ │ │ │ ├── bootstrap-icons.svg │ │ │ │ ├── bootstrap-reboot.svg │ │ │ │ ├── bootstrap.icons.css │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-bottom.svg │ │ │ │ ├── border-center.svg │ │ │ │ ├── border-inner.svg │ │ │ │ ├── border-left.svg │ │ │ │ ├── border-middle.svg │ │ │ │ ├── border-outer.svg │ │ │ │ ├── border-right.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── border-top.svg │ │ │ │ ├── border-width.svg │ │ │ │ ├── border.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-fill.svg │ │ │ │ ├── box-seam-fill.svg │ │ │ │ ├── box-seam.svg │ │ │ │ ├── box.svg │ │ │ │ ├── box2-fill.svg │ │ │ │ ├── box2-heart-fill.svg │ │ │ │ ├── box2-heart.svg │ │ │ │ ├── box2.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braces-asterisk.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 │ │ │ │ ├── brilliance.svg │ │ │ │ ├── broadcast-pin.svg │ │ │ │ ├── broadcast.svg │ │ │ │ ├── browser-chrome.svg │ │ │ │ ├── browser-edge.svg │ │ │ │ ├── browser-firefox.svg │ │ │ │ ├── browser-safari.svg │ │ │ │ ├── brush-fill.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bucket-fill.svg │ │ │ │ ├── bucket.svg │ │ │ │ ├── bug-fill.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building-add.svg │ │ │ │ ├── building-check.svg │ │ │ │ ├── building-dash.svg │ │ │ │ ├── building-down.svg │ │ │ │ ├── building-exclamation.svg │ │ │ │ ├── building-fill-add.svg │ │ │ │ ├── building-fill-check.svg │ │ │ │ ├── building-fill-dash.svg │ │ │ │ ├── building-fill-down.svg │ │ │ │ ├── building-fill-exclamation.svg │ │ │ │ ├── building-fill-gear.svg │ │ │ │ ├── building-fill-lock.svg │ │ │ │ ├── building-fill-slash.svg │ │ │ │ ├── building-fill-up.svg │ │ │ │ ├── building-fill-x.svg │ │ │ │ ├── building-fill.svg │ │ │ │ ├── building-gear.svg │ │ │ │ ├── building-lock.svg │ │ │ │ ├── building-slash.svg │ │ │ │ ├── building-up.svg │ │ │ │ ├── building-x.svg │ │ │ │ ├── building.svg │ │ │ │ ├── buildings-fill.svg │ │ │ │ ├── buildings.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── bus-front-fill.svg │ │ │ │ ├── bus-front.svg │ │ │ │ ├── c-circle-fill.svg │ │ │ │ ├── c-circle.svg │ │ │ │ ├── c-square-fill.svg │ │ │ │ ├── c-square.svg │ │ │ │ ├── cake-fill.svg │ │ │ │ ├── cake.svg │ │ │ │ ├── cake2-fill.svg │ │ │ │ ├── cake2.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-heart-fill.svg │ │ │ │ ├── calendar-heart.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-heart-fill.svg │ │ │ │ ├── calendar2-heart.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 │ │ │ │ ├── capsule-pill.svg │ │ │ │ ├── capsule.svg │ │ │ │ ├── car-front-fill.svg │ │ │ │ ├── car-front.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-coin.svg │ │ │ │ ├── cash-stack.svg │ │ │ │ ├── cash.svg │ │ │ │ ├── cassette-fill.svg │ │ │ │ ├── cassette.svg │ │ │ │ ├── cast.svg │ │ │ │ ├── cc-circle-fill.svg │ │ │ │ ├── cc-circle.svg │ │ │ │ ├── cc-square-fill.svg │ │ │ │ ├── cc-square.svg │ │ │ │ ├── chat-dots-fill.svg │ │ │ │ ├── chat-dots.svg │ │ │ │ ├── chat-fill.svg │ │ │ │ ├── chat-heart-fill.svg │ │ │ │ ├── chat-heart.svg │ │ │ │ ├── chat-left-dots-fill.svg │ │ │ │ ├── chat-left-dots.svg │ │ │ │ ├── chat-left-fill.svg │ │ │ │ ├── chat-left-heart-fill.svg │ │ │ │ ├── chat-left-heart.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-heart-fill.svg │ │ │ │ ├── chat-right-heart.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-heart-fill.svg │ │ │ │ ├── chat-square-heart.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-lg.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-fill.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-data-fill.svg │ │ │ │ ├── clipboard-data.svg │ │ │ │ ├── clipboard-fill.svg │ │ │ │ ├── clipboard-heart-fill.svg │ │ │ │ ├── clipboard-heart.svg │ │ │ │ ├── clipboard-minus-fill.svg │ │ │ │ ├── clipboard-minus.svg │ │ │ │ ├── clipboard-plus-fill.svg │ │ │ │ ├── clipboard-plus.svg │ │ │ │ ├── clipboard-pulse.svg │ │ │ │ ├── clipboard-x-fill.svg │ │ │ │ ├── clipboard-x.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clipboard2-check-fill.svg │ │ │ │ ├── clipboard2-check.svg │ │ │ │ ├── clipboard2-data-fill.svg │ │ │ │ ├── clipboard2-data.svg │ │ │ │ ├── clipboard2-fill.svg │ │ │ │ ├── clipboard2-heart-fill.svg │ │ │ │ ├── clipboard2-heart.svg │ │ │ │ ├── clipboard2-minus-fill.svg │ │ │ │ ├── clipboard2-minus.svg │ │ │ │ ├── clipboard2-plus-fill.svg │ │ │ │ ├── clipboard2-plus.svg │ │ │ │ ├── clipboard2-pulse-fill.svg │ │ │ │ ├── clipboard2-pulse.svg │ │ │ │ ├── clipboard2-x-fill.svg │ │ │ │ ├── clipboard2-x.svg │ │ │ │ ├── clipboard2.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-drizzle-fill.svg │ │ │ │ ├── cloud-drizzle.svg │ │ │ │ ├── cloud-fill.svg │ │ │ │ ├── cloud-fog-fill.svg │ │ │ │ ├── cloud-fog.svg │ │ │ │ ├── cloud-fog2-fill.svg │ │ │ │ ├── cloud-fog2.svg │ │ │ │ ├── cloud-hail-fill.svg │ │ │ │ ├── cloud-hail.svg │ │ │ │ ├── cloud-haze-fill.svg │ │ │ │ ├── cloud-haze.svg │ │ │ │ ├── cloud-haze2-fill.svg │ │ │ │ ├── cloud-haze2.svg │ │ │ │ ├── cloud-lightning-fill.svg │ │ │ │ ├── cloud-lightning-rain-fill.svg │ │ │ │ ├── cloud-lightning-rain.svg │ │ │ │ ├── cloud-lightning.svg │ │ │ │ ├── cloud-minus-fill.svg │ │ │ │ ├── cloud-minus.svg │ │ │ │ ├── cloud-moon-fill.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-plus-fill.svg │ │ │ │ ├── cloud-plus.svg │ │ │ │ ├── cloud-rain-fill.svg │ │ │ │ ├── cloud-rain-heavy-fill.svg │ │ │ │ ├── cloud-rain-heavy.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-slash-fill.svg │ │ │ │ ├── cloud-slash.svg │ │ │ │ ├── cloud-sleet-fill.svg │ │ │ │ ├── cloud-sleet.svg │ │ │ │ ├── cloud-snow-fill.svg │ │ │ │ ├── cloud-snow.svg │ │ │ │ ├── cloud-sun-fill.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-fill.svg │ │ │ │ ├── cloud-upload.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── clouds-fill.svg │ │ │ │ ├── clouds.svg │ │ │ │ ├── cloudy-fill.svg │ │ │ │ ├── cloudy.svg │ │ │ │ ├── code-slash.svg │ │ │ │ ├── code-square.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coin.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 │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.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 │ │ │ │ ├── crosshair.svg │ │ │ │ ├── crosshair2.svg │ │ │ │ ├── cup-fill.svg │ │ │ │ ├── cup-hot-fill.svg │ │ │ │ ├── cup-hot.svg │ │ │ │ ├── cup-straw.svg │ │ │ │ ├── cup.svg │ │ │ │ ├── currency-bitcoin.svg │ │ │ │ ├── currency-dollar.svg │ │ │ │ ├── currency-euro.svg │ │ │ │ ├── currency-exchange.svg │ │ │ │ ├── currency-pound.svg │ │ │ │ ├── currency-rupee.svg │ │ │ │ ├── currency-yen.svg │ │ │ │ ├── cursor-fill.svg │ │ │ │ ├── cursor-text.svg │ │ │ │ ├── cursor.svg │ │ │ │ ├── dash-circle-dotted.svg │ │ │ │ ├── dash-circle-fill.svg │ │ │ │ ├── dash-circle.svg │ │ │ │ ├── dash-lg.svg │ │ │ │ ├── dash-square-dotted.svg │ │ │ │ ├── dash-square-fill.svg │ │ │ │ ├── dash-square.svg │ │ │ │ ├── dash.svg │ │ │ │ ├── database-add.svg │ │ │ │ ├── database-check.svg │ │ │ │ ├── database-dash.svg │ │ │ │ ├── database-down.svg │ │ │ │ ├── database-exclamation.svg │ │ │ │ ├── database-fill-add.svg │ │ │ │ ├── database-fill-check.svg │ │ │ │ ├── database-fill-dash.svg │ │ │ │ ├── database-fill-down.svg │ │ │ │ ├── database-fill-exclamation.svg │ │ │ │ ├── database-fill-gear.svg │ │ │ │ ├── database-fill-lock.svg │ │ │ │ ├── database-fill-slash.svg │ │ │ │ ├── database-fill-up.svg │ │ │ │ ├── database-fill-x.svg │ │ │ │ ├── database-fill.svg │ │ │ │ ├── database-gear.svg │ │ │ │ ├── database-lock.svg │ │ │ │ ├── database-slash.svg │ │ │ │ ├── database-up.svg │ │ │ │ ├── database-x.svg │ │ │ │ ├── database.svg │ │ │ │ ├── device-hdd-fill.svg │ │ │ │ ├── device-hdd.svg │ │ │ │ ├── device-ssd-fill.svg │ │ │ │ ├── device-ssd.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 │ │ │ │ ├── disc-fill.svg │ │ │ │ ├── disc.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── display-fill.svg │ │ │ │ ├── display.svg │ │ │ │ ├── displayport-fill.svg │ │ │ │ ├── displayport.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 │ │ │ │ ├── dpad-fill.svg │ │ │ │ ├── dpad.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── droplet-fill.svg │ │ │ │ ├── droplet-half.svg │ │ │ │ ├── droplet.svg │ │ │ │ ├── duffle-fill.svg │ │ │ │ ├── duffle.svg │ │ │ │ ├── ear-fill.svg │ │ │ │ ├── ear.svg │ │ │ │ ├── earbuds.svg │ │ │ │ ├── easel-fill.svg │ │ │ │ ├── easel.svg │ │ │ │ ├── easel2-fill.svg │ │ │ │ ├── easel2.svg │ │ │ │ ├── easel3-fill.svg │ │ │ │ ├── easel3.svg │ │ │ │ ├── egg-fill.svg │ │ │ │ ├── egg-fried.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject-fill.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── emoji-angry-fill.svg │ │ │ │ ├── emoji-angry.svg │ │ │ │ ├── emoji-astonished-fill.svg │ │ │ │ ├── emoji-astonished.svg │ │ │ │ ├── emoji-dizzy-fill.svg │ │ │ │ ├── emoji-dizzy.svg │ │ │ │ ├── emoji-expressionless-fill.svg │ │ │ │ ├── emoji-expressionless.svg │ │ │ │ ├── emoji-frown-fill.svg │ │ │ │ ├── emoji-frown.svg │ │ │ │ ├── emoji-grimace-fill.svg │ │ │ │ ├── emoji-grimace.svg │ │ │ │ ├── emoji-grin-fill.svg │ │ │ │ ├── emoji-grin.svg │ │ │ │ ├── emoji-heart-eyes-fill.svg │ │ │ │ ├── emoji-heart-eyes.svg │ │ │ │ ├── emoji-kiss-fill.svg │ │ │ │ ├── emoji-kiss.svg │ │ │ │ ├── emoji-laughing-fill.svg │ │ │ │ ├── emoji-laughing.svg │ │ │ │ ├── emoji-neutral-fill.svg │ │ │ │ ├── emoji-neutral.svg │ │ │ │ ├── emoji-smile-fill.svg │ │ │ │ ├── emoji-smile-upside-down-fill.svg │ │ │ │ ├── emoji-smile-upside-down.svg │ │ │ │ ├── emoji-smile.svg │ │ │ │ ├── emoji-sunglasses-fill.svg │ │ │ │ ├── emoji-sunglasses.svg │ │ │ │ ├── emoji-surprise-fill.svg │ │ │ │ ├── emoji-surprise.svg │ │ │ │ ├── emoji-tear-fill.svg │ │ │ │ ├── emoji-tear.svg │ │ │ │ ├── emoji-wink-fill.svg │ │ │ │ ├── emoji-wink.svg │ │ │ │ ├── envelope-arrow-down-fill.svg │ │ │ │ ├── envelope-arrow-down.svg │ │ │ │ ├── envelope-arrow-up-fill.svg │ │ │ │ ├── envelope-arrow-up.svg │ │ │ │ ├── envelope-at-fill.svg │ │ │ │ ├── envelope-at.svg │ │ │ │ ├── envelope-check-fill.svg │ │ │ │ ├── envelope-check.svg │ │ │ │ ├── envelope-dash-fill.svg │ │ │ │ ├── envelope-dash.svg │ │ │ │ ├── envelope-exclamation-fill.svg │ │ │ │ ├── envelope-exclamation.svg │ │ │ │ ├── envelope-fill.svg │ │ │ │ ├── envelope-heart-fill.svg │ │ │ │ ├── envelope-heart.svg │ │ │ │ ├── envelope-open-fill.svg │ │ │ │ ├── envelope-open-heart-fill.svg │ │ │ │ ├── envelope-open-heart.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-paper-fill.svg │ │ │ │ ├── envelope-paper-heart-fill.svg │ │ │ │ ├── envelope-paper-heart.svg │ │ │ │ ├── envelope-paper.svg │ │ │ │ ├── envelope-plus-fill.svg │ │ │ │ ├── envelope-plus.svg │ │ │ │ ├── envelope-slash-fill.svg │ │ │ │ ├── envelope-slash.svg │ │ │ │ ├── envelope-x-fill.svg │ │ │ │ ├── envelope-x.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eraser-fill.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── escape.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── ev-front-fill.svg │ │ │ │ ├── ev-front.svg │ │ │ │ ├── ev-station-fill.svg │ │ │ │ ├── ev-station.svg │ │ │ │ ├── exclamation-circle-fill.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-diamond-fill.svg │ │ │ │ ├── exclamation-diamond.svg │ │ │ │ ├── exclamation-lg.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 │ │ │ │ ├── explicit-fill.svg │ │ │ │ ├── explicit.svg │ │ │ │ ├── exposure.svg │ │ │ │ ├── eye-fill.svg │ │ │ │ ├── eye-slash-fill.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── eyedropper.svg │ │ │ │ ├── eyeglasses.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-forward-btn-fill.svg │ │ │ │ ├── fast-forward-btn.svg │ │ │ │ ├── fast-forward-circle-fill.svg │ │ │ │ ├── fast-forward-circle.svg │ │ │ │ ├── fast-forward-fill.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── feather2.svg │ │ │ │ ├── file-arrow-down-fill.svg │ │ │ │ ├── file-arrow-down.svg │ │ │ │ ├── file-arrow-up-fill.svg │ │ │ │ ├── file-arrow-up.svg │ │ │ │ ├── file-bar-graph-fill.svg │ │ │ │ ├── file-bar-graph.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-bar-graph-fill.svg │ │ │ │ ├── file-earmark-bar-graph.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-excel-fill.svg │ │ │ │ ├── file-earmark-excel.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-pdf-fill.svg │ │ │ │ ├── file-earmark-pdf.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-ppt-fill.svg │ │ │ │ ├── file-earmark-ppt.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-word-fill.svg │ │ │ │ ├── file-earmark-word.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-excel-fill.svg │ │ │ │ ├── file-excel.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-pdf-fill.svg │ │ │ │ ├── file-pdf.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-ppt-fill.svg │ │ │ │ ├── file-ppt.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-word-fill.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file-x-fill.svg │ │ │ │ ├── file-x.svg │ │ │ │ ├── file-zip-fill.svg │ │ │ │ ├── file-zip.svg │ │ │ │ ├── file.svg │ │ │ │ ├── files-alt.svg │ │ │ │ ├── files.svg │ │ │ │ ├── filetype-aac.svg │ │ │ │ ├── filetype-ai.svg │ │ │ │ ├── filetype-bmp.svg │ │ │ │ ├── filetype-cs.svg │ │ │ │ ├── filetype-css.svg │ │ │ │ ├── filetype-csv.svg │ │ │ │ ├── filetype-doc.svg │ │ │ │ ├── filetype-docx.svg │ │ │ │ ├── filetype-exe.svg │ │ │ │ ├── filetype-gif.svg │ │ │ │ ├── filetype-heic.svg │ │ │ │ ├── filetype-html.svg │ │ │ │ ├── filetype-java.svg │ │ │ │ ├── filetype-jpg.svg │ │ │ │ ├── filetype-js.svg │ │ │ │ ├── filetype-json.svg │ │ │ │ ├── filetype-jsx.svg │ │ │ │ ├── filetype-key.svg │ │ │ │ ├── filetype-m4p.svg │ │ │ │ ├── filetype-md.svg │ │ │ │ ├── filetype-mdx.svg │ │ │ │ ├── filetype-mov.svg │ │ │ │ ├── filetype-mp3.svg │ │ │ │ ├── filetype-mp4.svg │ │ │ │ ├── filetype-otf.svg │ │ │ │ ├── filetype-pdf.svg │ │ │ │ ├── filetype-php.svg │ │ │ │ ├── filetype-png.svg │ │ │ │ ├── filetype-ppt.svg │ │ │ │ ├── filetype-pptx.svg │ │ │ │ ├── filetype-psd.svg │ │ │ │ ├── filetype-py.svg │ │ │ │ ├── filetype-raw.svg │ │ │ │ ├── filetype-rb.svg │ │ │ │ ├── filetype-sass.svg │ │ │ │ ├── filetype-scss.svg │ │ │ │ ├── filetype-sh.svg │ │ │ │ ├── filetype-sql.svg │ │ │ │ ├── filetype-svg.svg │ │ │ │ ├── filetype-tiff.svg │ │ │ │ ├── filetype-tsx.svg │ │ │ │ ├── filetype-ttf.svg │ │ │ │ ├── filetype-txt.svg │ │ │ │ ├── filetype-wav.svg │ │ │ │ ├── filetype-woff.svg │ │ │ │ ├── filetype-xls.svg │ │ │ │ ├── filetype-xlsx.svg │ │ │ │ ├── filetype-xml.svg │ │ │ │ ├── filetype-yml.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 │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── flag-fill.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── floppy-fill.svg │ │ │ │ ├── floppy.svg │ │ │ │ ├── floppy2-fill.svg │ │ │ │ ├── floppy2.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 │ │ │ │ ├── fonts │ │ │ │ │ ├── bootstrap-icons.woff │ │ │ │ │ └── bootstrap-icons.woff2 │ │ │ │ ├── forward-fill.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── front.svg │ │ │ │ ├── fuel-pump-diesel-fill.svg │ │ │ │ ├── fuel-pump-diesel.svg │ │ │ │ ├── fuel-pump-fill.svg │ │ │ │ ├── fuel-pump.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 │ │ │ │ ├── gender-ambiguous.svg │ │ │ │ ├── gender-female.svg │ │ │ │ ├── gender-male.svg │ │ │ │ ├── gender-neuter.svg │ │ │ │ ├── gender-trans.svg │ │ │ │ ├── geo-alt-fill.svg │ │ │ │ ├── geo-alt.svg │ │ │ │ ├── geo-fill.svg │ │ │ │ ├── geo.svg │ │ │ │ ├── gift-fill.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia-australia.svg │ │ │ │ ├── globe-central-south-asia.svg │ │ │ │ ├── globe-europe-africa.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── globe2.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gpu-card.svg │ │ │ │ ├── graph-down-arrow.svg │ │ │ │ ├── graph-down.svg │ │ │ │ ├── graph-up-arrow.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 │ │ │ │ ├── h-circle-fill.svg │ │ │ │ ├── h-circle.svg │ │ │ │ ├── h-square-fill.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hand-index-fill.svg │ │ │ │ ├── hand-index-thumb-fill.svg │ │ │ │ ├── hand-index-thumb.svg │ │ │ │ ├── hand-index.svg │ │ │ │ ├── hand-thumbs-down-fill.svg │ │ │ │ ├── hand-thumbs-down.svg │ │ │ │ ├── hand-thumbs-up-fill.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 │ │ │ │ ├── hdmi-fill.svg │ │ │ │ ├── hdmi.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset-vr.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-arrow.svg │ │ │ │ ├── heart-fill.svg │ │ │ │ ├── heart-half.svg │ │ │ │ ├── heart-pulse-fill.svg │ │ │ │ ├── heart-pulse.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbreak-fill.svg │ │ │ │ ├── heartbreak.svg │ │ │ │ ├── hearts.svg │ │ │ │ ├── heptagon-fill.svg │ │ │ │ ├── heptagon-half.svg │ │ │ │ ├── heptagon.svg │ │ │ │ ├── hexagon-fill.svg │ │ │ │ ├── hexagon-half.svg │ │ │ │ ├── hexagon.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── highlights.svg │ │ │ │ ├── hospital-fill.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass-bottom.svg │ │ │ │ ├── hourglass-split.svg │ │ │ │ ├── hourglass-top.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-add-fill.svg │ │ │ │ ├── house-add.svg │ │ │ │ ├── house-check-fill.svg │ │ │ │ ├── house-check.svg │ │ │ │ ├── house-dash-fill.svg │ │ │ │ ├── house-dash.svg │ │ │ │ ├── house-door-fill.svg │ │ │ │ ├── house-door.svg │ │ │ │ ├── house-down-fill.svg │ │ │ │ ├── house-down.svg │ │ │ │ ├── house-exclamation-fill.svg │ │ │ │ ├── house-exclamation.svg │ │ │ │ ├── house-fill.svg │ │ │ │ ├── house-gear-fill.svg │ │ │ │ ├── house-gear.svg │ │ │ │ ├── house-heart-fill.svg │ │ │ │ ├── house-heart.svg │ │ │ │ ├── house-lock-fill.svg │ │ │ │ ├── house-lock.svg │ │ │ │ ├── house-slash-fill.svg │ │ │ │ ├── house-slash.svg │ │ │ │ ├── house-up-fill.svg │ │ │ │ ├── house-up.svg │ │ │ │ ├── house-x-fill.svg │ │ │ │ ├── house-x.svg │ │ │ │ ├── house.svg │ │ │ │ ├── houses-fill.svg │ │ │ │ ├── houses.svg │ │ │ │ ├── hr.svg │ │ │ │ ├── hurricane.svg │ │ │ │ ├── hypnotize.svg │ │ │ │ ├── image-alt.svg │ │ │ │ ├── image-fill.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox-fill.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── inboxes-fill.svg │ │ │ │ ├── inboxes.svg │ │ │ │ ├── incognito.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle-fill.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info-lg.svg │ │ │ │ ├── info-square-fill.svg │ │ │ │ ├── info-square.svg │ │ │ │ ├── info.svg │ │ │ │ ├── input-cursor-text.svg │ │ │ │ ├── input-cursor.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intersect.svg │ │ │ │ ├── journal-album.svg │ │ │ │ ├── journal-arrow-down.svg │ │ │ │ ├── journal-arrow-up.svg │ │ │ │ ├── journal-bookmark-fill.svg │ │ │ │ ├── journal-bookmark.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 │ │ │ │ ├── layer-backward.svg │ │ │ │ ├── layer-forward.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 │ │ │ │ ├── lightbulb-fill.svg │ │ │ │ ├── lightbulb-off-fill.svg │ │ │ │ ├── lightbulb-off.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── lightning-charge-fill.svg │ │ │ │ ├── lightning-charge.svg │ │ │ │ ├── lightning-fill.svg │ │ │ │ ├── lightning.svg │ │ │ │ ├── line.svg │ │ │ │ ├── link-45deg.svg │ │ │ │ ├── link.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── list-check.svg │ │ │ │ ├── list-columns-reverse.svg │ │ │ │ ├── list-columns.svg │ │ │ │ ├── list-nested.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-stars.svg │ │ │ │ ├── list-task.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── lock-fill.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── luggage-fill.svg │ │ │ │ ├── luggage.svg │ │ │ │ ├── lungs-fill.svg │ │ │ │ ├── lungs.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet-fill.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mailbox-flag.svg │ │ │ │ ├── mailbox.svg │ │ │ │ ├── mailbox2-flag.svg │ │ │ │ ├── mailbox2.svg │ │ │ │ ├── map-fill.svg │ │ │ │ ├── map.svg │ │ │ │ ├── markdown-fill.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── marker-tip.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── megaphone-fill.svg │ │ │ │ ├── megaphone.svg │ │ │ │ ├── memory.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 │ │ │ │ ├── messenger.svg │ │ │ │ ├── meta.svg │ │ │ │ ├── mic-fill.svg │ │ │ │ ├── mic-mute-fill.svg │ │ │ │ ├── mic-mute.svg │ │ │ │ ├── mic.svg │ │ │ │ ├── microsoft-teams.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── minecart-loaded.svg │ │ │ │ ├── minecart.svg │ │ │ │ ├── modem-fill.svg │ │ │ │ ├── modem.svg │ │ │ │ ├── moisture.svg │ │ │ │ ├── moon-fill.svg │ │ │ │ ├── moon-stars-fill.svg │ │ │ │ ├── moon-stars.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortarboard-fill.svg │ │ │ │ ├── mortarboard.svg │ │ │ │ ├── motherboard-fill.svg │ │ │ │ ├── motherboard.svg │ │ │ │ ├── mouse-fill.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mouse2-fill.svg │ │ │ │ ├── mouse2.svg │ │ │ │ ├── mouse3-fill.svg │ │ │ │ ├── mouse3.svg │ │ │ │ ├── music-note-beamed.svg │ │ │ │ ├── music-note-list.svg │ │ │ │ ├── music-note.svg │ │ │ │ ├── music-player-fill.svg │ │ │ │ ├── music-player.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── nintendo-switch.svg │ │ │ │ ├── node-minus-fill.svg │ │ │ │ ├── node-minus.svg │ │ │ │ ├── node-plus-fill.svg │ │ │ │ ├── node-plus.svg │ │ │ │ ├── noise-reduction.svg │ │ │ │ ├── nut-fill.svg │ │ │ │ ├── nut.svg │ │ │ │ ├── nvidia.svg │ │ │ │ ├── nvme-fill.svg │ │ │ │ ├── nvme.svg │ │ │ │ ├── octagon-fill.svg │ │ │ │ ├── octagon-half.svg │ │ │ │ ├── octagon.svg │ │ │ │ ├── opencollective.svg │ │ │ │ ├── optical-audio-fill.svg │ │ │ │ ├── optical-audio.svg │ │ │ │ ├── option.svg │ │ │ │ ├── outlet.svg │ │ │ │ ├── p-circle-fill.svg │ │ │ │ ├── p-circle.svg │ │ │ │ ├── p-square-fill.svg │ │ │ │ ├── p-square.svg │ │ │ │ ├── paint-bucket.svg │ │ │ │ ├── palette-fill.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── palette2.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── pass-fill.svg │ │ │ │ ├── pass.svg │ │ │ │ ├── passport-fill.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── patch-check-fill.svg │ │ │ │ ├── patch-check.svg │ │ │ │ ├── patch-exclamation-fill.svg │ │ │ │ ├── patch-exclamation.svg │ │ │ │ ├── patch-minus-fill.svg │ │ │ │ ├── patch-minus.svg │ │ │ │ ├── patch-plus-fill.svg │ │ │ │ ├── patch-plus.svg │ │ │ │ ├── patch-question-fill.svg │ │ │ │ ├── patch-question.svg │ │ │ │ ├── pause-btn-fill.svg │ │ │ │ ├── pause-btn.svg │ │ │ │ ├── pause-circle-fill.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause-fill.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── pc-display-horizontal.svg │ │ │ │ ├── pc-display.svg │ │ │ │ ├── pc-horizontal.svg │ │ │ │ ├── pc.svg │ │ │ │ ├── pci-card-network.svg │ │ │ │ ├── pci-card-sound.svg │ │ │ │ ├── pci-card.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-add.svg │ │ │ │ ├── person-arms-up.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-down.svg │ │ │ │ ├── person-exclamation.svg │ │ │ │ ├── person-fill-add.svg │ │ │ │ ├── person-fill-check.svg │ │ │ │ ├── person-fill-dash.svg │ │ │ │ ├── person-fill-down.svg │ │ │ │ ├── person-fill-exclamation.svg │ │ │ │ ├── person-fill-gear.svg │ │ │ │ ├── person-fill-lock.svg │ │ │ │ ├── person-fill-slash.svg │ │ │ │ ├── person-fill-up.svg │ │ │ │ ├── person-fill-x.svg │ │ │ │ ├── person-fill.svg │ │ │ │ ├── person-gear.svg │ │ │ │ ├── person-heart.svg │ │ │ │ ├── person-hearts.svg │ │ │ │ ├── person-lines-fill.svg │ │ │ │ ├── person-lock.svg │ │ │ │ ├── person-plus-fill.svg │ │ │ │ ├── person-plus.svg │ │ │ │ ├── person-raised-hand.svg │ │ │ │ ├── person-rolodex.svg │ │ │ │ ├── person-slash.svg │ │ │ │ ├── person-square.svg │ │ │ │ ├── person-standing-dress.svg │ │ │ │ ├── person-standing.svg │ │ │ │ ├── person-up.svg │ │ │ │ ├── person-vcard-fill.svg │ │ │ │ ├── person-vcard.svg │ │ │ │ ├── person-video.svg │ │ │ │ ├── person-video2.svg │ │ │ │ ├── person-video3.svg │ │ │ │ ├── person-walking.svg │ │ │ │ ├── person-wheelchair.svg │ │ │ │ ├── person-workspace.svg │ │ │ │ ├── person-x-fill.svg │ │ │ │ ├── person-x.svg │ │ │ │ ├── person.svg │ │ │ │ ├── phone-fill.svg │ │ │ │ ├── phone-flip.svg │ │ │ │ ├── phone-landscape-fill.svg │ │ │ │ ├── phone-landscape.svg │ │ │ │ ├── phone-vibrate-fill.svg │ │ │ │ ├── phone-vibrate.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── pie-chart-fill.svg │ │ │ │ ├── pie-chart.svg │ │ │ │ ├── piggy-bank-fill.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pin-angle-fill.svg │ │ │ │ ├── pin-angle.svg │ │ │ │ ├── pin-fill.svg │ │ │ │ ├── pin-map-fill.svg │ │ │ │ ├── pin-map.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── pip-fill.svg │ │ │ │ ├── pip.svg │ │ │ │ ├── play-btn-fill.svg │ │ │ │ ├── play-btn.svg │ │ │ │ ├── play-circle-fill.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play-fill.svg │ │ │ │ ├── play.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── plug-fill.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plugin.svg │ │ │ │ ├── plus-circle-dotted.svg │ │ │ │ ├── plus-circle-fill.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-lg.svg │ │ │ │ ├── plus-slash-minus.svg │ │ │ │ ├── plus-square-dotted.svg │ │ │ │ ├── plus-square-fill.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── postage-fill.svg │ │ │ │ ├── postage-heart-fill.svg │ │ │ │ ├── postage-heart.svg │ │ │ │ ├── postage.svg │ │ │ │ ├── postcard-fill.svg │ │ │ │ ├── postcard-heart-fill.svg │ │ │ │ ├── postcard-heart.svg │ │ │ │ ├── postcard.svg │ │ │ │ ├── power.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── prescription2.svg │ │ │ │ ├── printer-fill.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── projector-fill.svg │ │ │ │ ├── projector.svg │ │ │ │ ├── puzzle-fill.svg │ │ │ │ ├── puzzle.svg │ │ │ │ ├── qr-code-scan.svg │ │ │ │ ├── qr-code.svg │ │ │ │ ├── question-circle-fill.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question-diamond-fill.svg │ │ │ │ ├── question-diamond.svg │ │ │ │ ├── question-lg.svg │ │ │ │ ├── question-octagon-fill.svg │ │ │ │ ├── question-octagon.svg │ │ │ │ ├── question-square-fill.svg │ │ │ │ ├── question-square.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── quote.svg │ │ │ │ ├── r-circle-fill.svg │ │ │ │ ├── r-circle.svg │ │ │ │ ├── r-square-fill.svg │ │ │ │ ├── r-square.svg │ │ │ │ ├── radar.svg │ │ │ │ ├── radioactive.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── receipt-cutoff.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── reception-0.svg │ │ │ │ ├── reception-1.svg │ │ │ │ ├── reception-2.svg │ │ │ │ ├── reception-3.svg │ │ │ │ ├── reception-4.svg │ │ │ │ ├── record-btn-fill.svg │ │ │ │ ├── record-btn.svg │ │ │ │ ├── record-circle-fill.svg │ │ │ │ ├── record-circle.svg │ │ │ │ ├── record-fill.svg │ │ │ │ ├── record.svg │ │ │ │ ├── record2-fill.svg │ │ │ │ ├── record2.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── regex.svg │ │ │ │ ├── repeat-1.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── reply-all-fill.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply-fill.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── rewind-btn-fill.svg │ │ │ │ ├── rewind-btn.svg │ │ │ │ ├── rewind-circle-fill.svg │ │ │ │ ├── rewind-circle.svg │ │ │ │ ├── rewind-fill.svg │ │ │ │ ├── rewind.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket-fill.svg │ │ │ │ ├── rocket-takeoff-fill.svg │ │ │ │ ├── rocket-takeoff.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── router-fill.svg │ │ │ │ ├── router.svg │ │ │ │ ├── rss-fill.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── rulers.svg │ │ │ │ ├── safe-fill.svg │ │ │ │ ├── safe.svg │ │ │ │ ├── safe2-fill.svg │ │ │ │ ├── safe2.svg │ │ │ │ ├── save-fill.svg │ │ │ │ ├── save.svg │ │ │ │ ├── save2-fill.svg │ │ │ │ ├── save2.svg │ │ │ │ ├── scissors.svg │ │ │ │ ├── scooter.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── sd-card-fill.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-heart-fill.svg │ │ │ │ ├── search-heart.svg │ │ │ │ ├── search.svg │ │ │ │ ├── segmented-nav.svg │ │ │ │ ├── send-arrow-down-fill.svg │ │ │ │ ├── send-arrow-down.svg │ │ │ │ ├── send-arrow-up-fill.svg │ │ │ │ ├── send-arrow-up.svg │ │ │ │ ├── send-check-fill.svg │ │ │ │ ├── send-check.svg │ │ │ │ ├── send-dash-fill.svg │ │ │ │ ├── send-dash.svg │ │ │ │ ├── send-exclamation-fill.svg │ │ │ │ ├── send-exclamation.svg │ │ │ │ ├── send-fill.svg │ │ │ │ ├── send-plus-fill.svg │ │ │ │ ├── send-plus.svg │ │ │ │ ├── send-slash-fill.svg │ │ │ │ ├── send-slash.svg │ │ │ │ ├── send-x-fill.svg │ │ │ │ ├── send-x.svg │ │ │ │ ├── send.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shadows.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 │ │ │ │ ├── sign-dead-end-fill.svg │ │ │ │ ├── sign-dead-end.svg │ │ │ │ ├── sign-do-not-enter-fill.svg │ │ │ │ ├── sign-do-not-enter.svg │ │ │ │ ├── sign-intersection-fill.svg │ │ │ │ ├── sign-intersection-side-fill.svg │ │ │ │ ├── sign-intersection-side.svg │ │ │ │ ├── sign-intersection-t-fill.svg │ │ │ │ ├── sign-intersection-t.svg │ │ │ │ ├── sign-intersection-y-fill.svg │ │ │ │ ├── sign-intersection-y.svg │ │ │ │ ├── sign-intersection.svg │ │ │ │ ├── sign-merge-left-fill.svg │ │ │ │ ├── sign-merge-left.svg │ │ │ │ ├── sign-merge-right-fill.svg │ │ │ │ ├── sign-merge-right.svg │ │ │ │ ├── sign-no-left-turn-fill.svg │ │ │ │ ├── sign-no-left-turn.svg │ │ │ │ ├── sign-no-parking-fill.svg │ │ │ │ ├── sign-no-parking.svg │ │ │ │ ├── sign-no-right-turn-fill.svg │ │ │ │ ├── sign-no-right-turn.svg │ │ │ │ ├── sign-railroad-fill.svg │ │ │ │ ├── sign-railroad.svg │ │ │ │ ├── sign-stop-fill.svg │ │ │ │ ├── sign-stop-lights-fill.svg │ │ │ │ ├── sign-stop-lights.svg │ │ │ │ ├── sign-stop.svg │ │ │ │ ├── sign-turn-left-fill.svg │ │ │ │ ├── sign-turn-left.svg │ │ │ │ ├── sign-turn-right-fill.svg │ │ │ │ ├── sign-turn-right.svg │ │ │ │ ├── sign-turn-slight-left-fill.svg │ │ │ │ ├── sign-turn-slight-left.svg │ │ │ │ ├── sign-turn-slight-right-fill.svg │ │ │ │ ├── sign-turn-slight-right.svg │ │ │ │ ├── sign-yield-fill.svg │ │ │ │ ├── sign-yield.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signpost-2-fill.svg │ │ │ │ ├── signpost-2.svg │ │ │ │ ├── signpost-fill.svg │ │ │ │ ├── signpost-split-fill.svg │ │ │ │ ├── signpost-split.svg │ │ │ │ ├── signpost.svg │ │ │ │ ├── sim-fill.svg │ │ │ │ ├── sim-slash-fill.svg │ │ │ │ ├── sim-slash.svg │ │ │ │ ├── sim.svg │ │ │ │ ├── sina-weibo.svg │ │ │ │ ├── skip-backward-btn-fill.svg │ │ │ │ ├── skip-backward-btn.svg │ │ │ │ ├── skip-backward-circle-fill.svg │ │ │ │ ├── skip-backward-circle.svg │ │ │ │ ├── skip-backward-fill.svg │ │ │ │ ├── skip-backward.svg │ │ │ │ ├── skip-end-btn-fill.svg │ │ │ │ ├── skip-end-btn.svg │ │ │ │ ├── skip-end-circle-fill.svg │ │ │ │ ├── skip-end-circle.svg │ │ │ │ ├── skip-end-fill.svg │ │ │ │ ├── skip-end.svg │ │ │ │ ├── skip-forward-btn-fill.svg │ │ │ │ ├── skip-forward-btn.svg │ │ │ │ ├── skip-forward-circle-fill.svg │ │ │ │ ├── skip-forward-circle.svg │ │ │ │ ├── skip-forward-fill.svg │ │ │ │ ├── skip-forward.svg │ │ │ │ ├── skip-start-btn-fill.svg │ │ │ │ ├── skip-start-btn.svg │ │ │ │ ├── skip-start-circle-fill.svg │ │ │ │ ├── skip-start-circle.svg │ │ │ │ ├── skip-start-fill.svg │ │ │ │ ├── skip-start.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slash-circle-fill.svg │ │ │ │ ├── slash-circle.svg │ │ │ │ ├── slash-lg.svg │ │ │ │ ├── slash-square-fill.svg │ │ │ │ ├── slash-square.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sliders.svg │ │ │ │ ├── sliders2-vertical.svg │ │ │ │ ├── sliders2.svg │ │ │ │ ├── smartwatch.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── snow.svg │ │ │ │ ├── snow2.svg │ │ │ │ ├── snow3.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 │ │ │ │ ├── sourceforge.svg │ │ │ │ ├── speaker-fill.svg │ │ │ │ ├── speaker.svg │ │ │ │ ├── speedometer.svg │ │ │ │ ├── speedometer2.svg │ │ │ │ ├── spellcheck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── square-fill.svg │ │ │ │ ├── square-half.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stack.svg │ │ │ │ ├── star-fill.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── stars.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── stickies-fill.svg │ │ │ │ ├── stickies.svg │ │ │ │ ├── sticky-fill.svg │ │ │ │ ├── sticky.svg │ │ │ │ ├── stop-btn-fill.svg │ │ │ │ ├── stop-btn.svg │ │ │ │ ├── stop-circle-fill.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop-fill.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stoplights-fill.svg │ │ │ │ ├── stoplights.svg │ │ │ │ ├── stopwatch-fill.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── substack.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 │ │ │ │ ├── suitcase-fill.svg │ │ │ │ ├── suitcase-lg-fill.svg │ │ │ │ ├── suitcase-lg.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── suitcase2-fill.svg │ │ │ │ ├── suitcase2.svg │ │ │ │ ├── sun-fill.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── sunglasses.svg │ │ │ │ ├── sunrise-fill.svg │ │ │ │ ├── sunrise.svg │ │ │ │ ├── sunset-fill.svg │ │ │ │ ├── sunset.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── symmetry-horizontal.svg │ │ │ │ ├── symmetry-vertical.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 │ │ │ │ ├── taxi-front-fill.svg │ │ │ │ ├── taxi-front.svg │ │ │ │ ├── telegram.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 │ │ │ │ ├── tencent-qq.svg │ │ │ │ ├── terminal-dash.svg │ │ │ │ ├── terminal-fill.svg │ │ │ │ ├── terminal-plus.svg │ │ │ │ ├── terminal-split.svg │ │ │ │ ├── terminal-x.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-center.svg │ │ │ │ ├── text-indent-left.svg │ │ │ │ ├── text-indent-right.svg │ │ │ │ ├── text-left.svg │ │ │ │ ├── text-paragraph.svg │ │ │ │ ├── text-right.svg │ │ │ │ ├── text-wrap.svg │ │ │ │ ├── textarea-resize.svg │ │ │ │ ├── textarea-t.svg │ │ │ │ ├── textarea.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-high.svg │ │ │ │ ├── thermometer-low.svg │ │ │ │ ├── thermometer-snow.svg │ │ │ │ ├── thermometer-sun.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── threads-fill.svg │ │ │ │ ├── threads.svg │ │ │ │ ├── three-dots-vertical.svg │ │ │ │ ├── three-dots.svg │ │ │ │ ├── thunderbolt-fill.svg │ │ │ │ ├── thunderbolt.svg │ │ │ │ ├── ticket-detailed-fill.svg │ │ │ │ ├── ticket-detailed.svg │ │ │ │ ├── ticket-fill.svg │ │ │ │ ├── ticket-perforated-fill.svg │ │ │ │ ├── ticket-perforated.svg │ │ │ │ ├── ticket.svg │ │ │ │ ├── tiktok.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toggle2-off.svg │ │ │ │ ├── toggle2-on.svg │ │ │ │ ├── toggles.svg │ │ │ │ ├── toggles2.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tornado.svg │ │ │ │ ├── train-freight-front-fill.svg │ │ │ │ ├── train-freight-front.svg │ │ │ │ ├── train-front-fill.svg │ │ │ │ ├── train-front.svg │ │ │ │ ├── train-lightrail-front-fill.svg │ │ │ │ ├── train-lightrail-front.svg │ │ │ │ ├── translate.svg │ │ │ │ ├── transparency.svg │ │ │ │ ├── trash-fill.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── trash2-fill.svg │ │ │ │ ├── trash2.svg │ │ │ │ ├── trash3-fill.svg │ │ │ │ ├── trash3.svg │ │ │ │ ├── tree-fill.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── triangle-fill.svg │ │ │ │ ├── triangle-half.svg │ │ │ │ ├── triangle.svg │ │ │ │ ├── trophy-fill.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── tropical-storm.svg │ │ │ │ ├── truck-flatbed.svg │ │ │ │ ├── truck-front-fill.svg │ │ │ │ ├── truck-front.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tsunami.svg │ │ │ │ ├── tv-fill.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-x.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── type-bold.svg │ │ │ │ ├── type-h1.svg │ │ │ │ ├── type-h2.svg │ │ │ │ ├── type-h3.svg │ │ │ │ ├── type-h4.svg │ │ │ │ ├── type-h5.svg │ │ │ │ ├── type-h6.svg │ │ │ │ ├── type-italic.svg │ │ │ │ ├── type-strikethrough.svg │ │ │ │ ├── type-underline.svg │ │ │ │ ├── type.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── ui-checks-grid.svg │ │ │ │ ├── ui-checks.svg │ │ │ │ ├── ui-radios-grid.svg │ │ │ │ ├── ui-radios.svg │ │ │ │ ├── umbrella-fill.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── unindent.svg │ │ │ │ ├── union.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── universal-access-circle.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── unlock-fill.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upc-scan.svg │ │ │ │ ├── upc.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── usb-c-fill.svg │ │ │ │ ├── usb-c.svg │ │ │ │ ├── usb-drive-fill.svg │ │ │ │ ├── usb-drive.svg │ │ │ │ ├── usb-fill.svg │ │ │ │ ├── usb-micro-fill.svg │ │ │ │ ├── usb-micro.svg │ │ │ │ ├── usb-mini-fill.svg │ │ │ │ ├── usb-mini.svg │ │ │ │ ├── usb-plug-fill.svg │ │ │ │ ├── usb-plug.svg │ │ │ │ ├── usb-symbol.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── valentine.svg │ │ │ │ ├── valentine2.svg │ │ │ │ ├── vector-pen.svg │ │ │ │ ├── view-list.svg │ │ │ │ ├── view-stacked.svg │ │ │ │ ├── vignette.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vinyl-fill.svg │ │ │ │ ├── vinyl.svg │ │ │ │ ├── virus.svg │ │ │ │ ├── virus2.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 │ │ │ │ ├── water.svg │ │ │ │ ├── webcam-fill.svg │ │ │ │ ├── webcam.svg │ │ │ │ ├── wechat.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── wifi-1.svg │ │ │ │ ├── wifi-2.svg │ │ │ │ ├── wifi-off.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wikipedia.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-dash.svg │ │ │ │ ├── window-desktop.svg │ │ │ │ ├── window-dock.svg │ │ │ │ ├── window-fullscreen.svg │ │ │ │ ├── window-plus.svg │ │ │ │ ├── window-sidebar.svg │ │ │ │ ├── window-split.svg │ │ │ │ ├── window-stack.svg │ │ │ │ ├── window-x.svg │ │ │ │ ├── window.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wrench-adjustable-circle-fill.svg │ │ │ │ ├── wrench-adjustable-circle.svg │ │ │ │ ├── wrench-adjustable.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-circle-fill.svg │ │ │ │ ├── x-circle.svg │ │ │ │ ├── x-diamond-fill.svg │ │ │ │ ├── x-diamond.svg │ │ │ │ ├── x-lg.svg │ │ │ │ ├── x-octagon-fill.svg │ │ │ │ ├── x-octagon.svg │ │ │ │ ├── x-square-fill.svg │ │ │ │ ├── x-square.svg │ │ │ │ ├── x.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yin-yang.svg │ │ │ │ ├── youtube.svg │ │ │ │ ├── zoom-in.svg │ │ │ │ └── zoom-out.svg │ │ │ └── jquery_confirm.min.css │ │ ├── index.css │ │ ├── quick-website.css │ │ └── register.css │ ├── images │ │ ├── bg.png │ │ ├── emoji │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 26.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 31.png │ │ │ ├── 32.png │ │ │ ├── 33.png │ │ │ ├── 34.png │ │ │ ├── 35.png │ │ │ ├── 36.png │ │ │ ├── 37.png │ │ │ ├── 38.png │ │ │ ├── 39.png │ │ │ ├── 4.png │ │ │ ├── 40.png │ │ │ ├── 41.png │ │ │ ├── 42.png │ │ │ ├── 43.png │ │ │ ├── 44.png │ │ │ ├── 45.png │ │ │ ├── 46.png │ │ │ ├── 47.png │ │ │ ├── 48.png │ │ │ ├── 49.png │ │ │ ├── 5.png │ │ │ ├── 50.png │ │ │ ├── 51.png │ │ │ ├── 52.png │ │ │ ├── 53.png │ │ │ ├── 54.png │ │ │ ├── 55.png │ │ │ ├── 56.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 59.png │ │ │ ├── 6.png │ │ │ ├── 60.png │ │ │ ├── 61.png │ │ │ ├── 62.png │ │ │ ├── 63.png │ │ │ ├── 64.png │ │ │ ├── 65.png │ │ │ ├── 66.png │ │ │ ├── 67.png │ │ │ ├── 68.png │ │ │ ├── 69.png │ │ │ ├── 7.png │ │ │ ├── 70.png │ │ │ ├── 71.png │ │ │ ├── 72.png │ │ │ ├── 73.png │ │ │ ├── 74.png │ │ │ ├── 75.png │ │ │ ├── 76.png │ │ │ ├── 77.png │ │ │ ├── 78.png │ │ │ ├── 79.png │ │ │ ├── 8.png │ │ │ ├── 80.png │ │ │ ├── 81.png │ │ │ ├── 82.png │ │ │ ├── 83.png │ │ │ ├── 84.png │ │ │ └── 9.png │ │ ├── head.png │ │ ├── head0.png │ │ ├── head1.png │ │ ├── head2.png │ │ ├── head3.png │ │ ├── head4.png │ │ ├── head5.png │ │ ├── head6.png │ │ ├── qq │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 26.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 31.png │ │ │ ├── 32.png │ │ │ ├── 33.png │ │ │ ├── 34.png │ │ │ ├── 35.png │ │ │ ├── 36.png │ │ │ ├── 37.png │ │ │ ├── 38.png │ │ │ ├── 39.png │ │ │ ├── 4.png │ │ │ ├── 40.png │ │ │ ├── 41.png │ │ │ ├── 42.png │ │ │ ├── 43.png │ │ │ ├── 44.png │ │ │ ├── 45.png │ │ │ ├── 46.png │ │ │ ├── 47.png │ │ │ ├── 48.png │ │ │ ├── 49.png │ │ │ ├── 5.png │ │ │ ├── 50.png │ │ │ ├── 51.png │ │ │ ├── 52.png │ │ │ ├── 53.png │ │ │ ├── 54.png │ │ │ ├── 55.png │ │ │ ├── 56.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 59.png │ │ │ ├── 6.png │ │ │ ├── 60.png │ │ │ ├── 61.png │ │ │ ├── 62.png │ │ │ ├── 63.png │ │ │ ├── 64.png │ │ │ ├── 65.png │ │ │ ├── 66.png │ │ │ ├── 67.png │ │ │ ├── 68.png │ │ │ ├── 69.png │ │ │ ├── 7.png │ │ │ ├── 70.png │ │ │ ├── 71.png │ │ │ ├── 72.png │ │ │ ├── 73.png │ │ │ ├── 74.png │ │ │ ├── 75.png │ │ │ ├── 76.png │ │ │ ├── 77.png │ │ │ ├── 78.png │ │ │ ├── 79.png │ │ │ ├── 8.png │ │ │ ├── 80.png │ │ │ ├── 81.png │ │ │ ├── 82.png │ │ │ ├── 83.png │ │ │ ├── 84.png │ │ │ ├── 85.png │ │ │ ├── 86.png │ │ │ ├── 87.png │ │ │ ├── 88.png │ │ │ ├── 89.png │ │ │ ├── 9.png │ │ │ ├── 90.png │ │ │ └── bg.png │ │ ├── suolong.png │ │ └── tieba │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 26.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 31.png │ │ │ ├── 32.png │ │ │ ├── 33.png │ │ │ ├── 34.png │ │ │ ├── 35.png │ │ │ ├── 36.png │ │ │ ├── 37.png │ │ │ ├── 38.png │ │ │ ├── 39.png │ │ │ ├── 4.png │ │ │ ├── 40.png │ │ │ ├── 41.png │ │ │ ├── 42.png │ │ │ ├── 43.png │ │ │ ├── 44.png │ │ │ ├── 45.png │ │ │ ├── 46.png │ │ │ ├── 47.png │ │ │ ├── 48.png │ │ │ ├── 49.png │ │ │ ├── 5.png │ │ │ ├── 50.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ └── js │ │ ├── drag.js │ │ ├── external │ │ ├── adapter_latest.js │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrapValidator.js │ │ ├── bootstrapValidator.min.js │ │ ├── emoji_jQuery.min.js │ │ ├── feather_min.js │ │ ├── jquery.js │ │ ├── jquery_confirm.min.js │ │ ├── language │ │ │ ├── ar_MA.js │ │ │ ├── be_FR.js │ │ │ ├── be_NL.js │ │ │ ├── bg_BG.js │ │ │ ├── cs_CZ.js │ │ │ ├── da_DK.js │ │ │ ├── de_DE.js │ │ │ ├── en_US.js │ │ │ ├── es_CL.js │ │ │ ├── es_ES.js │ │ │ ├── fa_IR.js │ │ │ ├── fr_FR.js │ │ │ ├── gr_EL.js │ │ │ ├── he_IL.js │ │ │ ├── hu_HU.js │ │ │ ├── id_ID.js │ │ │ ├── it_IT.js │ │ │ ├── ja_JP.js │ │ │ ├── nl_NL.js │ │ │ ├── no_NO.js │ │ │ ├── pl_PL.js │ │ │ ├── pt_BR.js │ │ │ ├── pt_PT.js │ │ │ ├── ro_RO.js │ │ │ ├── ru_RU.js │ │ │ ├── sq_AL.js │ │ │ ├── sr_RS.js │ │ │ ├── sv_SE.js │ │ │ ├── th_TH.js │ │ │ ├── tr_TR.js │ │ │ ├── ua_UA.js │ │ │ ├── vi_VN.js │ │ │ ├── zh_CN.js │ │ │ └── zh_TW.js │ │ ├── main.js │ │ ├── md5.min.js │ │ ├── quick-website.js │ │ ├── quick-website.min.js │ │ ├── svg-injector.min.js │ │ └── traditional.js │ │ ├── file.js │ │ ├── image_canvas.js │ │ ├── message_tips.js │ │ ├── resize.js │ │ ├── usermsg_storagerender.js │ │ ├── webrtc_videochat.js │ │ └── websocket.js │ ├── templates │ ├── chatmain.html │ ├── index.html │ ├── index1.html │ └── register.html │ └── test.p12 └── websocket-chat.iml /file/head/00b4d789-c0f4-4874-a9e3-dd7d75bcc156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/00b4d789-c0f4-4874-a9e3-dd7d75bcc156.png -------------------------------------------------------------------------------- /file/head/1c1b8aed-ad5d-45d5-afee-7983d133565a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/1c1b8aed-ad5d-45d5-afee-7983d133565a.png -------------------------------------------------------------------------------- /file/head/368503c6-7afe-46b7-b6b4-0efee423fe77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/368503c6-7afe-46b7-b6b4-0efee423fe77.png -------------------------------------------------------------------------------- /file/head/4a096408-6b80-42e5-90b9-a51a1b083e20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/4a096408-6b80-42e5-90b9-a51a1b083e20.png -------------------------------------------------------------------------------- /file/head/4cd69355-8d20-4b33-8c38-4cab31a4c212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/4cd69355-8d20-4b33-8c38-4cab31a4c212.png -------------------------------------------------------------------------------- /file/head/5edfeaee-200f-4aa1-99ba-dadcdc3114f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/5edfeaee-200f-4aa1-99ba-dadcdc3114f4.png -------------------------------------------------------------------------------- /file/head/6efe0c1c-4573-4b70-88d6-3e25ef268644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/6efe0c1c-4573-4b70-88d6-3e25ef268644.png -------------------------------------------------------------------------------- /file/head/7cf11adf-3ae1-4fa2-8ee8-d0313436dfbe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/7cf11adf-3ae1-4fa2-8ee8-d0313436dfbe.png -------------------------------------------------------------------------------- /file/head/82979bce-e874-4ed5-a9fa-7a415d7b92eb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/82979bce-e874-4ed5-a9fa-7a415d7b92eb.png -------------------------------------------------------------------------------- /file/head/8397ed5d-22f6-48fa-92f5-2e7d58dc17a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/8397ed5d-22f6-48fa-92f5-2e7d58dc17a1.png -------------------------------------------------------------------------------- /file/head/8b0207f5-79a3-4f68-87d4-71b68b6b4595.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/8b0207f5-79a3-4f68-87d4-71b68b6b4595.png -------------------------------------------------------------------------------- /file/head/a991305c-1863-4b05-b560-5e9480f306c0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/a991305c-1863-4b05-b560-5e9480f306c0.png -------------------------------------------------------------------------------- /file/head/c09e50ad-2c7c-4a87-86b9-419d04619c55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/c09e50ad-2c7c-4a87-86b9-419d04619c55.png -------------------------------------------------------------------------------- /file/head/c372d385-04b6-4a12-be80-d8faeb110b1d.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/c372d385-04b6-4a12-be80-d8faeb110b1d.head -------------------------------------------------------------------------------- /file/head/d2b8537e-581b-48f1-8001-35d75fa0da64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/d2b8537e-581b-48f1-8001-35d75fa0da64.png -------------------------------------------------------------------------------- /file/head/fe39d57b-5a23-4066-8a22-55f7a8c08de8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/file/head/fe39d57b-5a23-4066-8a22-55f7a8c08de8.png -------------------------------------------------------------------------------- /src/main/resources/codingroam.com.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/codingroam.com.jks -------------------------------------------------------------------------------- /src/main/resources/file/head/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/file/head/head.png -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/1-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/1-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/1-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/7-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/7-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/7-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/align-bottom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/align-end.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/align-middle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/align-start.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/align-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/amd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/app.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-90deg-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-down-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-down-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-down-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-down-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-left-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-right-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-up-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-up-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-up-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-up-short.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/arrows.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bag-dash-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bag-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/ban-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/ban.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bar-chart-line-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/battery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bell-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bookmark-dash-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bookmark-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bookmark-heart-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bookshelf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/border-all.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bounding-box.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/box2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/box2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/brilliance.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/bucket-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/calendar-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/calendar-minus-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/calendar-range-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/calendar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/calendar3-event-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/calendar3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/calendar3-range-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/camera-video-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/capsule.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-down-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-down-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-left-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-left-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-right-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-right-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-up-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-up-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/caret-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/cash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chat-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chat-left-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chat-left-heart-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chat-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chat-right-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chat-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chat-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/check-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/check-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/check2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chevron-compact-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chevron-compact-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chevron-compact-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chevron-compact-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chevron-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chevron-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/chevron-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/circle-half.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/clock-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/cloudy-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/columns.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/compass-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/cone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/credit-card-2-back-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/credit-card-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/crop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/currency-yen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/cursor-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/dash-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/dash-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/dash-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/dash-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/dash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/diamond-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/dice-1-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/dice-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/dice-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/dice-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/disc-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/display-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/door-closed-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/door-closed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/easel3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/easel3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/egg-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/eject-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/emoji-expressionless-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/exclamation-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/exclamation-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/exclamation.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/exclude.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/explicit-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/eye-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/file-break-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/file-check-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/file-earmark-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/file-earmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/file-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/file-minus-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/file-person.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/file-play-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/file-plus-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/file-ruled-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/filter-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/filter-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/css/external/fontcss/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/css/external/fontcss/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/forward-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/front.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/funnel-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/gender-female.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/gender-male.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/gender-neuter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/geo-alt-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/h-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/h-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/h-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/headphones.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/heart-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/heartbreak-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/hexagon-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/hexagon-half.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/hr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/hurricane.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/image-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/key-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/ladder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/laptop-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/laptop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/layout-sidebar-reverse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/layout-sidebar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/layout-split.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/lightning-charge-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/lightning-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/list.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/lock-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/magnet-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/magnet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/microsoft.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/mouse-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/mouse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/mouse2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/option.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/paperclip.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/paragraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/pause-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/peace-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/pentagon-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/person-dash-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/person-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/person-heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/phone-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/phone-landscape-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/phone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/pie-chart-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/pie-chart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/pip-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/play-btn-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/play-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/play-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/play-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/plus-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/plus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/plus-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/plus-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/power.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/record-btn-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/record-btn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/record-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/record-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/record-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/record.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/record2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/record2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/reply-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/rulers.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/segmented-nav.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/share-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/shift-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/signpost-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/signpost-split-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/signpost.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/skip-end-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/skip-end-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/skip-end.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/skip-start-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/skip-start-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/skip-start.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/slash-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/slash-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/slash-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/slash-square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/square-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/square-half.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/stop-btn-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/stop-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/stop-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/stop-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/stop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/strava.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/substack.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/subtract.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/suit-diamond-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/suit-heart-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/tablet-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/tablet-landscape-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/tablet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/tag-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/three-dots-vertical.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/three-dots.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/tiktok.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/toggle-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/toggle-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/toggle2-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/toggle2-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/triangle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/tv-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/twitter-x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/type-h1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/type-underline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/union.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/unlock-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/unlock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/usb-c-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/usb-c.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/usb-drive-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/usb-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/vinyl-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/vinyl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/voicemail.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/volume-off-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/windows.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/x-lg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/css/external/fontcss/x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/static/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/bg.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/1.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/10.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/11.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/12.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/13.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/14.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/15.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/16.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/17.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/18.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/19.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/2.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/20.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/21.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/22.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/23.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/24.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/25.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/26.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/27.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/28.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/29.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/3.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/30.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/31.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/32.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/33.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/34.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/35.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/36.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/37.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/38.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/39.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/4.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/40.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/41.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/42.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/43.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/44.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/45.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/46.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/47.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/48.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/49.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/5.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/50.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/51.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/52.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/53.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/54.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/55.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/56.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/57.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/58.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/59.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/6.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/60.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/61.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/62.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/63.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/64.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/65.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/66.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/67.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/68.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/69.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/7.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/70.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/71.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/72.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/73.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/74.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/75.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/76.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/77.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/78.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/79.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/8.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/80.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/81.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/82.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/83.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/84.png -------------------------------------------------------------------------------- /src/main/resources/static/images/emoji/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/emoji/9.png -------------------------------------------------------------------------------- /src/main/resources/static/images/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/head.png -------------------------------------------------------------------------------- /src/main/resources/static/images/head0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/head0.png -------------------------------------------------------------------------------- /src/main/resources/static/images/head1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/head1.png -------------------------------------------------------------------------------- /src/main/resources/static/images/head2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/head2.png -------------------------------------------------------------------------------- /src/main/resources/static/images/head3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/head3.png -------------------------------------------------------------------------------- /src/main/resources/static/images/head4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/head4.png -------------------------------------------------------------------------------- /src/main/resources/static/images/head5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/head5.png -------------------------------------------------------------------------------- /src/main/resources/static/images/head6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/head6.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/0.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/1.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/10.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/11.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/12.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/13.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/14.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/15.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/16.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/17.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/18.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/19.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/2.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/20.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/21.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/22.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/23.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/24.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/25.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/26.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/27.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/28.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/29.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/3.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/30.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/31.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/32.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/33.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/34.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/35.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/36.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/37.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/38.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/39.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/4.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/40.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/41.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/42.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/43.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/44.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/45.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/46.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/47.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/48.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/49.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/5.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/50.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/51.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/52.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/53.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/54.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/55.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/56.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/57.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/58.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/59.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/6.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/60.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/61.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/62.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/63.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/64.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/65.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/66.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/67.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/68.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/69.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/7.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/70.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/71.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/72.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/73.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/74.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/75.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/76.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/77.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/78.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/79.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/8.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/80.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/81.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/82.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/83.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/84.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/85.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/86.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/87.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/88.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/89.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/9.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/90.png -------------------------------------------------------------------------------- /src/main/resources/static/images/qq/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/qq/bg.png -------------------------------------------------------------------------------- /src/main/resources/static/images/suolong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/suolong.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/1.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/10.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/11.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/12.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/13.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/14.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/15.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/16.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/17.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/18.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/19.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/2.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/20.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/21.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/22.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/23.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/24.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/25.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/26.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/27.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/28.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/29.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/3.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/30.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/31.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/32.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/33.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/34.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/35.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/36.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/37.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/38.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/39.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/4.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/40.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/41.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/42.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/43.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/44.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/45.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/46.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/47.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/48.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/49.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/5.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/50.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/6.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/7.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/8.png -------------------------------------------------------------------------------- /src/main/resources/static/images/tieba/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/static/images/tieba/9.png -------------------------------------------------------------------------------- /src/main/resources/test.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingroam/websocket-webrtc-chat/e83d19eeafa8cd12557c6631cd5bcb696f8d2866/src/main/resources/test.p12 --------------------------------------------------------------------------------