├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── images ├── froala编辑器.png ├── itemCF.png ├── userCF.png ├── wx-mp-code.png ├── 后台演示.gif └── 商城演示.gif ├── pom.xml ├── sql └── newbeepro_20231217.sql └── src ├── main ├── java │ └── ltd │ │ └── newbee │ │ └── mall │ │ ├── NewBeeMallApplication.java │ │ ├── annotation │ │ ├── Limit.java │ │ └── RepeatSubmit.java │ │ ├── aspect │ │ ├── LimitAspect.java │ │ └── LimitType.java │ │ ├── config │ │ ├── AlipayConfig.java │ │ ├── CacheConfig.java │ │ ├── HikariConfig.java │ │ ├── NewbeeMallConfig.java │ │ └── WebConfig.java │ │ ├── constant │ │ └── Constants.java │ │ ├── controller │ │ ├── CommonController.java │ │ ├── admin │ │ │ ├── AdminIndexController.java │ │ │ ├── CarouselsManagerController.java │ │ │ ├── CouponManagerController.java │ │ │ ├── GoodsCateManagerController.java │ │ │ ├── GoodsManagerController.java │ │ │ ├── IndexCfgManagerController.java │ │ │ ├── MallOrderManagerController.java │ │ │ ├── MemberManagerController.java │ │ │ ├── ProfileManagerController.java │ │ │ ├── SeckillManagerController.java │ │ │ └── StatisticsController.java │ │ ├── base │ │ │ └── BaseController.java │ │ └── mall │ │ │ ├── MallAliPayCallbackController.java │ │ │ ├── MallCouponController.java │ │ │ ├── MallGoodsController.java │ │ │ ├── MallIndexController.java │ │ │ ├── MallOrderController.java │ │ │ ├── MallPayController.java │ │ │ ├── MallSeckillController.java │ │ │ ├── MallShopCatController.java │ │ │ ├── MallUserController.java │ │ │ ├── MallWeixinPayCallbackController.java │ │ │ └── TianaiCaptchaController.java │ │ ├── core │ │ ├── dao │ │ │ ├── AdminUserDao.java │ │ │ ├── CarouselsDao.java │ │ │ ├── CdkInfoDao.java │ │ │ ├── CouponDao.java │ │ │ ├── CouponUserDao.java │ │ │ ├── GoodsCategoryDao.java │ │ │ ├── GoodsDao.java │ │ │ ├── IndexConfigDao.java │ │ │ ├── MallUserDao.java │ │ │ ├── OrderDao.java │ │ │ ├── OrderItemDao.java │ │ │ ├── SeckillDao.java │ │ │ ├── SeckillSuccessDao.java │ │ │ └── ShopCatDao.java │ │ ├── entity │ │ │ ├── AdminUser.java │ │ │ ├── BaseEntity.java │ │ │ ├── Carousels.java │ │ │ ├── CdkInfo.java │ │ │ ├── Coupon.java │ │ │ ├── CouponUser.java │ │ │ ├── Goods.java │ │ │ ├── GoodsCategory.java │ │ │ ├── IndexConfig.java │ │ │ ├── MallUser.java │ │ │ ├── Order.java │ │ │ ├── OrderItem.java │ │ │ ├── Seckill.java │ │ │ ├── SeckillSuccess.java │ │ │ ├── ShopCat.java │ │ │ ├── dto │ │ │ │ ├── RsGoodsDTO.java │ │ │ │ └── SeckillOrderDTO.java │ │ │ └── vo │ │ │ │ ├── CouponVO.java │ │ │ │ ├── DayTransactionAmountVO.java │ │ │ │ ├── ExposerVO.java │ │ │ │ ├── GoodsCategoryVO.java │ │ │ │ ├── GoodsVO.java │ │ │ │ ├── IndexConfigGoodsVO.java │ │ │ │ ├── MallUserVO.java │ │ │ │ ├── MyCouponVO.java │ │ │ │ ├── OrderDetailVO.java │ │ │ │ ├── OrderItemVO.java │ │ │ │ ├── OrderListVO.java │ │ │ │ ├── OrderVO.java │ │ │ │ ├── SearchObjVO.java │ │ │ │ ├── SearchPageCategoryVO.java │ │ │ │ ├── SearchPageGoodsVO.java │ │ │ │ ├── SeckillSuccessVO.java │ │ │ │ ├── SeckillVO.java │ │ │ │ └── ShopCatVO.java │ │ └── service │ │ │ ├── AdminUserService.java │ │ │ ├── CarouselsService.java │ │ │ ├── CdkInfoService.java │ │ │ ├── CouponService.java │ │ │ ├── CouponUserService.java │ │ │ ├── GoodsCategoryService.java │ │ │ ├── GoodsService.java │ │ │ ├── IndexConfigService.java │ │ │ ├── MallUserService.java │ │ │ ├── OrderItemService.java │ │ │ ├── OrderService.java │ │ │ ├── SeckillService.java │ │ │ ├── SeckillSuccessService.java │ │ │ ├── ShopCatService.java │ │ │ └── impl │ │ │ ├── AdminUserServiceImpl.java │ │ │ ├── CarouselsServiceImpl.java │ │ │ ├── CdkInfoServiceImpl.java │ │ │ ├── CouponServiceImpl.java │ │ │ ├── CouponUserServiceImpl.java │ │ │ ├── GoodsCategoryServiceImpl.java │ │ │ ├── GoodsServiceImpl.java │ │ │ ├── IndexConfigServiceImpl.java │ │ │ ├── MallUserServiceImpl.java │ │ │ ├── OrderItemServiceImpl.java │ │ │ ├── OrderServiceImpl.java │ │ │ ├── SeckillServiceImpl.java │ │ │ ├── SeckillSuccessServiceImpl.java │ │ │ └── ShopCatServiceImpl.java │ │ ├── enums │ │ ├── IndexConfigTypeEnum.java │ │ ├── OrderStatusEnum.java │ │ ├── PayStatusEnum.java │ │ └── PayTypeEnum.java │ │ ├── event │ │ ├── OrderEvent.java │ │ └── SeckillOrderEvent.java │ │ ├── exception │ │ ├── BusinessException.java │ │ └── GlobalExceptionAdvice.java │ │ ├── interceptor │ │ ├── AdminLoginInterceptor.java │ │ ├── AdminViewModelInterceptor.java │ │ ├── MallLoginValidateInterceptor.java │ │ ├── RepeatSubmitInterceptor.java │ │ ├── impl │ │ │ └── SameUrlDataInterceptor.java │ │ └── threadlocal │ │ │ └── AdminLoginThreadLocal.java │ │ ├── listener │ │ ├── MyResourceStore.java │ │ ├── OrderListener.java │ │ └── SeckillOrderListener.java │ │ ├── mq │ │ ├── RabbitMQConstant.java │ │ ├── config │ │ │ ├── DirectRabbitConfig.java │ │ │ ├── RabbitTemplateConfig.java │ │ │ └── WorkRabbitConfig.java │ │ └── reciver │ │ │ └── OrderDirectReceiver.java │ │ ├── recommend │ │ ├── core │ │ │ ├── CoreMath.java │ │ │ ├── ItemCF.java │ │ │ └── UserCF.java │ │ ├── dto │ │ │ ├── ProductDTO.java │ │ │ └── RelateDTO.java │ │ └── service │ │ │ ├── RecommendService.java │ │ │ └── impl │ │ │ └── RecommendServiceImpl.java │ │ ├── redis │ │ ├── JedisSearch.java │ │ ├── RedisCache.java │ │ ├── RedisConfig.java │ │ └── RedisLock.java │ │ ├── task │ │ ├── CouponUserExpireTask.java │ │ ├── OrderUnPaidManager.java │ │ ├── OrderUnPaidTask.java │ │ ├── RedisTask.java │ │ ├── SpringBeanStartupRunner.java │ │ ├── Task.java │ │ ├── TaskService.java │ │ └── TaskStartupRunner.java │ │ └── util │ │ ├── ChineseUtil.java │ │ ├── IpUtils.java │ │ ├── MyBeanUtil.java │ │ ├── NumberUtil.java │ │ ├── R.java │ │ ├── ServletUtil.java │ │ ├── ThreadUtil.java │ │ ├── date │ │ └── DateUtils.java │ │ ├── file │ │ ├── FileUploadUtil.java │ │ ├── FileUtils.java │ │ └── MimeTypeUtils.java │ │ ├── http │ │ └── HttpUtil.java │ │ ├── security │ │ └── Md5Utils.java │ │ └── spring │ │ └── SpringContextUtil.java └── resources │ ├── META-INF │ └── spring │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── application-dev.yml │ ├── application.yml │ ├── bgimages │ ├── 48.jpg │ ├── a.jpg │ ├── b.jpg │ ├── c.jpg │ ├── d.jpg │ ├── e.jpg │ ├── g.jpg │ ├── h.jpg │ ├── i.jpg │ └── j.jpg │ ├── logback-spring.xml │ ├── mapper │ ├── CarouselsMapper.xml │ ├── CouponMapper.xml │ ├── CouponUserDao.xml │ ├── GoodsCategoryMapper.xml │ ├── GoodsItemMapper.xml │ ├── GoodsMapper.xml │ ├── IndexConfigMapper.xml │ ├── MallUserMapper.xml │ ├── OrderMapper.xml │ ├── SeckillMapper.xml │ └── ShopCatMapper.xml │ ├── static │ ├── admin │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── adminlte.css │ │ │ │ ├── adminlte.css.map │ │ │ │ ├── adminlte.min.css │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── ionicons.min.css │ │ │ │ └── main.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── img │ │ │ │ ├── AdminLTELogo.png │ │ │ │ ├── boxed-bg.jpg │ │ │ │ ├── boxed-bg.png │ │ │ │ ├── default-150x150.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── favicon.png │ │ │ │ ├── icons.png │ │ │ │ ├── img-upload.png │ │ │ │ ├── new-bee-logo-1.png │ │ │ │ ├── new-bee-logo.png │ │ │ │ ├── newbee-logo.png │ │ │ │ └── no-img.png │ │ │ └── js │ │ │ │ ├── adminlte.js │ │ │ │ ├── adminlte.js.map │ │ │ │ ├── adminlte.min.js │ │ │ │ ├── adminlte.min.js.map │ │ │ │ ├── demo.js │ │ │ │ ├── echarts.js │ │ │ │ ├── newbee_mall_carousel.js │ │ │ │ ├── newbee_mall_category.js │ │ │ │ ├── newbee_mall_coupon.js │ │ │ │ ├── newbee_mall_goods.js │ │ │ │ ├── newbee_mall_goods_edit.js │ │ │ │ ├── newbee_mall_index_config.js │ │ │ │ ├── newbee_mall_order.js │ │ │ │ ├── newbee_mall_seckill.js │ │ │ │ ├── newbee_mall_user.js │ │ │ │ ├── plugins │ │ │ │ ├── bootstrap │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ ├── chart.js │ │ │ │ ├── chart.js2 │ │ │ │ ├── chartjs2 │ │ │ │ │ ├── Chart.bundle.js │ │ │ │ │ ├── Chart.bundle.min.js │ │ │ │ │ ├── Chart.js │ │ │ │ │ ├── Chart.min.js │ │ │ │ │ └── docs │ │ │ │ │ │ ├── axes │ │ │ │ │ │ ├── cartesian │ │ │ │ │ │ │ ├── category.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── linear.html │ │ │ │ │ │ │ ├── logarithmic.html │ │ │ │ │ │ │ └── time.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── labelling.html │ │ │ │ │ │ ├── radial │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── linear.html │ │ │ │ │ │ └── styling.html │ │ │ │ │ │ ├── charts │ │ │ │ │ │ ├── area.html │ │ │ │ │ │ ├── bar.html │ │ │ │ │ │ ├── bubble.html │ │ │ │ │ │ ├── doughnut.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── line.html │ │ │ │ │ │ ├── mixed.html │ │ │ │ │ │ ├── polar.html │ │ │ │ │ │ ├── radar.html │ │ │ │ │ │ └── scatter.html │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── animations.html │ │ │ │ │ │ ├── elements.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── layout.html │ │ │ │ │ │ ├── legend.html │ │ │ │ │ │ ├── title.html │ │ │ │ │ │ └── tooltip.html │ │ │ │ │ │ ├── developers │ │ │ │ │ │ ├── api.html │ │ │ │ │ │ ├── axes.html │ │ │ │ │ │ ├── charts.html │ │ │ │ │ │ ├── contributing.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── plugins.html │ │ │ │ │ │ └── updates.html │ │ │ │ │ │ ├── general │ │ │ │ │ │ ├── colors.html │ │ │ │ │ │ ├── device-pixel-ratio.md │ │ │ │ │ │ ├── fonts.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── interactions │ │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── modes.html │ │ │ │ │ │ ├── options.html │ │ │ │ │ │ └── responsive.html │ │ │ │ │ │ ├── getting-started │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── installation.html │ │ │ │ │ │ ├── integration.html │ │ │ │ │ │ └── usage.html │ │ │ │ │ │ ├── gitbook │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ └── fontawesome │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ │ ├── gitbook-plugin-anchorjs │ │ │ │ │ │ │ └── anchor-style.js │ │ │ │ │ │ ├── gitbook-plugin-chartjs │ │ │ │ │ │ │ ├── Chart.bundle.js │ │ │ │ │ │ │ ├── Chart.bundle.min.js │ │ │ │ │ │ │ ├── Chart.js │ │ │ │ │ │ │ ├── Chart.min.js │ │ │ │ │ │ │ ├── chartjs-plugin-deferred.js │ │ │ │ │ │ │ ├── chartjs-plugin-deferred.min.js │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── gitbook-plugin-fontsettings │ │ │ │ │ │ │ ├── fontsettings.js │ │ │ │ │ │ │ └── website.css │ │ │ │ │ │ ├── gitbook-plugin-ga │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── gitbook-plugin-highlight │ │ │ │ │ │ │ ├── ebook.css │ │ │ │ │ │ │ └── website.css │ │ │ │ │ │ ├── gitbook-plugin-search-plus │ │ │ │ │ │ │ ├── jquery.mark.min.js │ │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ │ └── search.js │ │ │ │ │ │ ├── gitbook-plugin-sharing │ │ │ │ │ │ │ └── buttons.js │ │ │ │ │ │ ├── gitbook.js │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── apple-touch-icon-precomposed-152.png │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ └── theme.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── notes │ │ │ │ │ │ ├── comparison.html │ │ │ │ │ │ ├── extensions.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── license.html │ │ │ │ │ │ ├── search_plus_index.json │ │ │ │ │ │ └── style.css │ │ │ │ ├── font-awesome │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ ├── font-awesome.css.map │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── jquery │ │ │ │ │ ├── core.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.min.map │ │ │ │ │ ├── jquery.slim.js │ │ │ │ │ ├── jquery.slim.min.js │ │ │ │ │ └── jquery.slim.min.map │ │ │ │ ├── login-bg-particles.js │ │ │ │ ├── particles.js │ │ │ │ └── popper │ │ │ │ │ ├── esm │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ └── popper.min.js.map │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ ├── popper.min.js.map │ │ │ │ │ └── umd │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ └── popper.min.js.map │ │ │ │ ├── profile.js │ │ │ │ ├── public.js │ │ │ │ └── test.js │ │ └── plugins │ │ │ ├── ajaxupload │ │ │ └── ajaxupload.js │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── daterangepicker │ │ │ ├── daterangepicker.css │ │ │ ├── daterangepicker.js │ │ │ └── moment.min.js │ │ │ ├── froala_editor │ │ │ ├── License.txt │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── css │ │ │ │ ├── froala_editor.css │ │ │ │ ├── froala_editor.min.css │ │ │ │ ├── froala_editor.pkgd.css │ │ │ │ ├── froala_editor.pkgd.min.css │ │ │ │ ├── froala_style.css │ │ │ │ ├── froala_style.min.css │ │ │ │ ├── plugins.pkgd.css │ │ │ │ ├── plugins.pkgd.min.css │ │ │ │ ├── plugins │ │ │ │ │ ├── char_counter.css │ │ │ │ │ ├── char_counter.min.css │ │ │ │ │ ├── code_view.css │ │ │ │ │ ├── code_view.min.css │ │ │ │ │ ├── colors.css │ │ │ │ │ ├── colors.min.css │ │ │ │ │ ├── draggable.css │ │ │ │ │ ├── draggable.min.css │ │ │ │ │ ├── emoticons.css │ │ │ │ │ ├── emoticons.min.css │ │ │ │ │ ├── file.css │ │ │ │ │ ├── file.min.css │ │ │ │ │ ├── files_manager.css │ │ │ │ │ ├── files_manager.min.css │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ ├── fullscreen.min.css │ │ │ │ │ ├── help.css │ │ │ │ │ ├── help.min.css │ │ │ │ │ ├── image.css │ │ │ │ │ ├── image.min.css │ │ │ │ │ ├── image_manager.css │ │ │ │ │ ├── image_manager.min.css │ │ │ │ │ ├── line_breaker.css │ │ │ │ │ ├── line_breaker.min.css │ │ │ │ │ ├── markdown.css │ │ │ │ │ ├── markdown.min.css │ │ │ │ │ ├── quick_insert.css │ │ │ │ │ ├── quick_insert.min.css │ │ │ │ │ ├── special_characters.css │ │ │ │ │ ├── special_characters.min.css │ │ │ │ │ ├── table.css │ │ │ │ │ ├── table.min.css │ │ │ │ │ ├── trim_video.css │ │ │ │ │ ├── trim_video.min.css │ │ │ │ │ ├── video.css │ │ │ │ │ └── video.min.css │ │ │ │ ├── themes │ │ │ │ │ ├── dark.css │ │ │ │ │ ├── dark.min.css │ │ │ │ │ ├── gray.css │ │ │ │ │ ├── gray.min.css │ │ │ │ │ ├── royal.css │ │ │ │ │ └── royal.min.css │ │ │ │ └── third_party │ │ │ │ │ ├── embedly.css │ │ │ │ │ ├── embedly.min.css │ │ │ │ │ ├── font_awesome.css │ │ │ │ │ ├── font_awesome.min.css │ │ │ │ │ ├── image_tui.css │ │ │ │ │ ├── image_tui.min.css │ │ │ │ │ ├── spell_checker.css │ │ │ │ │ └── spell_checker.min.css │ │ │ ├── editor.jpg │ │ │ ├── html │ │ │ │ ├── 3rd-party │ │ │ │ │ ├── aviary │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ ├── grid.html │ │ │ │ │ │ ├── lists.html │ │ │ │ │ │ └── modal.html │ │ │ │ │ ├── code-mirror.html │ │ │ │ │ ├── font-awesome-5-css.html │ │ │ │ │ ├── font-awesome-5-js.html │ │ │ │ │ ├── jquery │ │ │ │ │ │ ├── mobile.html │ │ │ │ │ │ └── ui_modal.html │ │ │ │ │ ├── spell-checker │ │ │ │ │ │ └── spell-checker.html │ │ │ │ │ └── tui │ │ │ │ │ │ └── index.html │ │ │ │ ├── api │ │ │ │ │ ├── get_html.html │ │ │ │ │ ├── init_destroy.html │ │ │ │ │ ├── insert_html.html │ │ │ │ │ ├── live_code_preview.html │ │ │ │ │ ├── live_content_preview.html │ │ │ │ │ └── selection.html │ │ │ │ ├── buttons │ │ │ │ │ ├── custom_buttons.html │ │ │ │ │ ├── custom_dropdown.html │ │ │ │ │ ├── external_button.html │ │ │ │ │ └── subscript_superscript.html │ │ │ │ ├── events │ │ │ │ │ ├── blur_focus.html │ │ │ │ │ ├── content_changed.html │ │ │ │ │ ├── drop.html │ │ │ │ │ ├── image_removed.html │ │ │ │ │ └── initialized_destroy.html │ │ │ │ ├── file_s3_upload.php │ │ │ │ ├── image │ │ │ │ │ ├── custom_button.html │ │ │ │ │ ├── default_width.html │ │ │ │ │ ├── image_styles.html │ │ │ │ │ └── insert_base64.html │ │ │ │ ├── image_s3_upload.php │ │ │ │ ├── init_inside_iframe │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── content.html │ │ │ │ │ └── inline.html │ │ │ │ ├── init_on_click │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── inline.html │ │ │ │ │ └── two_editors.html │ │ │ │ ├── initialization │ │ │ │ │ ├── edit_in_popup.html │ │ │ │ │ ├── init_on_button.html │ │ │ │ │ ├── init_on_click.html │ │ │ │ │ ├── init_on_h1.html │ │ │ │ │ ├── init_on_image.html │ │ │ │ │ ├── init_on_link.html │ │ │ │ │ └── initialized_event.html │ │ │ │ ├── international │ │ │ │ │ ├── direction_rtl.html │ │ │ │ │ ├── language.html │ │ │ │ │ └── rtl_ltr_buttons.html │ │ │ │ ├── link │ │ │ │ │ ├── custom_validation.html │ │ │ │ │ ├── link_styles.html │ │ │ │ │ └── predefined_links.html │ │ │ │ ├── misc │ │ │ │ │ ├── scrollable_container.html │ │ │ │ │ └── scrollable_container_inline.html │ │ │ │ ├── paragraph_modes │ │ │ │ │ ├── enter_br.html │ │ │ │ │ ├── enter_div.html │ │ │ │ │ └── enter_p.html │ │ │ │ ├── paste │ │ │ │ │ ├── attrs.html │ │ │ │ │ ├── plain.html │ │ │ │ │ └── tags.html │ │ │ │ ├── plugins │ │ │ │ │ ├── char_counter.html │ │ │ │ │ ├── full_screen.html │ │ │ │ │ ├── line_breaker.html │ │ │ │ │ └── quick_insert.html │ │ │ │ ├── popular │ │ │ │ │ ├── disable_edit.html │ │ │ │ │ ├── disable_paragraphs.html │ │ │ │ │ ├── full.html │ │ │ │ │ ├── full_page.html │ │ │ │ │ ├── iframe.html │ │ │ │ │ ├── init_on_click.html │ │ │ │ │ ├── textarea.html │ │ │ │ │ ├── toolbar_buttons.html │ │ │ │ │ ├── toolbar_inline.html │ │ │ │ │ ├── two_instances.html │ │ │ │ │ └── z_index.html │ │ │ │ ├── popups │ │ │ │ │ ├── colors.html │ │ │ │ │ ├── custom.html │ │ │ │ │ └── emoticons.html │ │ │ │ ├── styling │ │ │ │ │ ├── adjustable_height.html │ │ │ │ │ ├── font_family.html │ │ │ │ │ ├── height.html │ │ │ │ │ ├── inline.html │ │ │ │ │ ├── paragraph.html │ │ │ │ │ ├── placeholder.html │ │ │ │ │ └── width.html │ │ │ │ ├── table │ │ │ │ │ ├── cell_style.html │ │ │ │ │ ├── insert_helper.html │ │ │ │ │ ├── nested.html │ │ │ │ │ ├── resize.html │ │ │ │ │ └── style.html │ │ │ │ ├── themes │ │ │ │ │ ├── dark.html │ │ │ │ │ ├── gray.html │ │ │ │ │ └── royal.html │ │ │ │ ├── toolbar │ │ │ │ │ ├── bottom.html │ │ │ │ │ ├── bottom_offset.html │ │ │ │ │ ├── buttons.html │ │ │ │ │ ├── external.html │ │ │ │ │ ├── external_inline.html │ │ │ │ │ ├── inline.html │ │ │ │ │ ├── inline_selection.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── show_selection.html │ │ │ │ │ └── sticky.html │ │ │ │ └── typing │ │ │ │ │ ├── keep_format.html │ │ │ │ │ ├── shortcuts.html │ │ │ │ │ └── tab.html │ │ │ ├── img │ │ │ │ └── photo1.jpg │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── froala_editor.min.js │ │ │ │ ├── froala_editor.pkgd.min.js │ │ │ │ ├── languages │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en_ca.js │ │ │ │ │ ├── en_gb.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ ├── pt_pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh_cn.js │ │ │ │ │ └── zh_tw.js │ │ │ │ ├── plugins.pkgd.min.js │ │ │ │ ├── plugins │ │ │ │ │ ├── align.min.js │ │ │ │ │ ├── char_counter.min.js │ │ │ │ │ ├── code_beautifier.min.js │ │ │ │ │ ├── code_view.min.js │ │ │ │ │ ├── colors.min.js │ │ │ │ │ ├── cryptojs.min.js │ │ │ │ │ ├── draggable.min.js │ │ │ │ │ ├── edit_in_popup.min.js │ │ │ │ │ ├── emoticons.min.js │ │ │ │ │ ├── entities.min.js │ │ │ │ │ ├── file.min.js │ │ │ │ │ ├── files_manager.min.js │ │ │ │ │ ├── font_family.min.js │ │ │ │ │ ├── font_size.min.js │ │ │ │ │ ├── forms.min.js │ │ │ │ │ ├── fullscreen.min.js │ │ │ │ │ ├── help.min.js │ │ │ │ │ ├── image.min.js │ │ │ │ │ ├── image_manager.min.js │ │ │ │ │ ├── inline_class.min.js │ │ │ │ │ ├── inline_style.min.js │ │ │ │ │ ├── line_breaker.min.js │ │ │ │ │ ├── line_height.min.js │ │ │ │ │ ├── link.min.js │ │ │ │ │ ├── lists.min.js │ │ │ │ │ ├── markdown.min.js │ │ │ │ │ ├── paragraph_format.min.js │ │ │ │ │ ├── paragraph_style.min.js │ │ │ │ │ ├── print.min.js │ │ │ │ │ ├── quick_insert.min.js │ │ │ │ │ ├── quote.min.js │ │ │ │ │ ├── save.min.js │ │ │ │ │ ├── special_characters.min.js │ │ │ │ │ ├── table.min.js │ │ │ │ │ ├── track_changes.min.js │ │ │ │ │ ├── trim_video.min.js │ │ │ │ │ ├── url.min.js │ │ │ │ │ ├── video.min.js │ │ │ │ │ └── word_paste.min.js │ │ │ │ └── third_party │ │ │ │ │ ├── embedly.min.js │ │ │ │ │ ├── font_awesome.min.js │ │ │ │ │ ├── image_tui.min.js │ │ │ │ │ ├── showdown.min.js │ │ │ │ │ └── spell_checker.min.js │ │ │ └── package.json │ │ │ ├── jQueryUI │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui-1.10.4.custom.min.css │ │ │ ├── jquery-ui.css │ │ │ └── jquery-ui.min.js │ │ │ ├── jqgrid │ │ │ ├── grid.locale-cn.js │ │ │ ├── jquery.jqGrid.min.js │ │ │ └── ui.jqgrid-bootstrap4.css │ │ │ ├── jquery │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ │ ├── select2-v4.0.13 │ │ │ ├── css │ │ │ │ ├── select2-bootstrap.css │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── dsb.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hsb.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── ps.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.full.js │ │ │ │ ├── select2.full.min.js │ │ │ │ ├── select2.js │ │ │ │ └── select2.min.js │ │ │ ├── sweetalert │ │ │ ├── sweetalert.css │ │ │ └── sweetalert.min.js │ │ │ └── vue-2.6.11 │ │ │ └── vue-v2.6.11.min.js │ └── mall │ │ ├── css │ │ ├── bootstrap-modal.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap3.4.1.min.css │ │ ├── captcha.css │ │ ├── common.css │ │ ├── fontawesome-free-6.4.0-web │ │ │ ├── js │ │ │ │ ├── all.js │ │ │ │ ├── all.min.js │ │ │ │ ├── brands.js │ │ │ │ ├── brands.min.js │ │ │ │ ├── conflict-detection.js │ │ │ │ ├── conflict-detection.min.js │ │ │ │ ├── fontawesome.js │ │ │ │ ├── fontawesome.min.js │ │ │ │ ├── regular.js │ │ │ │ ├── regular.min.js │ │ │ │ ├── solid.js │ │ │ │ ├── solid.min.js │ │ │ │ ├── v4-shims.js │ │ │ │ └── v4-shims.min.js │ │ │ ├── svgs │ │ │ │ ├── brands │ │ │ │ │ ├── 42-group.svg │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ ├── adn.svg │ │ │ │ │ ├── adversal.svg │ │ │ │ │ ├── affiliatetheme.svg │ │ │ │ │ ├── airbnb.svg │ │ │ │ │ ├── algolia.svg │ │ │ │ │ ├── alipay.svg │ │ │ │ │ ├── amazon-pay.svg │ │ │ │ │ ├── amazon.svg │ │ │ │ │ ├── amilia.svg │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── angellist.svg │ │ │ │ │ ├── angrycreative.svg │ │ │ │ │ ├── angular.svg │ │ │ │ │ ├── app-store-ios.svg │ │ │ │ │ ├── app-store.svg │ │ │ │ │ ├── apper.svg │ │ │ │ │ ├── apple-pay.svg │ │ │ │ │ ├── apple.svg │ │ │ │ │ ├── artstation.svg │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ ├── atlassian.svg │ │ │ │ │ ├── audible.svg │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ ├── avianex.svg │ │ │ │ │ ├── aviato.svg │ │ │ │ │ ├── aws.svg │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ ├── battle-net.svg │ │ │ │ │ ├── behance.svg │ │ │ │ │ ├── bilibili.svg │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ ├── bity.svg │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ ├── blogger.svg │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ ├── bots.svg │ │ │ │ │ ├── btc.svg │ │ │ │ │ ├── buffer.svg │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ ├── buy-n-large.svg │ │ │ │ │ ├── buysellads.svg │ │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ │ ├── cc-amex.svg │ │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ │ ├── cc-diners-club.svg │ │ │ │ │ ├── cc-discover.svg │ │ │ │ │ ├── cc-jcb.svg │ │ │ │ │ ├── cc-mastercard.svg │ │ │ │ │ ├── cc-paypal.svg │ │ │ │ │ ├── cc-stripe.svg │ │ │ │ │ ├── cc-visa.svg │ │ │ │ │ ├── centercode.svg │ │ │ │ │ ├── centos.svg │ │ │ │ │ ├── chrome.svg │ │ │ │ │ ├── chromecast.svg │ │ │ │ │ ├── cloudflare.svg │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ ├── cmplid.svg │ │ │ │ │ ├── codepen.svg │ │ │ │ │ ├── codiepie.svg │ │ │ │ │ ├── confluence.svg │ │ │ │ │ ├── connectdevelop.svg │ │ │ │ │ ├── contao.svg │ │ │ │ │ ├── cotton-bureau.svg │ │ │ │ │ ├── cpanel.svg │ │ │ │ │ ├── creative-commons-by.svg │ │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ │ ├── creative-commons-share.svg │ │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ │ ├── creative-commons.svg │ │ │ │ │ ├── critical-role.svg │ │ │ │ │ ├── css3-alt.svg │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── cuttlefish.svg │ │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ │ ├── d-and-d.svg │ │ │ │ │ ├── dailymotion.svg │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ ├── deezer.svg │ │ │ │ │ ├── delicious.svg │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ ├── dev.svg │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ ├── dhl.svg │ │ │ │ │ ├── diaspora.svg │ │ │ │ │ ├── digg.svg │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── discourse.svg │ │ │ │ │ ├── dochub.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ ├── drupal.svg │ │ │ │ │ ├── dyalog.svg │ │ │ │ │ ├── earlybirds.svg │ │ │ │ │ ├── ebay.svg │ │ │ │ │ ├── edge-legacy.svg │ │ │ │ │ ├── edge.svg │ │ │ │ │ ├── elementor.svg │ │ │ │ │ ├── ello.svg │ │ │ │ │ ├── ember.svg │ │ │ │ │ ├── empire.svg │ │ │ │ │ ├── envira.svg │ │ │ │ │ ├── erlang.svg │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ ├── etsy.svg │ │ │ │ │ ├── evernote.svg │ │ │ │ │ ├── expeditedssl.svg │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ │ ├── fedex.svg │ │ │ │ │ ├── fedora.svg │ │ │ │ │ ├── figma.svg │ │ │ │ │ ├── firefox-browser.svg │ │ │ │ │ ├── firefox.svg │ │ │ │ │ ├── first-order-alt.svg │ │ │ │ │ ├── first-order.svg │ │ │ │ │ ├── firstdraft.svg │ │ │ │ │ ├── flickr.svg │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ ├── fly.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── fonticons-fi.svg │ │ │ │ │ ├── fonticons.svg │ │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ │ ├── fort-awesome.svg │ │ │ │ │ ├── forumbee.svg │ │ │ │ │ ├── foursquare.svg │ │ │ │ │ ├── free-code-camp.svg │ │ │ │ │ ├── freebsd.svg │ │ │ │ │ ├── fulcrum.svg │ │ │ │ │ ├── galactic-republic.svg │ │ │ │ │ ├── galactic-senate.svg │ │ │ │ │ ├── get-pocket.svg │ │ │ │ │ ├── gg-circle.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── git-alt.svg │ │ │ │ │ ├── git.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ ├── glide.svg │ │ │ │ │ ├── gofore.svg │ │ │ │ │ ├── golang.svg │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-pay.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ ├── grav.svg │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── guilded.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ ├── hashnode.svg │ │ │ │ │ ├── hips.svg │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ ├── hive.svg │ │ │ │ │ ├── hooli.svg │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ ├── houzz.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ ├── ideal.svg │ │ │ │ │ ├── imdb.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── instalod.svg │ │ │ │ │ ├── intercom.svg │ │ │ │ │ ├── internet-explorer.svg │ │ │ │ │ ├── invision.svg │ │ │ │ │ ├── ioxhost.svg │ │ │ │ │ ├── itch-io.svg │ │ │ │ │ ├── itunes-note.svg │ │ │ │ │ ├── itunes.svg │ │ │ │ │ ├── java.svg │ │ │ │ │ ├── jedi-order.svg │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ ├── jira.svg │ │ │ │ │ ├── joget.svg │ │ │ │ │ ├── joomla.svg │ │ │ │ │ ├── js.svg │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ ├── korvue.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ ├── less.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linode.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── lyft.svg │ │ │ │ │ ├── magento.svg │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ ├── markdown.svg │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ ├── mdb.svg │ │ │ │ │ ├── medapps.svg │ │ │ │ │ ├── medium.svg │ │ │ │ │ ├── medrt.svg │ │ │ │ │ ├── meetup.svg │ │ │ │ │ ├── megaport.svg │ │ │ │ │ ├── mendeley.svg │ │ │ │ │ ├── meta.svg │ │ │ │ │ ├── microblog.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ ├── mixer.svg │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ ├── modx.svg │ │ │ │ │ ├── monero.svg │ │ │ │ │ ├── napster.svg │ │ │ │ │ ├── neos.svg │ │ │ │ │ ├── nfc-directional.svg │ │ │ │ │ ├── nfc-symbol.svg │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ ├── node-js.svg │ │ │ │ │ ├── node.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── ns8.svg │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ ├── octopus-deploy.svg │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ ├── odysee.svg │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ ├── opencart.svg │ │ │ │ │ ├── openid.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ ├── orcid.svg │ │ │ │ │ ├── osi.svg │ │ │ │ │ ├── padlet.svg │ │ │ │ │ ├── page4.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── palfed.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── perbyte.svg │ │ │ │ │ ├── periscope.svg │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ ├── php.svg │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ ├── pix.svg │ │ │ │ │ ├── playstation.svg │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ ├── pushed.svg │ │ │ │ │ ├── python.svg │ │ │ │ │ ├── qq.svg │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ ├── quora.svg │ │ │ │ │ ├── r-project.svg │ │ │ │ │ ├── raspberry-pi.svg │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── reacteurope.svg │ │ │ │ │ ├── readme.svg │ │ │ │ │ ├── rebel.svg │ │ │ │ │ ├── red-river.svg │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ ├── reddit.svg │ │ │ │ │ ├── redhat.svg │ │ │ │ │ ├── renren.svg │ │ │ │ │ ├── replyd.svg │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ ├── resolving.svg │ │ │ │ │ ├── rev.svg │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ ├── rust.svg │ │ │ │ │ ├── safari.svg │ │ │ │ │ ├── salesforce.svg │ │ │ │ │ ├── sass.svg │ │ │ │ │ ├── schlix.svg │ │ │ │ │ ├── screenpal.svg │ │ │ │ │ ├── scribd.svg │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ ├── shopify.svg │ │ │ │ │ ├── shopware.svg │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ ├── sith.svg │ │ │ │ │ ├── sitrox.svg │ │ │ │ │ ├── sketch.svg │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ ├── sourcetree.svg │ │ │ │ │ ├── space-awesome.svg │ │ │ │ │ ├── speakap.svg │ │ │ │ │ ├── speaker-deck.svg │ │ │ │ │ ├── spotify.svg │ │ │ │ │ ├── square-behance.svg │ │ │ │ │ ├── square-dribbble.svg │ │ │ │ │ ├── square-facebook.svg │ │ │ │ │ ├── square-font-awesome-stroke.svg │ │ │ │ │ ├── square-font-awesome.svg │ │ │ │ │ ├── square-git.svg │ │ │ │ │ ├── square-github.svg │ │ │ │ │ ├── square-gitlab.svg │ │ │ │ │ ├── square-google-plus.svg │ │ │ │ │ ├── square-hacker-news.svg │ │ │ │ │ ├── square-instagram.svg │ │ │ │ │ ├── square-js.svg │ │ │ │ │ ├── square-lastfm.svg │ │ │ │ │ ├── square-odnoklassniki.svg │ │ │ │ │ ├── square-pied-piper.svg │ │ │ │ │ ├── square-pinterest.svg │ │ │ │ │ ├── square-reddit.svg │ │ │ │ │ ├── square-snapchat.svg │ │ │ │ │ ├── square-steam.svg │ │ │ │ │ ├── square-tumblr.svg │ │ │ │ │ ├── square-twitter.svg │ │ │ │ │ ├── square-viadeo.svg │ │ │ │ │ ├── square-vimeo.svg │ │ │ │ │ ├── square-whatsapp.svg │ │ │ │ │ ├── square-xing.svg │ │ │ │ │ ├── square-youtube.svg │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ ├── stackpath.svg │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ ├── steam.svg │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ ├── strava.svg │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ ├── stripe.svg │ │ │ │ │ ├── stubber.svg │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ ├── supple.svg │ │ │ │ │ ├── suse.svg │ │ │ │ │ ├── swift.svg │ │ │ │ │ ├── symfony.svg │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ ├── themeco.svg │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ ├── think-peaks.svg │ │ │ │ │ ├── tiktok.svg │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ ├── trello.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitch.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── typo3.svg │ │ │ │ │ ├── uber.svg │ │ │ │ │ ├── ubuntu.svg │ │ │ │ │ ├── uikit.svg │ │ │ │ │ ├── umbraco.svg │ │ │ │ │ ├── uncharted.svg │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ ├── unity.svg │ │ │ │ │ ├── unsplash.svg │ │ │ │ │ ├── untappd.svg │ │ │ │ │ ├── ups.svg │ │ │ │ │ ├── usb.svg │ │ │ │ │ ├── usps.svg │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ ├── viber.svg │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ ├── vine.svg │ │ │ │ │ ├── vk.svg │ │ │ │ │ ├── vnv.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── watchman-monitoring.svg │ │ │ │ │ ├── waze.svg │ │ │ │ │ ├── weebly.svg │ │ │ │ │ ├── weibo.svg │ │ │ │ │ ├── weixin.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── wirsindhandwerk.svg │ │ │ │ │ ├── wix.svg │ │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ │ ├── wodu.svg │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ ├── wpressr.svg │ │ │ │ │ ├── xbox.svg │ │ │ │ │ ├── xing.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ ├── yammer.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── yandex.svg │ │ │ │ │ ├── yarn.svg │ │ │ │ │ ├── yelp.svg │ │ │ │ │ ├── yoast.svg │ │ │ │ │ ├── youtube.svg │ │ │ │ │ └── zhihu.svg │ │ │ │ ├── regular │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-days.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-xmark.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── circle-check.svg │ │ │ │ │ ├── circle-dot.svg │ │ │ │ │ ├── circle-down.svg │ │ │ │ │ ├── circle-left.svg │ │ │ │ │ ├── circle-pause.svg │ │ │ │ │ ├── circle-play.svg │ │ │ │ │ ├── circle-question.svg │ │ │ │ │ ├── circle-right.svg │ │ │ │ │ ├── circle-stop.svg │ │ │ │ │ ├── circle-up.svg │ │ │ │ │ ├── circle-user.svg │ │ │ │ │ ├── circle-xmark.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── face-angry.svg │ │ │ │ │ ├── face-dizzy.svg │ │ │ │ │ ├── face-flushed.svg │ │ │ │ │ ├── face-frown-open.svg │ │ │ │ │ ├── face-frown.svg │ │ │ │ │ ├── face-grimace.svg │ │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ │ ├── face-grin-beam.svg │ │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ │ ├── face-grin-squint.svg │ │ │ │ │ ├── face-grin-stars.svg │ │ │ │ │ ├── face-grin-tears.svg │ │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ │ ├── face-grin-wide.svg │ │ │ │ │ ├── face-grin-wink.svg │ │ │ │ │ ├── face-grin.svg │ │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ │ ├── face-kiss.svg │ │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ │ ├── face-laugh.svg │ │ │ │ │ ├── face-meh-blank.svg │ │ │ │ │ ├── face-meh.svg │ │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ │ ├── face-sad-cry.svg │ │ │ │ │ ├── face-sad-tear.svg │ │ │ │ │ ├── face-smile-beam.svg │ │ │ │ │ ├── face-smile-wink.svg │ │ │ │ │ ├── face-smile.svg │ │ │ │ │ ├── face-surprise.svg │ │ │ │ │ ├── face-tired.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-lines.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file-zipper.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── floppy-disk.svg │ │ │ │ │ ├── folder-closed.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── hand-back-fist.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hand.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hard-drive.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ ├── money-bill-1.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── note-sticky.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pen-to-square.svg │ │ │ │ │ ├── rectangle-list.svg │ │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── share-from-square.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── square-caret-down.svg │ │ │ │ │ ├── square-caret-left.svg │ │ │ │ │ ├── square-caret-right.svg │ │ │ │ │ ├── square-caret-up.svg │ │ │ │ │ ├── square-check.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-minus.svg │ │ │ │ │ ├── square-plus.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half-stroke.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── trash-can.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ └── window-restore.svg │ │ │ │ └── solid │ │ │ │ │ ├── 0.svg │ │ │ │ │ ├── 1.svg │ │ │ │ │ ├── 2.svg │ │ │ │ │ ├── 3.svg │ │ │ │ │ ├── 4.svg │ │ │ │ │ ├── 5.svg │ │ │ │ │ ├── 6.svg │ │ │ │ │ ├── 7.svg │ │ │ │ │ ├── 8.svg │ │ │ │ │ ├── 9.svg │ │ │ │ │ ├── a.svg │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── anchor-circle-check.svg │ │ │ │ │ ├── anchor-circle-exclamation.svg │ │ │ │ │ ├── anchor-circle-xmark.svg │ │ │ │ │ ├── anchor-lock.svg │ │ │ │ │ ├── anchor.svg │ │ │ │ │ ├── angle-down.svg │ │ │ │ │ ├── angle-left.svg │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ ├── angles-down.svg │ │ │ │ │ ├── angles-left.svg │ │ │ │ │ ├── angles-right.svg │ │ │ │ │ ├── angles-up.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── apple-whole.svg │ │ │ │ │ ├── archway.svg │ │ │ │ │ ├── arrow-down-1-9.svg │ │ │ │ │ ├── arrow-down-9-1.svg │ │ │ │ │ ├── arrow-down-a-z.svg │ │ │ │ │ ├── arrow-down-long.svg │ │ │ │ │ ├── arrow-down-short-wide.svg │ │ │ │ │ ├── arrow-down-up-across-line.svg │ │ │ │ │ ├── arrow-down-up-lock.svg │ │ │ │ │ ├── arrow-down-wide-short.svg │ │ │ │ │ ├── arrow-down-z-a.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-left-long.svg │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ ├── arrow-pointer.svg │ │ │ │ │ ├── arrow-right-arrow-left.svg │ │ │ │ │ ├── arrow-right-from-bracket.svg │ │ │ │ │ ├── arrow-right-long.svg │ │ │ │ │ ├── arrow-right-to-bracket.svg │ │ │ │ │ ├── arrow-right-to-city.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── arrow-rotate-left.svg │ │ │ │ │ ├── arrow-rotate-right.svg │ │ │ │ │ ├── arrow-trend-down.svg │ │ │ │ │ ├── arrow-trend-up.svg │ │ │ │ │ ├── arrow-turn-down.svg │ │ │ │ │ ├── arrow-turn-up.svg │ │ │ │ │ ├── arrow-up-1-9.svg │ │ │ │ │ ├── arrow-up-9-1.svg │ │ │ │ │ ├── arrow-up-a-z.svg │ │ │ │ │ ├── arrow-up-from-bracket.svg │ │ │ │ │ ├── arrow-up-from-ground-water.svg │ │ │ │ │ ├── arrow-up-from-water-pump.svg │ │ │ │ │ ├── arrow-up-long.svg │ │ │ │ │ ├── arrow-up-right-dots.svg │ │ │ │ │ ├── arrow-up-right-from-square.svg │ │ │ │ │ ├── arrow-up-short-wide.svg │ │ │ │ │ ├── arrow-up-wide-short.svg │ │ │ │ │ ├── arrow-up-z-a.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── arrows-down-to-line.svg │ │ │ │ │ ├── arrows-down-to-people.svg │ │ │ │ │ ├── arrows-left-right-to-line.svg │ │ │ │ │ ├── arrows-left-right.svg │ │ │ │ │ ├── arrows-rotate.svg │ │ │ │ │ ├── arrows-spin.svg │ │ │ │ │ ├── arrows-split-up-and-left.svg │ │ │ │ │ ├── arrows-to-circle.svg │ │ │ │ │ ├── arrows-to-dot.svg │ │ │ │ │ ├── arrows-to-eye.svg │ │ │ │ │ ├── arrows-turn-right.svg │ │ │ │ │ ├── arrows-turn-to-dots.svg │ │ │ │ │ ├── arrows-up-down-left-right.svg │ │ │ │ │ ├── arrows-up-down.svg │ │ │ │ │ ├── arrows-up-to-line.svg │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── atom.svg │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ ├── austral-sign.svg │ │ │ │ │ ├── award.svg │ │ │ │ │ ├── b.svg │ │ │ │ │ ├── baby-carriage.svg │ │ │ │ │ ├── baby.svg │ │ │ │ │ ├── backward-fast.svg │ │ │ │ │ ├── backward-step.svg │ │ │ │ │ ├── backward.svg │ │ │ │ │ ├── bacon.svg │ │ │ │ │ ├── bacteria.svg │ │ │ │ │ ├── bacterium.svg │ │ │ │ │ ├── bag-shopping.svg │ │ │ │ │ ├── bahai.svg │ │ │ │ │ ├── baht-sign.svg │ │ │ │ │ ├── ban-smoking.svg │ │ │ │ │ ├── ban.svg │ │ │ │ │ ├── bandage.svg │ │ │ │ │ ├── bangladeshi-taka-sign.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── bars-progress.svg │ │ │ │ │ ├── bars-staggered.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── baseball-bat-ball.svg │ │ │ │ │ ├── baseball.svg │ │ │ │ │ ├── basket-shopping.svg │ │ │ │ │ ├── basketball.svg │ │ │ │ │ ├── bath.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ ├── bed-pulse.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer-mug-empty.svg │ │ │ │ │ ├── bell-concierge.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ ├── biohazard.svg │ │ │ │ │ ├── bitcoin-sign.svg │ │ │ │ │ ├── blender-phone.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── blog.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt-lightning.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── bomb.svg │ │ │ │ │ ├── bone.svg │ │ │ │ │ ├── bong.svg │ │ │ │ │ ├── book-atlas.svg │ │ │ │ │ ├── book-bible.svg │ │ │ │ │ ├── book-bookmark.svg │ │ │ │ │ ├── book-journal-whills.svg │ │ │ │ │ ├── book-medical.svg │ │ │ │ │ ├── book-open-reader.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-quran.svg │ │ │ │ │ ├── book-skull.svg │ │ │ │ │ ├── book-tanakh.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── border-all.svg │ │ │ │ │ ├── border-none.svg │ │ │ │ │ ├── border-top-left.svg │ │ │ │ │ ├── bore-hole.svg │ │ │ │ │ ├── bottle-droplet.svg │ │ │ │ │ ├── bottle-water.svg │ │ │ │ │ ├── bowl-food.svg │ │ │ │ │ ├── bowl-rice.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box-archive.svg │ │ │ │ │ ├── box-open.svg │ │ │ │ │ ├── box-tissue.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── boxes-packing.svg │ │ │ │ │ ├── boxes-stacked.svg │ │ │ │ │ ├── braille.svg │ │ │ │ │ ├── brain.svg │ │ │ │ │ ├── brazilian-real-sign.svg │ │ │ │ │ ├── bread-slice.svg │ │ │ │ │ ├── bridge-circle-check.svg │ │ │ │ │ ├── bridge-circle-exclamation.svg │ │ │ │ │ ├── bridge-circle-xmark.svg │ │ │ │ │ ├── bridge-lock.svg │ │ │ │ │ ├── bridge-water.svg │ │ │ │ │ ├── bridge.svg │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── broom-ball.svg │ │ │ │ │ ├── broom.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bucket.svg │ │ │ │ │ ├── bug-slash.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── bugs.svg │ │ │ │ │ ├── building-circle-arrow-right.svg │ │ │ │ │ ├── building-circle-check.svg │ │ │ │ │ ├── building-circle-exclamation.svg │ │ │ │ │ ├── building-circle-xmark.svg │ │ │ │ │ ├── building-columns.svg │ │ │ │ │ ├── building-flag.svg │ │ │ │ │ ├── building-lock.svg │ │ │ │ │ ├── building-ngo.svg │ │ │ │ │ ├── building-shield.svg │ │ │ │ │ ├── building-un.svg │ │ │ │ │ ├── building-user.svg │ │ │ │ │ ├── building-wheat.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── burst.svg │ │ │ │ │ ├── bus-simple.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-time.svg │ │ │ │ │ ├── c.svg │ │ │ │ │ ├── cable-car.svg │ │ │ │ │ ├── cake-candles.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-day.svg │ │ │ │ │ ├── calendar-days.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-week.svg │ │ │ │ │ ├── calendar-xmark.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ ├── camera-rotate.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── campground.svg │ │ │ │ │ ├── candy-cane.svg │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ ├── capsules.svg │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ ├── car-burst.svg │ │ │ │ │ ├── car-on.svg │ │ │ │ │ ├── car-rear.svg │ │ │ │ │ ├── car-side.svg │ │ │ │ │ ├── car-tunnel.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── caravan.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── carrot.svg │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ ├── cart-flatbed-suitcase.svg │ │ │ │ │ ├── cart-flatbed.svg │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ ├── cart-shopping.svg │ │ │ │ │ ├── cash-register.svg │ │ │ │ │ ├── cat.svg │ │ │ │ │ ├── cedi-sign.svg │ │ │ │ │ ├── cent-sign.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── chair.svg │ │ │ │ │ ├── chalkboard-user.svg │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ ├── champagne-glasses.svg │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chart-column.svg │ │ │ │ │ ├── chart-gantt.svg │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── chart-simple.svg │ │ │ │ │ ├── check-double.svg │ │ │ │ │ ├── check-to-slot.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── cheese.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-board.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── chess.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── child-combatant.svg │ │ │ │ │ ├── child-dress.svg │ │ │ │ │ ├── child-reaching.svg │ │ │ │ │ ├── child.svg │ │ │ │ │ ├── children.svg │ │ │ │ │ ├── church.svg │ │ │ │ │ ├── circle-arrow-down.svg │ │ │ │ │ ├── circle-arrow-left.svg │ │ │ │ │ ├── circle-arrow-right.svg │ │ │ │ │ ├── circle-arrow-up.svg │ │ │ │ │ ├── circle-check.svg │ │ │ │ │ ├── circle-chevron-down.svg │ │ │ │ │ ├── circle-chevron-left.svg │ │ │ │ │ ├── circle-chevron-right.svg │ │ │ │ │ ├── circle-chevron-up.svg │ │ │ │ │ ├── circle-dollar-to-slot.svg │ │ │ │ │ ├── circle-dot.svg │ │ │ │ │ ├── circle-down.svg │ │ │ │ │ ├── circle-exclamation.svg │ │ │ │ │ ├── circle-h.svg │ │ │ │ │ ├── circle-half-stroke.svg │ │ │ │ │ ├── circle-info.svg │ │ │ │ │ ├── circle-left.svg │ │ │ │ │ ├── circle-minus.svg │ │ │ │ │ ├── circle-nodes.svg │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ ├── circle-pause.svg │ │ │ │ │ ├── circle-play.svg │ │ │ │ │ ├── circle-plus.svg │ │ │ │ │ ├── circle-question.svg │ │ │ │ │ ├── circle-radiation.svg │ │ │ │ │ ├── circle-right.svg │ │ │ │ │ ├── circle-stop.svg │ │ │ │ │ ├── circle-up.svg │ │ │ │ │ ├── circle-user.svg │ │ │ │ │ ├── circle-xmark.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── city.svg │ │ │ │ │ ├── clapperboard.svg │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ ├── clipboard-question.svg │ │ │ │ │ ├── clipboard-user.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock-rotate-left.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-arrow-down.svg │ │ │ │ │ ├── cloud-arrow-up.svg │ │ │ │ │ ├── cloud-bolt.svg │ │ │ │ │ ├── cloud-meatball.svg │ │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ ├── cloud-rain.svg │ │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ │ ├── cloud-showers-water.svg │ │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ │ ├── cloud-sun.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── clover.svg │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ ├── code-commit.svg │ │ │ │ │ ├── code-compare.svg │ │ │ │ │ ├── code-fork.svg │ │ │ │ │ ├── code-merge.svg │ │ │ │ │ ├── code-pull-request.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── coins.svg │ │ │ │ │ ├── colon-sign.svg │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-medical.svg │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ ├── comment-sms.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── compass-drafting.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── computer-mouse.svg │ │ │ │ │ ├── computer.svg │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ ├── cookie.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── couch.svg │ │ │ │ │ ├── cow.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── crop-simple.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ ├── crow.svg │ │ │ │ │ ├── crown.svg │ │ │ │ │ ├── crutch.svg │ │ │ │ │ ├── cruzeiro-sign.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cubes-stacked.svg │ │ │ │ │ ├── cubes.svg │ │ │ │ │ ├── d.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── delete-left.svg │ │ │ │ │ ├── democrat.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ ├── diagram-next.svg │ │ │ │ │ ├── diagram-predecessor.svg │ │ │ │ │ ├── diagram-project.svg │ │ │ │ │ ├── diagram-successor.svg │ │ │ │ │ ├── diamond-turn-right.svg │ │ │ │ │ ├── diamond.svg │ │ │ │ │ ├── dice-d20.svg │ │ │ │ │ ├── dice-d6.svg │ │ │ │ │ ├── dice-five.svg │ │ │ │ │ ├── dice-four.svg │ │ │ │ │ ├── dice-one.svg │ │ │ │ │ ├── dice-six.svg │ │ │ │ │ ├── dice-three.svg │ │ │ │ │ ├── dice-two.svg │ │ │ │ │ ├── dice.svg │ │ │ │ │ ├── disease.svg │ │ │ │ │ ├── display.svg │ │ │ │ │ ├── divide.svg │ │ │ │ │ ├── dna.svg │ │ │ │ │ ├── dog.svg │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ ├── dolly.svg │ │ │ │ │ ├── dong-sign.svg │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ ├── door-open.svg │ │ │ │ │ ├── dove.svg │ │ │ │ │ ├── down-left-and-up-right-to-center.svg │ │ │ │ │ ├── down-long.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── dragon.svg │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ ├── droplet-slash.svg │ │ │ │ │ ├── droplet.svg │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ ├── drum.svg │ │ │ │ │ ├── drumstick-bite.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── dumpster-fire.svg │ │ │ │ │ ├── dumpster.svg │ │ │ │ │ ├── dungeon.svg │ │ │ │ │ ├── e.svg │ │ │ │ │ ├── ear-deaf.svg │ │ │ │ │ ├── ear-listen.svg │ │ │ │ │ ├── earth-africa.svg │ │ │ │ │ ├── earth-americas.svg │ │ │ │ │ ├── earth-asia.svg │ │ │ │ │ ├── earth-europe.svg │ │ │ │ │ ├── earth-oceania.svg │ │ │ │ │ ├── egg.svg │ │ │ │ │ ├── eject.svg │ │ │ │ │ ├── elevator.svg │ │ │ │ │ ├── ellipsis-vertical.svg │ │ │ │ │ ├── ellipsis.svg │ │ │ │ │ ├── envelope-circle-check.svg │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── envelopes-bulk.svg │ │ │ │ │ ├── equals.svg │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── ethernet.svg │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── explosion.svg │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ ├── eye-low-vision.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── f.svg │ │ │ │ │ ├── face-angry.svg │ │ │ │ │ ├── face-dizzy.svg │ │ │ │ │ ├── face-flushed.svg │ │ │ │ │ ├── face-frown-open.svg │ │ │ │ │ ├── face-frown.svg │ │ │ │ │ ├── face-grimace.svg │ │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ │ ├── face-grin-beam.svg │ │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ │ ├── face-grin-squint.svg │ │ │ │ │ ├── face-grin-stars.svg │ │ │ │ │ ├── face-grin-tears.svg │ │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ │ ├── face-grin-wide.svg │ │ │ │ │ ├── face-grin-wink.svg │ │ │ │ │ ├── face-grin.svg │ │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ │ ├── face-kiss.svg │ │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ │ ├── face-laugh.svg │ │ │ │ │ ├── face-meh-blank.svg │ │ │ │ │ ├── face-meh.svg │ │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ │ ├── face-sad-cry.svg │ │ │ │ │ ├── face-sad-tear.svg │ │ │ │ │ ├── face-smile-beam.svg │ │ │ │ │ ├── face-smile-wink.svg │ │ │ │ │ ├── face-smile.svg │ │ │ │ │ ├── face-surprise.svg │ │ │ │ │ ├── face-tired.svg │ │ │ │ │ ├── fan.svg │ │ │ │ │ ├── faucet-drip.svg │ │ │ │ │ ├── faucet.svg │ │ │ │ │ ├── fax.svg │ │ │ │ │ ├── feather-pointed.svg │ │ │ │ │ ├── feather.svg │ │ │ │ │ ├── ferry.svg │ │ │ │ │ ├── file-arrow-down.svg │ │ │ │ │ ├── file-arrow-up.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-circle-check.svg │ │ │ │ │ ├── file-circle-exclamation.svg │ │ │ │ │ ├── file-circle-minus.svg │ │ │ │ │ ├── file-circle-plus.svg │ │ │ │ │ ├── file-circle-question.svg │ │ │ │ │ ├── file-circle-xmark.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ ├── file-csv.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-export.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ ├── file-lines.svg │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-pen.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ ├── file-shield.svg │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-waveform.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file-zipper.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ ├── fill.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter-circle-dollar.svg │ │ │ │ │ ├── filter-circle-xmark.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ ├── fire-burner.svg │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ ├── fire-flame-curved.svg │ │ │ │ │ ├── fire-flame-simple.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── fish-fins.svg │ │ │ │ │ ├── fish.svg │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ ├── flag-usa.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flask-vial.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── floppy-disk.svg │ │ │ │ │ ├── florin-sign.svg │ │ │ │ │ ├── folder-closed.svg │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ ├── folder-tree.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── football.svg │ │ │ │ │ ├── forward-fast.svg │ │ │ │ │ ├── forward-step.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ ├── franc-sign.svg │ │ │ │ │ ├── frog.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── g.svg │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ ├── gauge-high.svg │ │ │ │ │ ├── gauge-simple-high.svg │ │ │ │ │ ├── gauge-simple.svg │ │ │ │ │ ├── gauge.svg │ │ │ │ │ ├── gavel.svg │ │ │ │ │ ├── gear.svg │ │ │ │ │ ├── gears.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── genderless.svg │ │ │ │ │ ├── ghost.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── gifts.svg │ │ │ │ │ ├── glass-water-droplet.svg │ │ │ │ │ ├── glass-water.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-ball-tee.svg │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ │ ├── grip-lines.svg │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ ├── grip.svg │ │ │ │ │ ├── group-arrows-rotate.svg │ │ │ │ │ ├── guarani-sign.svg │ │ │ │ │ ├── guitar.svg │ │ │ │ │ ├── gun.svg │ │ │ │ │ ├── h.svg │ │ │ │ │ ├── hammer.svg │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ ├── hand-back-fist.svg │ │ │ │ │ ├── hand-dots.svg │ │ │ │ │ ├── hand-fist.svg │ │ │ │ │ ├── hand-holding-dollar.svg │ │ │ │ │ ├── hand-holding-droplet.svg │ │ │ │ │ ├── hand-holding-hand.svg │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-sparkles.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hand.svg │ │ │ │ │ ├── handcuffs.svg │ │ │ │ │ ├── hands-asl-interpreting.svg │ │ │ │ │ ├── hands-bound.svg │ │ │ │ │ ├── hands-bubbles.svg │ │ │ │ │ ├── hands-clapping.svg │ │ │ │ │ ├── hands-holding-child.svg │ │ │ │ │ ├── hands-holding-circle.svg │ │ │ │ │ ├── hands-holding.svg │ │ │ │ │ ├── hands-praying.svg │ │ │ │ │ ├── hands.svg │ │ │ │ │ ├── handshake-angle.svg │ │ │ │ │ ├── handshake-simple-slash.svg │ │ │ │ │ ├── handshake-simple.svg │ │ │ │ │ ├── handshake-slash.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hanukiah.svg │ │ │ │ │ ├── hard-drive.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ │ ├── hat-cowboy.svg │ │ │ │ │ ├── hat-wizard.svg │ │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ │ ├── head-side-cough.svg │ │ │ │ │ ├── head-side-mask.svg │ │ │ │ │ ├── head-side-virus.svg │ │ │ │ │ ├── heading.svg │ │ │ │ │ ├── headphones-simple.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart-circle-bolt.svg │ │ │ │ │ ├── heart-circle-check.svg │ │ │ │ │ ├── heart-circle-exclamation.svg │ │ │ │ │ ├── heart-circle-minus.svg │ │ │ │ │ ├── heart-circle-plus.svg │ │ │ │ │ ├── heart-circle-xmark.svg │ │ │ │ │ ├── heart-crack.svg │ │ │ │ │ ├── heart-pulse.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── helicopter-symbol.svg │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ ├── helmet-safety.svg │ │ │ │ │ ├── helmet-un.svg │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ ├── hill-avalanche.svg │ │ │ │ │ ├── hill-rockslide.svg │ │ │ │ │ ├── hippo.svg │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ ├── holly-berry.svg │ │ │ │ │ ├── horse-head.svg │ │ │ │ │ ├── horse.svg │ │ │ │ │ ├── hospital-user.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hot-tub-person.svg │ │ │ │ │ ├── hotdog.svg │ │ │ │ │ ├── hotel.svg │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── house-chimney-crack.svg │ │ │ │ │ ├── house-chimney-medical.svg │ │ │ │ │ ├── house-chimney-user.svg │ │ │ │ │ ├── house-chimney-window.svg │ │ │ │ │ ├── house-chimney.svg │ │ │ │ │ ├── house-circle-check.svg │ │ │ │ │ ├── house-circle-exclamation.svg │ │ │ │ │ ├── house-circle-xmark.svg │ │ │ │ │ ├── house-crack.svg │ │ │ │ │ ├── house-fire.svg │ │ │ │ │ ├── house-flag.svg │ │ │ │ │ ├── house-flood-water-circle-arrow-right.svg │ │ │ │ │ ├── house-flood-water.svg │ │ │ │ │ ├── house-laptop.svg │ │ │ │ │ ├── house-lock.svg │ │ │ │ │ ├── house-medical-circle-check.svg │ │ │ │ │ ├── house-medical-circle-exclamation.svg │ │ │ │ │ ├── house-medical-circle-xmark.svg │ │ │ │ │ ├── house-medical-flag.svg │ │ │ │ │ ├── house-medical.svg │ │ │ │ │ ├── house-signal.svg │ │ │ │ │ ├── house-tsunami.svg │ │ │ │ │ ├── house-user.svg │ │ │ │ │ ├── house.svg │ │ │ │ │ ├── hryvnia-sign.svg │ │ │ │ │ ├── hurricane.svg │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ ├── i.svg │ │ │ │ │ ├── ice-cream.svg │ │ │ │ │ ├── icicles.svg │ │ │ │ │ ├── icons.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card-clip.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── igloo.svg │ │ │ │ │ ├── image-portrait.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── indian-rupee-sign.svg │ │ │ │ │ ├── industry.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── j.svg │ │ │ │ │ ├── jar-wheat.svg │ │ │ │ │ ├── jar.svg │ │ │ │ │ ├── jedi.svg │ │ │ │ │ ├── jet-fighter-up.svg │ │ │ │ │ ├── jet-fighter.svg │ │ │ │ │ ├── joint.svg │ │ │ │ │ ├── jug-detergent.svg │ │ │ │ │ ├── k.svg │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── khanda.svg │ │ │ │ │ ├── kip-sign.svg │ │ │ │ │ ├── kit-medical.svg │ │ │ │ │ ├── kitchen-set.svg │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ ├── l.svg │ │ │ │ │ ├── land-mine-on.svg │ │ │ │ │ ├── landmark-dome.svg │ │ │ │ │ ├── landmark-flag.svg │ │ │ │ │ ├── landmark.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ ├── laptop-file.svg │ │ │ │ │ ├── laptop-medical.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── lari-sign.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── left-long.svg │ │ │ │ │ ├── left-right.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ ├── less-than.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── lines-leaning.svg │ │ │ │ │ ├── link-slash.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ ├── list-check.svg │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── litecoin-sign.svg │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ ├── location-crosshairs.svg │ │ │ │ │ ├── location-dot.svg │ │ │ │ │ ├── location-pin-lock.svg │ │ │ │ │ ├── location-pin.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── locust.svg │ │ │ │ │ ├── lungs-virus.svg │ │ │ │ │ ├── lungs.svg │ │ │ │ │ ├── m.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── magnifying-glass-arrow-right.svg │ │ │ │ │ ├── magnifying-glass-chart.svg │ │ │ │ │ ├── magnifying-glass-dollar.svg │ │ │ │ │ ├── magnifying-glass-location.svg │ │ │ │ │ ├── magnifying-glass-minus.svg │ │ │ │ │ ├── magnifying-glass-plus.svg │ │ │ │ │ ├── magnifying-glass.svg │ │ │ │ │ ├── manat-sign.svg │ │ │ │ │ ├── map-location-dot.svg │ │ │ │ │ ├── map-location.svg │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── mars-and-venus-burst.svg │ │ │ │ │ ├── mars-and-venus.svg │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ ├── mars-stroke-right.svg │ │ │ │ │ ├── mars-stroke-up.svg │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ ├── mars.svg │ │ │ │ │ ├── martini-glass-citrus.svg │ │ │ │ │ ├── martini-glass-empty.svg │ │ │ │ │ ├── martini-glass.svg │ │ │ │ │ ├── mask-face.svg │ │ │ │ │ ├── mask-ventilator.svg │ │ │ │ │ ├── mask.svg │ │ │ │ │ ├── masks-theater.svg │ │ │ │ │ ├── mattress-pillow.svg │ │ │ │ │ ├── maximize.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menorah.svg │ │ │ │ │ ├── mercury.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ ├── meteor.svg │ │ │ │ │ ├── microchip.svg │ │ │ │ │ ├── microphone-lines-slash.svg │ │ │ │ │ ├── microphone-lines.svg │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ ├── microphone.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── mill-sign.svg │ │ │ │ │ ├── minimize.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── mitten.svg │ │ │ │ │ ├── mobile-button.svg │ │ │ │ │ ├── mobile-retro.svg │ │ │ │ │ ├── mobile-screen-button.svg │ │ │ │ │ ├── mobile-screen.svg │ │ │ │ │ ├── mobile.svg │ │ │ │ │ ├── money-bill-1-wave.svg │ │ │ │ │ ├── money-bill-1.svg │ │ │ │ │ ├── money-bill-transfer.svg │ │ │ │ │ ├── money-bill-trend-up.svg │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ ├── money-bill-wheat.svg │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ ├── money-bills.svg │ │ │ │ │ ├── money-check-dollar.svg │ │ │ │ │ ├── money-check.svg │ │ │ │ │ ├── monument.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ ├── mosque.svg │ │ │ │ │ ├── mosquito-net.svg │ │ │ │ │ ├── mosquito.svg │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ ├── mound.svg │ │ │ │ │ ├── mountain-city.svg │ │ │ │ │ ├── mountain-sun.svg │ │ │ │ │ ├── mountain.svg │ │ │ │ │ ├── mug-hot.svg │ │ │ │ │ ├── mug-saucer.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── n.svg │ │ │ │ │ ├── naira-sign.svg │ │ │ │ │ ├── network-wired.svg │ │ │ │ │ ├── neuter.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ ├── notdef.svg │ │ │ │ │ ├── note-sticky.svg │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ ├── o.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ ├── oil-well.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── otter.svg │ │ │ │ │ ├── outdent.svg │ │ │ │ │ ├── p.svg │ │ │ │ │ ├── pager.svg │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ ├── paintbrush.svg │ │ │ │ │ ├── palette.svg │ │ │ │ │ ├── pallet.svg │ │ │ │ │ ├── panorama.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── passport.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── peace.svg │ │ │ │ │ ├── pen-clip.svg │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ ├── pen-ruler.svg │ │ │ │ │ ├── pen-to-square.svg │ │ │ │ │ ├── pen.svg │ │ │ │ │ ├── pencil.svg │ │ │ │ │ ├── people-arrows.svg │ │ │ │ │ ├── people-carry-box.svg │ │ │ │ │ ├── people-group.svg │ │ │ │ │ ├── people-line.svg │ │ │ │ │ ├── people-pulling.svg │ │ │ │ │ ├── people-robbery.svg │ │ │ │ │ ├── people-roof.svg │ │ │ │ │ ├── pepper-hot.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── person-arrow-down-to-line.svg │ │ │ │ │ ├── person-arrow-up-from-line.svg │ │ │ │ │ ├── person-biking.svg │ │ │ │ │ ├── person-booth.svg │ │ │ │ │ ├── person-breastfeeding.svg │ │ │ │ │ ├── person-burst.svg │ │ │ │ │ ├── person-cane.svg │ │ │ │ │ ├── person-chalkboard.svg │ │ │ │ │ ├── person-circle-check.svg │ │ │ │ │ ├── person-circle-exclamation.svg │ │ │ │ │ ├── person-circle-minus.svg │ │ │ │ │ ├── person-circle-plus.svg │ │ │ │ │ ├── person-circle-question.svg │ │ │ │ │ ├── person-circle-xmark.svg │ │ │ │ │ ├── person-digging.svg │ │ │ │ │ ├── person-dots-from-line.svg │ │ │ │ │ ├── person-dress-burst.svg │ │ │ │ │ ├── person-dress.svg │ │ │ │ │ ├── person-drowning.svg │ │ │ │ │ ├── person-falling-burst.svg │ │ │ │ │ ├── person-falling.svg │ │ │ │ │ ├── person-half-dress.svg │ │ │ │ │ ├── person-harassing.svg │ │ │ │ │ ├── person-hiking.svg │ │ │ │ │ ├── person-military-pointing.svg │ │ │ │ │ ├── person-military-rifle.svg │ │ │ │ │ ├── person-military-to-person.svg │ │ │ │ │ ├── person-praying.svg │ │ │ │ │ ├── person-pregnant.svg │ │ │ │ │ ├── person-rays.svg │ │ │ │ │ ├── person-rifle.svg │ │ │ │ │ ├── person-running.svg │ │ │ │ │ ├── person-shelter.svg │ │ │ │ │ ├── person-skating.svg │ │ │ │ │ ├── person-skiing-nordic.svg │ │ │ │ │ ├── person-skiing.svg │ │ │ │ │ ├── person-snowboarding.svg │ │ │ │ │ ├── person-swimming.svg │ │ │ │ │ ├── person-through-window.svg │ │ │ │ │ ├── person-walking-arrow-loop-left.svg │ │ │ │ │ ├── person-walking-arrow-right.svg │ │ │ │ │ ├── person-walking-dashed-line-arrow-right.svg │ │ │ │ │ ├── person-walking-luggage.svg │ │ │ │ │ ├── person-walking-with-cane.svg │ │ │ │ │ ├── person-walking.svg │ │ │ │ │ ├── person.svg │ │ │ │ │ ├── peseta-sign.svg │ │ │ │ │ ├── peso-sign.svg │ │ │ │ │ ├── phone-flip.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── photo-film.svg │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ ├── pills.svg │ │ │ │ │ ├── pizza-slice.svg │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-circle-check.svg │ │ │ │ │ ├── plane-circle-exclamation.svg │ │ │ │ │ ├── plane-circle-xmark.svg │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ ├── plane-lock.svg │ │ │ │ │ ├── plane-slash.svg │ │ │ │ │ ├── plane-up.svg │ │ │ │ │ ├── plane.svg │ │ │ │ │ ├── plant-wilt.svg │ │ │ │ │ ├── plate-wheat.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── plug-circle-bolt.svg │ │ │ │ │ ├── plug-circle-check.svg │ │ │ │ │ ├── plug-circle-exclamation.svg │ │ │ │ │ ├── plug-circle-minus.svg │ │ │ │ │ ├── plug-circle-plus.svg │ │ │ │ │ ├── plug-circle-xmark.svg │ │ │ │ │ ├── plug.svg │ │ │ │ │ ├── plus-minus.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── podcast.svg │ │ │ │ │ ├── poo-storm.svg │ │ │ │ │ ├── poo.svg │ │ │ │ │ ├── poop.svg │ │ │ │ │ ├── power-off.svg │ │ │ │ │ ├── prescription-bottle-medical.svg │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ ├── prescription.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── pump-medical.svg │ │ │ │ │ ├── pump-soap.svg │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── q.svg │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ ├── r.svg │ │ │ │ │ ├── radiation.svg │ │ │ │ │ ├── radio.svg │ │ │ │ │ ├── rainbow.svg │ │ │ │ │ ├── ranking-star.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── record-vinyl.svg │ │ │ │ │ ├── rectangle-ad.svg │ │ │ │ │ ├── rectangle-list.svg │ │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ │ ├── recycle.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ ├── reply.svg │ │ │ │ │ ├── republican.svg │ │ │ │ │ ├── restroom.svg │ │ │ │ │ ├── retweet.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── right-from-bracket.svg │ │ │ │ │ ├── right-left.svg │ │ │ │ │ ├── right-long.svg │ │ │ │ │ ├── right-to-bracket.svg │ │ │ │ │ ├── ring.svg │ │ │ │ │ ├── road-barrier.svg │ │ │ │ │ ├── road-bridge.svg │ │ │ │ │ ├── road-circle-check.svg │ │ │ │ │ ├── road-circle-exclamation.svg │ │ │ │ │ ├── road-circle-xmark.svg │ │ │ │ │ ├── road-lock.svg │ │ │ │ │ ├── road-spikes.svg │ │ │ │ │ ├── road.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── rotate-left.svg │ │ │ │ │ ├── rotate-right.svg │ │ │ │ │ ├── rotate.svg │ │ │ │ │ ├── route.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ ├── rug.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── rupiah-sign.svg │ │ │ │ │ ├── s.svg │ │ │ │ │ ├── sack-dollar.svg │ │ │ │ │ ├── sack-xmark.svg │ │ │ │ │ ├── sailboat.svg │ │ │ │ │ ├── satellite-dish.svg │ │ │ │ │ ├── satellite.svg │ │ │ │ │ ├── scale-balanced.svg │ │ │ │ │ ├── scale-unbalanced-flip.svg │ │ │ │ │ ├── scale-unbalanced.svg │ │ │ │ │ ├── school-circle-check.svg │ │ │ │ │ ├── school-circle-exclamation.svg │ │ │ │ │ ├── school-circle-xmark.svg │ │ │ │ │ ├── school-flag.svg │ │ │ │ │ ├── school-lock.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── scissors.svg │ │ │ │ │ ├── screwdriver-wrench.svg │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ ├── scroll-torah.svg │ │ │ │ │ ├── scroll.svg │ │ │ │ │ ├── sd-card.svg │ │ │ │ │ ├── section.svg │ │ │ │ │ ├── seedling.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-from-square.svg │ │ │ │ │ ├── share-nodes.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── sheet-plastic.svg │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ ├── shield-cat.svg │ │ │ │ │ ├── shield-dog.svg │ │ │ │ │ ├── shield-halved.svg │ │ │ │ │ ├── shield-heart.svg │ │ │ │ │ ├── shield-virus.svg │ │ │ │ │ ├── shield.svg │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shirt.svg │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ ├── shop-lock.svg │ │ │ │ │ ├── shop-slash.svg │ │ │ │ │ ├── shop.svg │ │ │ │ │ ├── shower.svg │ │ │ │ │ ├── shrimp.svg │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ ├── shuttle-space.svg │ │ │ │ │ ├── sign-hanging.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signature.svg │ │ │ │ │ ├── signs-post.svg │ │ │ │ │ ├── sim-card.svg │ │ │ │ │ ├── sink.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skull-crossbones.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── slash.svg │ │ │ │ │ ├── sleigh.svg │ │ │ │ │ ├── sliders.svg │ │ │ │ │ ├── smog.svg │ │ │ │ │ ├── smoking.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── snowman.svg │ │ │ │ │ ├── snowplow.svg │ │ │ │ │ ├── soap.svg │ │ │ │ │ ├── socks.svg │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── spa.svg │ │ │ │ │ ├── spaghetti-monster-flying.svg │ │ │ │ │ ├── spell-check.svg │ │ │ │ │ ├── spider.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── splotch.svg │ │ │ │ │ ├── spoon.svg │ │ │ │ │ ├── spray-can-sparkles.svg │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ ├── square-arrow-up-right.svg │ │ │ │ │ ├── square-caret-down.svg │ │ │ │ │ ├── square-caret-left.svg │ │ │ │ │ ├── square-caret-right.svg │ │ │ │ │ ├── square-caret-up.svg │ │ │ │ │ ├── square-check.svg │ │ │ │ │ ├── square-envelope.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-h.svg │ │ │ │ │ ├── square-minus.svg │ │ │ │ │ ├── square-nfi.svg │ │ │ │ │ ├── square-parking.svg │ │ │ │ │ ├── square-pen.svg │ │ │ │ │ ├── square-person-confined.svg │ │ │ │ │ ├── square-phone-flip.svg │ │ │ │ │ ├── square-phone.svg │ │ │ │ │ ├── square-plus.svg │ │ │ │ │ ├── square-poll-horizontal.svg │ │ │ │ │ ├── square-poll-vertical.svg │ │ │ │ │ ├── square-root-variable.svg │ │ │ │ │ ├── square-rss.svg │ │ │ │ │ ├── square-share-nodes.svg │ │ │ │ │ ├── square-up-right.svg │ │ │ │ │ ├── square-virus.svg │ │ │ │ │ ├── square-xmark.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── staff-snake.svg │ │ │ │ │ ├── stairs.svg │ │ │ │ │ ├── stamp.svg │ │ │ │ │ ├── stapler.svg │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ ├── star-half-stroke.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sterling-sign.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch-20.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-slash.svg │ │ │ │ │ ├── store.svg │ │ │ │ │ ├── street-view.svg │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── suitcase-medical.svg │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ ├── sun-plant-wilt.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ ├── syringe.svg │ │ │ │ │ ├── t.svg │ │ │ │ │ ├── table-cells-large.svg │ │ │ │ │ ├── table-cells.svg │ │ │ │ │ ├── table-columns.svg │ │ │ │ │ ├── table-list.svg │ │ │ │ │ ├── table-tennis-paddle-ball.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tablet-button.svg │ │ │ │ │ ├── tablet-screen-button.svg │ │ │ │ │ ├── tablet.svg │ │ │ │ │ ├── tablets.svg │ │ │ │ │ ├── tachograph-digital.svg │ │ │ │ │ ├── tag.svg │ │ │ │ │ ├── tags.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── tarp-droplet.svg │ │ │ │ │ ├── tarp.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ ├── teeth.svg │ │ │ │ │ ├── temperature-arrow-down.svg │ │ │ │ │ ├── temperature-arrow-up.svg │ │ │ │ │ ├── temperature-empty.svg │ │ │ │ │ ├── temperature-full.svg │ │ │ │ │ ├── temperature-half.svg │ │ │ │ │ ├── temperature-high.svg │ │ │ │ │ ├── temperature-low.svg │ │ │ │ │ ├── temperature-quarter.svg │ │ │ │ │ ├── temperature-three-quarters.svg │ │ │ │ │ ├── tenge-sign.svg │ │ │ │ │ ├── tent-arrow-down-to-line.svg │ │ │ │ │ ├── tent-arrow-left-right.svg │ │ │ │ │ ├── tent-arrow-turn-left.svg │ │ │ │ │ ├── tent-arrows-down.svg │ │ │ │ │ ├── tent.svg │ │ │ │ │ ├── tents.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-height.svg │ │ │ │ │ ├── text-slash.svg │ │ │ │ │ ├── text-width.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ ├── ticket-simple.svg │ │ │ │ │ ├── ticket.svg │ │ │ │ │ ├── timeline.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ ├── toilet-portable.svg │ │ │ │ │ ├── toilet.svg │ │ │ │ │ ├── toilets-portable.svg │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ ├── tooth.svg │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ ├── tornado.svg │ │ │ │ │ ├── tower-broadcast.svg │ │ │ │ │ ├── tower-cell.svg │ │ │ │ │ ├── tower-observation.svg │ │ │ │ │ ├── tractor.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── trailer.svg │ │ │ │ │ ├── train-subway.svg │ │ │ │ │ ├── train-tram.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-arrow-up.svg │ │ │ │ │ ├── trash-can-arrow-up.svg │ │ │ │ │ ├── trash-can.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── tree-city.svg │ │ │ │ │ ├── tree.svg │ │ │ │ │ ├── triangle-exclamation.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── trowel-bricks.svg │ │ │ │ │ ├── trowel.svg │ │ │ │ │ ├── truck-arrow-right.svg │ │ │ │ │ ├── truck-droplet.svg │ │ │ │ │ ├── truck-fast.svg │ │ │ │ │ ├── truck-field-un.svg │ │ │ │ │ ├── truck-field.svg │ │ │ │ │ ├── truck-front.svg │ │ │ │ │ ├── truck-medical.svg │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ ├── truck-plane.svg │ │ │ │ │ ├── truck-ramp-box.svg │ │ │ │ │ ├── truck.svg │ │ │ │ │ ├── tty.svg │ │ │ │ │ ├── turkish-lira-sign.svg │ │ │ │ │ ├── turn-down.svg │ │ │ │ │ ├── turn-up.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── u.svg │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ ├── unlock-keyhole.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── up-down-left-right.svg │ │ │ │ │ ├── up-down.svg │ │ │ │ │ ├── up-long.svg │ │ │ │ │ ├── up-right-and-down-left-from-center.svg │ │ │ │ │ ├── up-right-from-square.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ ├── user-check.svg │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ ├── user-doctor.svg │ │ │ │ │ ├── user-gear.svg │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ ├── user-group.svg │ │ │ │ │ ├── user-injured.svg │ │ │ │ │ ├── user-large-slash.svg │ │ │ │ │ ├── user-large.svg │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ ├── user-nurse.svg │ │ │ │ │ ├── user-pen.svg │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ ├── user-xmark.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users-between-lines.svg │ │ │ │ │ ├── users-gear.svg │ │ │ │ │ ├── users-line.svg │ │ │ │ │ ├── users-rays.svg │ │ │ │ │ ├── users-rectangle.svg │ │ │ │ │ ├── users-slash.svg │ │ │ │ │ ├── users-viewfinder.svg │ │ │ │ │ ├── users.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── v.svg │ │ │ │ │ ├── van-shuttle.svg │ │ │ │ │ ├── vault.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vest-patches.svg │ │ │ │ │ ├── vest.svg │ │ │ │ │ ├── vial-circle-check.svg │ │ │ │ │ ├── vial-virus.svg │ │ │ │ │ ├── vial.svg │ │ │ │ │ ├── vials.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── vihara.svg │ │ │ │ │ ├── virus-covid-slash.svg │ │ │ │ │ ├── virus-covid.svg │ │ │ │ │ ├── virus-slash.svg │ │ │ │ │ ├── virus.svg │ │ │ │ │ ├── viruses.svg │ │ │ │ │ ├── voicemail.svg │ │ │ │ │ ├── volcano.svg │ │ │ │ │ ├── volleyball.svg │ │ │ │ │ ├── volume-high.svg │ │ │ │ │ ├── volume-low.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-xmark.svg │ │ │ │ │ ├── vr-cardboard.svg │ │ │ │ │ ├── w.svg │ │ │ │ │ ├── walkie-talkie.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── wand-magic-sparkles.svg │ │ │ │ │ ├── wand-magic.svg │ │ │ │ │ ├── wand-sparkles.svg │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ ├── water-ladder.svg │ │ │ │ │ ├── water.svg │ │ │ │ │ ├── wave-square.svg │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ ├── weight-scale.svg │ │ │ │ │ ├── wheat-awn-circle-exclamation.svg │ │ │ │ │ ├── wheat-awn.svg │ │ │ │ │ ├── wheelchair-move.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── whiskey-glass.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── wind.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ ├── wine-bottle.svg │ │ │ │ │ ├── wine-glass-empty.svg │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ ├── worm.svg │ │ │ │ │ ├── wrench.svg │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ ├── x.svg │ │ │ │ │ ├── xmark.svg │ │ │ │ │ ├── xmarks-lines.svg │ │ │ │ │ ├── y.svg │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ ├── yin-yang.svg │ │ │ │ │ └── z.svg │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ ├── green │ │ │ └── pace-theme-minimal.css │ │ ├── iconfont.css │ │ └── swiper.min.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ │ ├── image │ │ ├── 7d.jpg │ │ ├── card.png │ │ ├── close.png │ │ ├── donate.png │ │ ├── home-banner.jpg │ │ ├── hua.png │ │ ├── ji.png │ │ ├── login-logo-2.png │ │ ├── login-logo.psd │ │ ├── login_bg.png │ │ ├── mall-logo.gif │ │ ├── new-bee-logo-3.png │ │ ├── new-bee.gif │ │ ├── new-bee2.gif │ │ ├── null-content.png │ │ ├── pay │ │ │ ├── alipay_logo.jpg │ │ │ ├── payOnline_gdyh.png │ │ │ ├── payOnline_gfyh.png │ │ │ ├── payOnline_gsyh.png │ │ │ ├── payOnline_jiangsshuyh.png │ │ │ ├── payOnline_jsyh.png │ │ │ ├── payOnline_jtyh.png │ │ │ ├── payOnline_nyyh.png │ │ │ ├── payOnline_pufa.png │ │ │ ├── payOnline_shncsyyh.png │ │ │ ├── payOnline_xyyh.png │ │ │ ├── payOnline_youzheng.png │ │ │ ├── payOnline_zfb.png │ │ │ ├── payOnline_zgyh.png │ │ │ ├── payOnline_zsyh.png │ │ │ ├── payOnline_zxyh.png │ │ │ ├── scan-alipay.png │ │ │ ├── scan-wx.png │ │ │ ├── unionpay.png │ │ │ ├── wave-repeat.png │ │ │ ├── weixinpay.png │ │ │ ├── wx_logo.jpg │ │ │ └── wxpay_qrcode.png │ │ ├── right-@1x.png │ │ ├── search-cart.png │ │ ├── search.png │ │ ├── search │ │ │ └── right-@1x.png │ │ ├── small-circle.png │ │ ├── sub_banner │ │ │ ├── air.jpg │ │ │ ├── baby-car.jpg │ │ │ ├── headphones.jpg │ │ │ ├── hot1.png │ │ │ ├── hot2.jpg │ │ │ ├── hot3.jpg │ │ │ ├── hot4.jpg │ │ │ ├── m6.jpg │ │ │ ├── pc.jpg │ │ │ ├── r1.jpg │ │ │ ├── r2.jpg │ │ │ ├── r3.jpg │ │ │ ├── r4.jpg │ │ │ ├── r5.jpg │ │ │ └── r6.jpg │ │ ├── swiper │ │ │ ├── banner01.jpg │ │ │ ├── banner02.jpg │ │ │ └── banner03.jpg │ │ ├── tel.png │ │ └── wx-mp-code.png │ │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── detail.js │ │ ├── index.js │ │ ├── jquery.countdown.min.js │ │ ├── pace.min.js │ │ ├── search.js │ │ ├── seckill.js │ │ ├── swiper.min.js │ │ └── tianai │ │ │ └── captcha.js │ │ └── styles │ │ ├── addresses.css │ │ ├── cart.css │ │ ├── coupon.css │ │ ├── detail.css │ │ ├── header.css │ │ ├── index.css │ │ ├── login.css │ │ ├── my-orders.css │ │ ├── order-detail.css │ │ ├── order-settle.css │ │ ├── pay-select.css │ │ ├── pay.css │ │ ├── personal.css │ │ └── search.css │ └── templates │ ├── admin │ ├── carousels │ │ └── carousels.html │ ├── category │ │ └── category.html │ ├── coupon │ │ └── coupon.html │ ├── footer.html │ ├── goods │ │ ├── add-edit.html │ │ └── goods.html │ ├── header.html │ ├── index.html │ ├── indexConfigs │ │ └── index-configs.html │ ├── login.html │ ├── member │ │ └── member.html │ ├── order │ │ └── order.html │ ├── profile │ │ └── profile.html │ ├── seckill │ │ └── seckill.html │ ├── sidebar.html │ └── statistics │ │ └── statistics.html │ ├── error │ ├── 400.html │ ├── 404.html │ ├── 500.html │ └── error.html │ └── mall │ ├── alipay.html │ ├── coupon.html │ ├── detail.html │ ├── footer.html │ ├── header.html │ ├── index.html │ ├── login.html │ ├── login2.html │ ├── my-orders.html │ ├── order-detail.html │ ├── order-settle.html │ ├── pay-select.html │ ├── personal-sidebar.html │ ├── personal.html │ ├── register.html │ ├── register2.html │ ├── search.html │ ├── seckill-detail.html │ ├── seckill-list.html │ ├── shop-cat.html │ └── wxpay.html └── test └── java └── ltd └── newbee └── mall ├── CdkTest.java ├── ContentRecommendation.java ├── JedisSearchTest.java ├── RecommendTest.java ├── RedisLockTest.java └── SeckillExecteTest.java /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=Java 2 | *.css linguist-language=Java 3 | *.html linguist-language=Java 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ 26 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # 该镜像需要依赖的基础镜像 2 | FROM ibm-semeru-runtimes:open-21-jdk 3 | # 指定维护者的名字 4 | MAINTAINER wayn111 5 | WORKDIR /root/workspace 6 | # 将当前目录下的jar包复制到docker容器的/目录下 7 | ADD target/newbee-mall.jar /opt/newbeemall/newbee-mall.jar 8 | # 运行过程中创建一个newbee-mall.jar文件 9 | RUN bash -c 'touch /opt/newbeemall/newbee-mall.jar' 10 | # 声明服务运行在8000端口 11 | EXPOSE 84 12 | # 指定docker容器启动时运行jar包 13 | ENTRYPOINT ["sh", "-c", "exec java -jar -Xms512m -Xmx512m /opt/newbeemall/newbee-mall.jar"] 14 | 15 | -------------------------------------------------------------------------------- /images/froala编辑器.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/images/froala编辑器.png -------------------------------------------------------------------------------- /images/itemCF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/images/itemCF.png -------------------------------------------------------------------------------- /images/userCF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/images/userCF.png -------------------------------------------------------------------------------- /images/wx-mp-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/images/wx-mp-code.png -------------------------------------------------------------------------------- /images/后台演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/images/后台演示.gif -------------------------------------------------------------------------------- /images/商城演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/images/商城演示.gif -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/NewBeeMallApplication.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class NewBeeMallApplication { 8 | public static void main(String[] args) { 9 | SpringApplication.run(NewBeeMallApplication.class, args); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/annotation/RepeatSubmit.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.annotation; 2 | 3 | import java.lang.annotation.*; 4 | 5 | /** 6 | * 自定义注解防止表单重复提交 7 | * 8 | */ 9 | @Inherited 10 | @Target(ElementType.METHOD) 11 | @Retention(RetentionPolicy.RUNTIME) 12 | @Documented 13 | public @interface RepeatSubmit { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/config/NewbeeMallConfig.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.config; 2 | 3 | import lombok.Data; 4 | import org.springframework.boot.context.properties.ConfigurationProperties; 5 | import org.springframework.context.annotation.Configuration; 6 | 7 | @Data 8 | @Configuration 9 | @ConfigurationProperties(prefix = "newbee-mall") 10 | public class NewbeeMallConfig { 11 | 12 | private String serverUrl; 13 | private Boolean viewModel; 14 | private String viewModelTip; 15 | private String uploadDir; 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/dao/AdminUserDao.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.dao; 2 | 3 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 4 | import ltd.newbee.mall.core.entity.AdminUser; 5 | 6 | public interface AdminUserDao extends BaseMapper { 7 | } 8 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/dao/CarouselsDao.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.dao; 2 | 3 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 4 | import com.baomidou.mybatisplus.core.metadata.IPage; 5 | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; 6 | import ltd.newbee.mall.core.entity.Carousels; 7 | 8 | public interface CarouselsDao extends BaseMapper { 9 | 10 | IPage selectListPage(Page page, Carousels carousels); 11 | } 12 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/dao/CdkInfoDao.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.dao; 2 | 3 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 4 | import ltd.newbee.mall.core.entity.AdminUser; 5 | import ltd.newbee.mall.core.entity.CdkInfo; 6 | 7 | public interface CdkInfoDao extends BaseMapper { 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/dao/CouponUserDao.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.dao; 2 | 3 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 4 | import ltd.newbee.mall.core.entity.CouponUser; 5 | 6 | import java.util.List; 7 | 8 | public interface CouponUserDao extends BaseMapper { 9 | List selectAvailableList(Long userId); 10 | } 11 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/dao/GoodsCategoryDao.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.dao; 2 | 3 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 4 | import com.baomidou.mybatisplus.core.metadata.IPage; 5 | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; 6 | import ltd.newbee.mall.core.entity.GoodsCategory; 7 | 8 | public interface GoodsCategoryDao extends BaseMapper { 9 | 10 | IPage selectListPage(Page page, GoodsCategory goodsCategory); 11 | } 12 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/dao/MallUserDao.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.dao; 2 | 3 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 4 | import com.baomidou.mybatisplus.core.metadata.IPage; 5 | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; 6 | import ltd.newbee.mall.core.entity.MallUser; 7 | 8 | public interface MallUserDao extends BaseMapper { 9 | 10 | IPage selectListPage(Page page, MallUser mallUser); 11 | } 12 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/dao/OrderItemDao.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.dao; 2 | 3 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 4 | import ltd.newbee.mall.core.entity.OrderItem; 5 | import ltd.newbee.mall.core.entity.vo.OrderItemVO; 6 | 7 | import java.util.List; 8 | 9 | 10 | public interface OrderItemDao extends BaseMapper { 11 | List selectByOrderId(Long orderId); 12 | 13 | List selectByOrderIds(List orderIds); 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/dao/SeckillSuccessDao.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.dao; 2 | 3 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 4 | import ltd.newbee.mall.core.entity.SeckillSuccess; 5 | 6 | public interface SeckillSuccessDao extends BaseMapper { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/dao/ShopCatDao.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.dao; 2 | 3 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 4 | import com.baomidou.mybatisplus.core.metadata.IPage; 5 | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; 6 | import ltd.newbee.mall.core.entity.ShopCat; 7 | 8 | public interface ShopCatDao extends BaseMapper { 9 | 10 | IPage selectListPage(Page page, ShopCat shopCat); 11 | 12 | ShopCat selectByUserIdAndGoodsId(Long userId, Long goodsId); 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/entity/vo/DayTransactionAmountVO.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.entity.vo; 2 | 3 | import lombok.Data; 4 | 5 | import java.io.Serial; 6 | import java.io.Serializable; 7 | 8 | /** 9 | * 日交易金额VO对象 10 | */ 11 | @Data 12 | public class DayTransactionAmountVO implements Serializable { 13 | 14 | @Serial 15 | private static final long serialVersionUID = -961725122511119233L; 16 | private String days; 17 | 18 | private Long totalPrice; 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/entity/vo/SeckillSuccessVO.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.entity.vo; 2 | 3 | import lombok.Data; 4 | 5 | import java.io.Serial; 6 | import java.io.Serializable; 7 | 8 | /** 9 | * 用户秒杀成功VO 10 | */ 11 | @Data 12 | public class SeckillSuccessVO implements Serializable { 13 | 14 | @Serial 15 | private static final long serialVersionUID = 8083900795250896233L; 16 | private Long seckillSuccessId; 17 | 18 | private String md5; 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/service/AdminUserService.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.service; 2 | 3 | import com.baomidou.mybatisplus.extension.service.IService; 4 | import ltd.newbee.mall.core.entity.AdminUser; 5 | 6 | public interface AdminUserService extends IService { 7 | } 8 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/service/CdkInfoService.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.service; 2 | 3 | import com.baomidou.mybatisplus.extension.service.IService; 4 | import ltd.newbee.mall.core.entity.AdminUser; 5 | import ltd.newbee.mall.core.entity.CdkInfo; 6 | 7 | public interface CdkInfoService extends IService { 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/service/OrderItemService.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.service; 2 | 3 | import com.baomidou.mybatisplus.extension.service.IService; 4 | import ltd.newbee.mall.core.entity.OrderItem; 5 | 6 | import java.util.List; 7 | 8 | public interface OrderItemService extends IService { 9 | List selectItemsByOrderId(Long orderId); 10 | } 11 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/service/SeckillSuccessService.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.service; 2 | 3 | import com.baomidou.mybatisplus.extension.service.IService; 4 | import ltd.newbee.mall.core.entity.SeckillSuccess; 5 | 6 | public interface SeckillSuccessService extends IService { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/service/impl/AdminUserServiceImpl.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.service.impl; 2 | 3 | 4 | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; 5 | import ltd.newbee.mall.core.dao.AdminUserDao; 6 | import ltd.newbee.mall.core.entity.AdminUser; 7 | import ltd.newbee.mall.core.service.AdminUserService; 8 | import org.springframework.stereotype.Service; 9 | 10 | @Service 11 | public class AdminUserServiceImpl extends ServiceImpl implements AdminUserService { 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/service/impl/CdkInfoServiceImpl.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.service.impl; 2 | 3 | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; 4 | import ltd.newbee.mall.core.dao.CdkInfoDao; 5 | import ltd.newbee.mall.core.entity.CdkInfo; 6 | import ltd.newbee.mall.core.service.CdkInfoService; 7 | import org.springframework.stereotype.Service; 8 | 9 | @Service 10 | public class CdkInfoServiceImpl extends ServiceImpl implements CdkInfoService { 11 | } 12 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/core/service/impl/SeckillSuccessServiceImpl.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.core.service.impl; 2 | 3 | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; 4 | import ltd.newbee.mall.core.dao.SeckillSuccessDao; 5 | import ltd.newbee.mall.core.entity.SeckillSuccess; 6 | import ltd.newbee.mall.core.service.SeckillSuccessService; 7 | import org.springframework.stereotype.Service; 8 | 9 | @Service 10 | public class SeckillSuccessServiceImpl extends ServiceImpl implements SeckillSuccessService { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/mq/RabbitMQConstant.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.mq; 2 | 3 | public class RabbitMQConstant { 4 | public static final String QUEUE_NAME = "NewbeeProOrderDirectQueue"; 5 | public static final String EXCHANGE_NAME = "NewbeeProOrderDirectExchange"; 6 | public static final String ROUTE_NAME = "NewbeeProOrderDirectRouting"; 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/ltd/newbee/mall/recommend/dto/ProductDTO.java: -------------------------------------------------------------------------------- 1 | package ltd.newbee.mall.recommend.dto; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | 7 | @Data 8 | @AllArgsConstructor 9 | @NoArgsConstructor 10 | public class ProductDTO { 11 | 12 | private Long productId; 13 | 14 | private String productName; 15 | 16 | private String productPrice; 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports: -------------------------------------------------------------------------------- 1 | cloud.tianai.captcha.spring.autoconfiguration.ImageCaptchaAutoConfiguration 2 | -------------------------------------------------------------------------------- /src/main/resources/bgimages/48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/bgimages/48.jpg -------------------------------------------------------------------------------- /src/main/resources/bgimages/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/bgimages/a.jpg -------------------------------------------------------------------------------- /src/main/resources/bgimages/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/bgimages/b.jpg -------------------------------------------------------------------------------- /src/main/resources/bgimages/c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/bgimages/c.jpg -------------------------------------------------------------------------------- /src/main/resources/bgimages/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/bgimages/d.jpg -------------------------------------------------------------------------------- /src/main/resources/bgimages/e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/bgimages/e.jpg -------------------------------------------------------------------------------- /src/main/resources/bgimages/g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/bgimages/g.jpg -------------------------------------------------------------------------------- /src/main/resources/bgimages/h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/bgimages/h.jpg -------------------------------------------------------------------------------- /src/main/resources/bgimages/i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/bgimages/i.jpg -------------------------------------------------------------------------------- /src/main/resources/bgimages/j.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/bgimages/j.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/AdminLTELogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/AdminLTELogo.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/default-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/default-150x150.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/favicon.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/icons.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/img-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/img-upload.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/new-bee-logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/new-bee-logo-1.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/new-bee-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/new-bee-logo.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/newbee-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/newbee-logo.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/img/no-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/img/no-img.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/gitbook-plugin-anchorjs/anchor-style.js: -------------------------------------------------------------------------------- 1 | gitbook.events.bind('start', function(e, config) { 2 | anchors.options = config.anchorjs || {}; 3 | }); 4 | 5 | gitbook.events.bind('page.change', function() { 6 | anchors.add('h1,h2,h3,h4,h5'); 7 | }); 8 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/gitbook-plugin-chartjs/style.css: -------------------------------------------------------------------------------- 1 | .chartjs-wrapper canvas { 2 | -webkit-user-select: none; 3 | -moz-user-select: none; 4 | -ms-user-select: none; 5 | user-select: none; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/images/apple-touch-icon-precomposed-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/images/apple-touch-icon-precomposed-152.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/gitbook/images/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/chartjs2/docs/style.css: -------------------------------------------------------------------------------- 1 | a.anchorjs-link { 2 | color: rgba(65, 131, 196, 0.1); 3 | font-weight: 400; 4 | text-decoration: none; 5 | transition: color 100ms ease-out; 6 | z-index: 999; 7 | } 8 | 9 | a.anchorjs-link:hover { 10 | color: rgba(65, 131, 196, 1); 11 | } 12 | 13 | sup { 14 | font-size: 0.75em !important; 15 | } 16 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/font-awesome/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/font-awesome/css/font-awesome.css.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/jquery/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/jquery/core.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/jquery/jquery.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/jquery/jquery.min.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/jquery/jquery.min.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/jquery/jquery.slim.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/esm/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/esm/popper-utils.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/esm/popper-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/esm/popper-utils.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/esm/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/esm/popper-utils.min.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/esm/popper-utils.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/esm/popper-utils.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/esm/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/esm/popper.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/esm/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/esm/popper.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/esm/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/esm/popper.min.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/esm/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/esm/popper.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/popper-utils.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/popper-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/popper-utils.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/popper-utils.min.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/popper-utils.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/popper-utils.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/popper.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/popper.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/popper.min.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/popper.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/umd/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/umd/popper-utils.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/umd/popper-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/umd/popper-utils.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/umd/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/umd/popper-utils.min.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/umd/popper-utils.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/umd/popper-utils.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/umd/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/umd/popper.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/umd/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/umd/popper.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/umd/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/umd/popper.min.js -------------------------------------------------------------------------------- /src/main/resources/static/admin/dist/js/plugins/popper/umd/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/dist/js/plugins/popper/umd/popper.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/froala_editor/License.txt: -------------------------------------------------------------------------------- 1 | Froala WYSIWYG Editor 2 | ================ 3 | 4 | In order to use Froala Editor you have to purchase a license from: https://www.froala.com/wysiwyg-editor/pricing. 5 | For more informations regarding the license please read https://www.froala.com/wysiwyg-editor/terms. 6 | -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/froala_editor/editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/froala_editor/editor.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/froala_editor/img/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/froala_editor/img/photo1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/admin/plugins/jQueryUI/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/admin/plugins/jQueryUI/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/elementor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/instalod.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/space-awesome.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/stack-exchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/tiktok.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/unsplash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/regular/circle-dot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/regular/circle-stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/regular/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/regular/face-meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/regular/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/7.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/a.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/archway.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/arrow-down-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/arrow-left-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/arrow-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/arrow-right-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/arrow-up-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/backward-step.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/bowling-ball.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/chalkboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/chevron-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/chevron-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-chevron-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-chevron-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-dot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-exclamation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-half-stroke.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle-user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/clone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/computer-mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/cross.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/d.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/diamond.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/dice-two.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/divide.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/door-closed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/e.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/ellipsis-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/ellipsis.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/equals.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/exclamation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/face-meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/face-meh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/face-surprise.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/folder-closed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/forward-step.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/gauge-simple.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/greater-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/grip-lines-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/grip-lines.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/i.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/industry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/j.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/l.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/laptop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/left-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/less-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/location-dot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/location-pin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/magnet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/map.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/message.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/mobile-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/mobile-screen-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/mobile-screen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/mound.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/n.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/neuter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/note-sticky.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/o.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/p.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/percent.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/record-vinyl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/shield.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/spoon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/square-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/t.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/table-cells-large.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/table-columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/tablet-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/tablet-screen-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/tag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/tarp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/tent.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/u.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/up-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/user-large.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/wallet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/wand-magic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/whiskey-glass.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/y.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/svgs/solid/z.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/css/fontawesome-free-6.4.0-web/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/mall/css/green/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, you should be editing the file in the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #1baeae; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /src/main/resources/static/mall/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/mall/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/mall/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/mall/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/mall/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/fonts/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/mall/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/fonts/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/mall/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/fonts/iconfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/mall/fonts/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/fonts/iconfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/7d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/7d.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/card.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/close.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/donate.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/home-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/home-banner.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/hua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/hua.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/ji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/ji.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/login-logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/login-logo-2.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/login-logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/login-logo.psd -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/login_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/login_bg.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/mall-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/mall-logo.gif -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/new-bee-logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/new-bee-logo-3.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/new-bee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/new-bee.gif -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/new-bee2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/new-bee2.gif -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/null-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/null-content.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/alipay_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/alipay_logo.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_gdyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_gdyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_gfyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_gfyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_gsyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_gsyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_jiangsshuyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_jiangsshuyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_jsyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_jsyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_jtyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_jtyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_nyyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_nyyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_pufa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_pufa.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_shncsyyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_shncsyyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_xyyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_xyyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_youzheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_youzheng.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_zfb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_zfb.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_zgyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_zgyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_zsyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_zsyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/payOnline_zxyh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/payOnline_zxyh.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/scan-alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/scan-alipay.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/scan-wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/scan-wx.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/unionpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/unionpay.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/wave-repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/wave-repeat.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/weixinpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/weixinpay.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/wx_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/wx_logo.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/pay/wxpay_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/pay/wxpay_qrcode.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/right-@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/right-@1x.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/search-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/search-cart.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/search.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/search/right-@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/search/right-@1x.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/small-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/small-circle.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/air.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/air.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/baby-car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/baby-car.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/headphones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/headphones.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/hot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/hot1.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/hot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/hot2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/hot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/hot3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/hot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/hot4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/m6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/m6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/pc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/pc.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/r1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/r1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/r2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/r2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/r3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/r3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/r4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/r4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/r5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/r5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/sub_banner/r6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/sub_banner/r6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/swiper/banner01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/swiper/banner01.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/swiper/banner02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/swiper/banner02.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/swiper/banner03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/swiper/banner03.jpg -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/tel.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/image/wx-mp-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayn111/newbee-mall-pro/84bf182ae34186eeb16139256bba3283a1dbc722/src/main/resources/static/mall/image/wx-mp-code.png -------------------------------------------------------------------------------- /src/main/resources/static/mall/js/detail.js: -------------------------------------------------------------------------------- 1 | var newbeeSwiper = new Swiper('.swiper-container', { 2 | //设置自动播放 3 | autoplay: { 4 | delay: 3000, 5 | disableOnInteraction: false 6 | }, 7 | //设置无限循环播放 8 | loop: true, 9 | //设置圆点指示器 10 | pagination: { 11 | el: '.swiper-pagination', 12 | }, 13 | //设置上下页按钮 14 | navigation: { 15 | nextEl: '.swiper-button-next', 16 | prevEl: '.swiper-button-prev', 17 | } 18 | }) -------------------------------------------------------------------------------- /src/main/resources/templates/admin/footer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | Copyright © 2014-2019 AdminLTE.io. 4 | All rights reserved. 5 |
6 | newbee-mall-pro version 2.4.3 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /src/main/resources/templates/mall/personal-sidebar.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 9 |
10 |
11 | --------------------------------------------------------------------------------