├── .gitignore ├── .htaccess ├── 404.php ├── 500.php ├── LICENSE ├── README.md ├── account.php ├── admin ├── index.php ├── locations.php ├── product.php └── resources.php ├── announcements.php ├── api ├── getCoins.php ├── getIdleTime.php ├── isIdle.php ├── isStaff.php ├── numServ.php ├── numUser.php ├── topCoin.php └── totalProducts.php ├── assets ├── css │ ├── maps │ │ └── style.css.map │ └── style.css ├── fontawesome-free │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-shims.css │ │ └── v4-shims.min.css │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── fonts │ ├── Assistant │ │ ├── Assistant-Bold.eot │ │ ├── Assistant-Bold.ttf │ │ ├── Assistant-Bold.woff │ │ ├── Assistant-Bold.woff2 │ │ ├── Assistant-ExtraBold.eot │ │ ├── Assistant-ExtraBold.ttf │ │ ├── Assistant-ExtraBold.woff │ │ ├── Assistant-ExtraBold.woff2 │ │ ├── Assistant-ExtraLight.eot │ │ ├── Assistant-ExtraLight.ttf │ │ ├── Assistant-ExtraLight.woff │ │ ├── Assistant-ExtraLight.woff2 │ │ ├── Assistant-Light.eot │ │ ├── Assistant-Light.ttf │ │ ├── Assistant-Light.woff │ │ ├── Assistant-Light.woff2 │ │ ├── Assistant-Regular.eot │ │ ├── Assistant-Regular.ttf │ │ ├── Assistant-Regular.woff │ │ ├── Assistant-Regular.woff2 │ │ ├── Assistant-SemiBold.eot │ │ ├── Assistant-SemiBold.ttf │ │ ├── Assistant-SemiBold.woff │ │ └── Assistant-SemiBold.woff2 │ └── Rubik │ │ ├── Rubik-Black.ttf │ │ ├── Rubik-Bold.ttf │ │ ├── Rubik-Light.ttf │ │ ├── Rubik-Medium.ttf │ │ └── Rubik-Regular.ttf ├── images │ ├── auth │ │ ├── Login_bg.jpg │ │ ├── Login_bg2.jpg │ │ ├── lockscreen-bg.jpg │ │ ├── login-bg.jpg │ │ └── register-bg.jpg │ ├── carousel │ │ ├── banner_1.jpg │ │ ├── banner_10.jpg │ │ ├── banner_11.jpg │ │ ├── banner_12.jpg │ │ ├── banner_2.jpg │ │ ├── banner_3.jpg │ │ ├── banner_4.jpg │ │ ├── banner_5.jpg │ │ ├── banner_6.jpg │ │ ├── banner_7.jpg │ │ ├── banner_8.jpg │ │ └── banner_9.jpg │ ├── dashboard │ │ ├── Group126@2x.png │ │ ├── Img_5.jpg │ │ ├── Rectangle.jpg │ │ ├── circle.png │ │ ├── circle.svg │ │ ├── img_1.jpg │ │ ├── img_2.jpg │ │ ├── img_3.jpg │ │ ├── img_4.jpg │ │ └── img_6.jpg │ ├── faces-clipart │ │ ├── pic-1.png │ │ ├── pic-2.png │ │ ├── pic-3.png │ │ ├── pic-4.png │ │ └── pic-8.png │ ├── faces │ │ ├── face1.jpg │ │ ├── face10.jpg │ │ ├── face11.jpg │ │ ├── face12.jpg │ │ ├── face13.jpg │ │ ├── face14.jpg │ │ ├── face15.jpg │ │ ├── face16.jpg │ │ ├── face17.jpg │ │ ├── face18.jpg │ │ ├── face19.jpg │ │ ├── face2.jpg │ │ ├── face20.jpg │ │ ├── face21.jpg │ │ ├── face22.jpg │ │ ├── face23.jpg │ │ ├── face24.jpg │ │ ├── face25.jpg │ │ ├── face26.jpg │ │ ├── face27.jpg │ │ ├── face3.jpg │ │ ├── face4.jpg │ │ ├── face5.jpg │ │ ├── face6.jpg │ │ ├── face7.jpg │ │ ├── face8.jpg │ │ └── face9.jpg │ ├── favicon.png │ ├── file-icons │ │ ├── 64 │ │ │ ├── 001-interface-1.png │ │ │ ├── 002-tool.png │ │ │ ├── 003-interface.png │ │ │ ├── 004-folder-1.png │ │ │ ├── 005-database.png │ │ │ ├── 006-record.png │ │ │ ├── 007-folder.png │ │ │ └── 008-archive.png │ │ ├── 128 │ │ │ ├── 001-interface-1.png │ │ │ ├── 002-tool.png │ │ │ ├── 003-interface.png │ │ │ ├── 004-folder-1.png │ │ │ ├── 005-database.png │ │ │ ├── 006-record.png │ │ │ ├── 007-folder.png │ │ │ └── 008-archive.png │ │ ├── 256 │ │ │ ├── 001-interface-1.png │ │ │ ├── 002-tool.png │ │ │ ├── 003-interface.png │ │ │ ├── 004-folder-1.png │ │ │ ├── 005-database.png │ │ │ ├── 006-record.png │ │ │ ├── 007-folder.png │ │ │ └── 008-archive.png │ │ └── 512 │ │ │ ├── 001-interface-1.png │ │ │ ├── 002-tool.png │ │ │ ├── 003-interface.png │ │ │ ├── 004-folder-1.png │ │ │ ├── 005-database.png │ │ │ ├── 006-record.png │ │ │ ├── 007-folder.png │ │ │ └── 008-archive.png │ ├── lightbox │ │ ├── play-button.png │ │ ├── thumb-v-v-1.jpg │ │ ├── thumb-v-v-2.jpg │ │ ├── thumb-v-y-1.jpg │ │ └── thumb-v-y-2.jpg │ ├── logo-mini.svg │ ├── logo.svg │ ├── samples │ │ ├── 1280x768 │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── 300x300 │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── Banner_bg.jpg │ │ ├── Login_bg.jpg │ │ ├── Login_bg2.jpg │ │ ├── Mac.png │ │ ├── angular-4.png │ │ ├── bootstrap-stack.png │ │ ├── charts.png │ │ ├── dashboard.png │ │ ├── e-commerce.png │ │ ├── editors.png │ │ ├── email.png │ │ ├── forms.png │ │ ├── html5.png │ │ ├── lockscreen-bg.jpg │ │ ├── modal.png │ │ ├── popup.png │ │ └── widgets.png │ ├── screenshots │ │ ├── classic-horizontal.jpg │ │ ├── classic-vertical.jpg │ │ ├── modern-horizontal.jpg │ │ ├── modern-vertical.jpg │ │ └── tinted-sidebar.jpg │ └── sprites │ │ ├── blue.png │ │ ├── dark.png │ │ ├── flag.png │ │ ├── green.png │ │ ├── jsgrid-icons.png │ │ ├── logo-mini.svg │ │ ├── red.png │ │ └── yellow.png ├── js │ ├── ace.js │ ├── alerts.js │ ├── avgrund.js │ ├── bootstrap-table.js │ ├── bt-maxLength.js │ ├── c3.js │ ├── calendar.js │ ├── chart.js │ ├── chartist.js │ ├── circle-progress.js │ ├── clipboard.js │ ├── codeEditor.js │ ├── codemirror.js │ ├── context-menu.js │ ├── cropper.js │ ├── dashboard.js │ ├── data-table.js │ ├── db.js │ ├── desktop-notification.js │ ├── dragula.js │ ├── dropify.js │ ├── dropzone.js │ ├── editorDemo.js │ ├── file-upload.js │ ├── flot-chart.js │ ├── form-addons.js │ ├── form-repeater.js │ ├── form-validation.js │ ├── formpickers.js │ ├── google-charts.js │ ├── google-maps.js │ ├── hoverable-collapse.js │ ├── iCheck.js │ ├── inputmask.js │ ├── ion-range-slider.js │ ├── jq.tablesort.js │ ├── jquery-file-upload.js │ ├── js-grid.js │ ├── just-gage.js │ ├── light-gallery.js │ ├── listify.js │ ├── mapael.js │ ├── mapael_example_1.js │ ├── mapael_example_2.js │ ├── maps.js │ ├── misc.js │ ├── modal-demo.js │ ├── morris.js │ ├── no-ui-slider.js │ ├── off-canvas.js │ ├── owl-carousel.js │ ├── paginate.js │ ├── popover.js │ ├── profile-demo.js │ ├── progress-bar.js │ ├── rickshaw.js │ ├── select2.js │ ├── settings.js │ ├── sparkline.js │ ├── tablesorter.js │ ├── tabs.js │ ├── tight-grid.js │ ├── timer.js │ ├── toastDemo.js │ ├── todolist.js │ ├── tooltips.js │ ├── typeahead.js │ ├── widgets.js │ ├── wizard.js │ └── x-editable.js ├── scss │ ├── _layouts.scss │ ├── _navbar.scss │ ├── _sidebar.scss │ ├── _variables.scss │ ├── components │ │ ├── _background.scss │ │ ├── _badges.scss │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _checkbox-radio.scss │ │ ├── _demo.scss │ │ ├── _dropdown.scss │ │ ├── _fonts.scss │ │ ├── _footer.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _icons.scss │ │ ├── _misc.scss │ │ ├── _preview.scss │ │ ├── _reset.scss │ │ ├── _tables.scss │ │ ├── _tabs.scss │ │ ├── _todo-list.scss │ │ ├── _typography.scss │ │ ├── _utilities.scss │ │ ├── _widget-grid.scss │ │ ├── landing-screens │ │ │ └── _auth.scss │ │ ├── loaders │ │ │ ├── _bar-loader.scss │ │ │ ├── _circle-loader.scss │ │ │ ├── _colored-balls.scss │ │ │ ├── _dot-opacity-loader.scss │ │ │ ├── _flip-square-loader.scss │ │ │ ├── _glowing-ball.scss │ │ │ ├── _jumping-dots-loader.scss │ │ │ ├── _loaders.scss │ │ │ ├── _moving-square-loader.scss │ │ │ ├── _pixel-loader.scss │ │ │ ├── _square-box.scss │ │ │ ├── _square-path-loader.scss │ │ │ └── _variables.scss │ │ ├── mixins │ │ │ ├── _animation.scss │ │ │ ├── _background.scss │ │ │ ├── _badges.scss │ │ │ ├── _blockqoute.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _misc.scss │ │ │ ├── _no-ui-slider.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popovers.scss │ │ │ └── _tooltips.scss │ │ └── plugin-overrides │ │ │ ├── _ace.scss │ │ │ ├── _avgrund.scss │ │ │ ├── _c3.scss │ │ │ ├── _chartist.scss │ │ │ ├── _codemirror.scss │ │ │ ├── _colcade.scss │ │ │ ├── _colorpicker.scss │ │ │ ├── _context-menu.scss │ │ │ ├── _data-tables.scss │ │ │ ├── _datepicker.scss │ │ │ ├── _dropify.scss │ │ │ ├── _dropzone.scss │ │ │ ├── _flot-chart.scss │ │ │ ├── _full-calendar.scss │ │ │ ├── _google-charts.scss │ │ │ ├── _icheck.scss │ │ │ ├── _jquery-file-upload.scss │ │ │ ├── _js-grid.scss │ │ │ ├── _justguage.scss │ │ │ ├── _jvectormap.scss │ │ │ ├── _light-gallery.scss │ │ │ ├── _listify.scss │ │ │ ├── _morris.scss │ │ │ ├── _no-ui-slider.scss │ │ │ ├── _owl-carousel.scss │ │ │ ├── _progressbar-js.scss │ │ │ ├── _pws-tabs.scss │ │ │ ├── _quill.scss │ │ │ ├── _rating.scss │ │ │ ├── _select2.scss │ │ │ ├── _summernote.scss │ │ │ ├── _sweet-alert.scss │ │ │ ├── _switchery.scss │ │ │ ├── _tags.scss │ │ │ ├── _tinymce.scss │ │ │ ├── _toast.scss │ │ │ ├── _typeahead.scss │ │ │ ├── _wizard.scss │ │ │ ├── _wysieditor.scss │ │ │ └── _x-editable.scss │ ├── style.scss │ └── vertical │ │ └── _vertical-wrapper.scss └── vendors │ ├── chart.js │ └── Chart.min.js │ ├── codemirror │ ├── ambiance.css │ ├── codemirror.css │ ├── codemirror.js │ ├── javascript.js │ └── shell.js │ ├── css │ └── vendor.bundle.base.css │ ├── flag-icon-css │ ├── css │ │ └── flag-icon.min.css │ └── flags │ │ ├── 1x1 │ │ ├── ad.svg │ │ ├── ae.svg │ │ ├── af.svg │ │ ├── ag.svg │ │ ├── ai.svg │ │ ├── al.svg │ │ ├── am.svg │ │ ├── ao.svg │ │ ├── aq.svg │ │ ├── ar.svg │ │ ├── as.svg │ │ ├── at.svg │ │ ├── au.svg │ │ ├── aw.svg │ │ ├── ax.svg │ │ ├── az.svg │ │ ├── ba.svg │ │ ├── bb.svg │ │ ├── bd.svg │ │ ├── be.svg │ │ ├── bf.svg │ │ ├── bg.svg │ │ ├── bh.svg │ │ ├── bi.svg │ │ ├── bj.svg │ │ ├── bl.svg │ │ ├── bm.svg │ │ ├── bn.svg │ │ ├── bo.svg │ │ ├── bq.svg │ │ ├── br.svg │ │ ├── bs.svg │ │ ├── bt.svg │ │ ├── bv.svg │ │ ├── bw.svg │ │ ├── by.svg │ │ ├── bz.svg │ │ ├── ca.svg │ │ ├── cc.svg │ │ ├── cd.svg │ │ ├── cf.svg │ │ ├── cg.svg │ │ ├── ch.svg │ │ ├── ci.svg │ │ ├── ck.svg │ │ ├── cl.svg │ │ ├── cm.svg │ │ ├── cn.svg │ │ ├── co.svg │ │ ├── cr.svg │ │ ├── cu.svg │ │ ├── cv.svg │ │ ├── cw.svg │ │ ├── cx.svg │ │ ├── cy.svg │ │ ├── cz.svg │ │ ├── de.svg │ │ ├── dj.svg │ │ ├── dk.svg │ │ ├── dm.svg │ │ ├── do.svg │ │ ├── dz.svg │ │ ├── ec.svg │ │ ├── ee.svg │ │ ├── eg.svg │ │ ├── eh.svg │ │ ├── er.svg │ │ ├── es-ca.svg │ │ ├── es.svg │ │ ├── et.svg │ │ ├── eu.svg │ │ ├── fi.svg │ │ ├── fj.svg │ │ ├── fk.svg │ │ ├── fm.svg │ │ ├── fo.svg │ │ ├── fr.svg │ │ ├── ga.svg │ │ ├── gb-eng.svg │ │ ├── gb-nir.svg │ │ ├── gb-sct.svg │ │ ├── gb-wls.svg │ │ ├── gb.svg │ │ ├── gd.svg │ │ ├── ge.svg │ │ ├── gf.svg │ │ ├── gg.svg │ │ ├── gh.svg │ │ ├── gi.svg │ │ ├── gl.svg │ │ ├── gm.svg │ │ ├── gn.svg │ │ ├── gp.svg │ │ ├── gq.svg │ │ ├── gr.svg │ │ ├── gs.svg │ │ ├── gt.svg │ │ ├── gu.svg │ │ ├── gw.svg │ │ ├── gy.svg │ │ ├── hk.svg │ │ ├── hm.svg │ │ ├── hn.svg │ │ ├── hr.svg │ │ ├── ht.svg │ │ ├── hu.svg │ │ ├── id.svg │ │ ├── ie.svg │ │ ├── il.svg │ │ ├── im.svg │ │ ├── in.svg │ │ ├── io.svg │ │ ├── iq.svg │ │ ├── ir.svg │ │ ├── is.svg │ │ ├── it.svg │ │ ├── je.svg │ │ ├── jm.svg │ │ ├── jo.svg │ │ ├── jp.svg │ │ ├── ke.svg │ │ ├── kg.svg │ │ ├── kh.svg │ │ ├── ki.svg │ │ ├── km.svg │ │ ├── kn.svg │ │ ├── kp.svg │ │ ├── kr.svg │ │ ├── kw.svg │ │ ├── ky.svg │ │ ├── kz.svg │ │ ├── la.svg │ │ ├── lb.svg │ │ ├── lc.svg │ │ ├── li.svg │ │ ├── lk.svg │ │ ├── lr.svg │ │ ├── ls.svg │ │ ├── lt.svg │ │ ├── lu.svg │ │ ├── lv.svg │ │ ├── ly.svg │ │ ├── ma.svg │ │ ├── mc.svg │ │ ├── md.svg │ │ ├── me.svg │ │ ├── mf.svg │ │ ├── mg.svg │ │ ├── mh.svg │ │ ├── mk.svg │ │ ├── ml.svg │ │ ├── mm.svg │ │ ├── mn.svg │ │ ├── mo.svg │ │ ├── mp.svg │ │ ├── mq.svg │ │ ├── mr.svg │ │ ├── ms.svg │ │ ├── mt.svg │ │ ├── mu.svg │ │ ├── mv.svg │ │ ├── mw.svg │ │ ├── mx.svg │ │ ├── my.svg │ │ ├── mz.svg │ │ ├── na.svg │ │ ├── nc.svg │ │ ├── ne.svg │ │ ├── nf.svg │ │ ├── ng.svg │ │ ├── ni.svg │ │ ├── nl.svg │ │ ├── no.svg │ │ ├── np.svg │ │ ├── nr.svg │ │ ├── nu.svg │ │ ├── nz.svg │ │ ├── om.svg │ │ ├── pa.svg │ │ ├── pe.svg │ │ ├── pf.svg │ │ ├── pg.svg │ │ ├── ph.svg │ │ ├── pk.svg │ │ ├── pl.svg │ │ ├── pm.svg │ │ ├── pn.svg │ │ ├── pr.svg │ │ ├── ps.svg │ │ ├── pt.svg │ │ ├── pw.svg │ │ ├── py.svg │ │ ├── qa.svg │ │ ├── re.svg │ │ ├── ro.svg │ │ ├── rs.svg │ │ ├── ru.svg │ │ ├── rw.svg │ │ ├── sa.svg │ │ ├── sb.svg │ │ ├── sc.svg │ │ ├── sd.svg │ │ ├── se.svg │ │ ├── sg.svg │ │ ├── sh.svg │ │ ├── si.svg │ │ ├── sj.svg │ │ ├── sk.svg │ │ ├── sl.svg │ │ ├── sm.svg │ │ ├── sn.svg │ │ ├── so.svg │ │ ├── sr.svg │ │ ├── ss.svg │ │ ├── st.svg │ │ ├── sv.svg │ │ ├── sx.svg │ │ ├── sy.svg │ │ ├── sz.svg │ │ ├── tc.svg │ │ ├── td.svg │ │ ├── tf.svg │ │ ├── tg.svg │ │ ├── th.svg │ │ ├── tj.svg │ │ ├── tk.svg │ │ ├── tl.svg │ │ ├── tm.svg │ │ ├── tn.svg │ │ ├── to.svg │ │ ├── tr.svg │ │ ├── tt.svg │ │ ├── tv.svg │ │ ├── tw.svg │ │ ├── tz.svg │ │ ├── ua.svg │ │ ├── ug.svg │ │ ├── um.svg │ │ ├── un.svg │ │ ├── us.svg │ │ ├── uy.svg │ │ ├── uz.svg │ │ ├── va.svg │ │ ├── vc.svg │ │ ├── ve.svg │ │ ├── vg.svg │ │ ├── vi.svg │ │ ├── vn.svg │ │ ├── vu.svg │ │ ├── wf.svg │ │ ├── ws.svg │ │ ├── xk.svg │ │ ├── ye.svg │ │ ├── yt.svg │ │ ├── za.svg │ │ ├── zm.svg │ │ └── zw.svg │ │ └── 4x3 │ │ ├── ad.svg │ │ ├── ae.svg │ │ ├── af.svg │ │ ├── ag.svg │ │ ├── ai.svg │ │ ├── al.svg │ │ ├── am.svg │ │ ├── ao.svg │ │ ├── aq.svg │ │ ├── ar.svg │ │ ├── as.svg │ │ ├── at.svg │ │ ├── au.svg │ │ ├── aw.svg │ │ ├── ax.svg │ │ ├── az.svg │ │ ├── ba.svg │ │ ├── bb.svg │ │ ├── bd.svg │ │ ├── be.svg │ │ ├── bf.svg │ │ ├── bg.svg │ │ ├── bh.svg │ │ ├── bi.svg │ │ ├── bj.svg │ │ ├── bl.svg │ │ ├── bm.svg │ │ ├── bn.svg │ │ ├── bo.svg │ │ ├── bq.svg │ │ ├── br.svg │ │ ├── bs.svg │ │ ├── bt.svg │ │ ├── bv.svg │ │ ├── bw.svg │ │ ├── by.svg │ │ ├── bz.svg │ │ ├── ca.svg │ │ ├── cc.svg │ │ ├── cd.svg │ │ ├── cf.svg │ │ ├── cg.svg │ │ ├── ch.svg │ │ ├── ci.svg │ │ ├── ck.svg │ │ ├── cl.svg │ │ ├── cm.svg │ │ ├── cn.svg │ │ ├── co.svg │ │ ├── cr.svg │ │ ├── cu.svg │ │ ├── cv.svg │ │ ├── cw.svg │ │ ├── cx.svg │ │ ├── cy.svg │ │ ├── cz.svg │ │ ├── de.svg │ │ ├── dj.svg │ │ ├── dk.svg │ │ ├── dm.svg │ │ ├── do.svg │ │ ├── dz.svg │ │ ├── ec.svg │ │ ├── ee.svg │ │ ├── eg.svg │ │ ├── eh.svg │ │ ├── er.svg │ │ ├── es-ca.svg │ │ ├── es.svg │ │ ├── et.svg │ │ ├── eu.svg │ │ ├── fi.svg │ │ ├── fj.svg │ │ ├── fk.svg │ │ ├── fm.svg │ │ ├── fo.svg │ │ ├── fr.svg │ │ ├── ga.svg │ │ ├── gb-eng.svg │ │ ├── gb-nir.svg │ │ ├── gb-sct.svg │ │ ├── gb-wls.svg │ │ ├── gb.svg │ │ ├── gd.svg │ │ ├── ge.svg │ │ ├── gf.svg │ │ ├── gg.svg │ │ ├── gh.svg │ │ ├── gi.svg │ │ ├── gl.svg │ │ ├── gm.svg │ │ ├── gn.svg │ │ ├── gp.svg │ │ ├── gq.svg │ │ ├── gr.svg │ │ ├── gs.svg │ │ ├── gt.svg │ │ ├── gu.svg │ │ ├── gw.svg │ │ ├── gy.svg │ │ ├── hk.svg │ │ ├── hm.svg │ │ ├── hn.svg │ │ ├── hr.svg │ │ ├── ht.svg │ │ ├── hu.svg │ │ ├── id.svg │ │ ├── ie.svg │ │ ├── il.svg │ │ ├── im.svg │ │ ├── in.svg │ │ ├── io.svg │ │ ├── iq.svg │ │ ├── ir.svg │ │ ├── is.svg │ │ ├── it.svg │ │ ├── je.svg │ │ ├── jm.svg │ │ ├── jo.svg │ │ ├── jp.svg │ │ ├── ke.svg │ │ ├── kg.svg │ │ ├── kh.svg │ │ ├── ki.svg │ │ ├── km.svg │ │ ├── kn.svg │ │ ├── kp.svg │ │ ├── kr.svg │ │ ├── kw.svg │ │ ├── ky.svg │ │ ├── kz.svg │ │ ├── la.svg │ │ ├── lb.svg │ │ ├── lc.svg │ │ ├── li.svg │ │ ├── lk.svg │ │ ├── lr.svg │ │ ├── ls.svg │ │ ├── lt.svg │ │ ├── lu.svg │ │ ├── lv.svg │ │ ├── ly.svg │ │ ├── ma.svg │ │ ├── mc.svg │ │ ├── md.svg │ │ ├── me.svg │ │ ├── mf.svg │ │ ├── mg.svg │ │ ├── mh.svg │ │ ├── mk.svg │ │ ├── ml.svg │ │ ├── mm.svg │ │ ├── mn.svg │ │ ├── mo.svg │ │ ├── mp.svg │ │ ├── mq.svg │ │ ├── mr.svg │ │ ├── ms.svg │ │ ├── mt.svg │ │ ├── mu.svg │ │ ├── mv.svg │ │ ├── mw.svg │ │ ├── mx.svg │ │ ├── my.svg │ │ ├── mz.svg │ │ ├── na.svg │ │ ├── nc.svg │ │ ├── ne.svg │ │ ├── nf.svg │ │ ├── ng.svg │ │ ├── ni.svg │ │ ├── nl.svg │ │ ├── no.svg │ │ ├── np.svg │ │ ├── nr.svg │ │ ├── nu.svg │ │ ├── nz.svg │ │ ├── om.svg │ │ ├── pa.svg │ │ ├── pe.svg │ │ ├── pf.svg │ │ ├── pg.svg │ │ ├── ph.svg │ │ ├── pk.svg │ │ ├── pl.svg │ │ ├── pm.svg │ │ ├── pn.svg │ │ ├── pr.svg │ │ ├── ps.svg │ │ ├── pt.svg │ │ ├── pw.svg │ │ ├── py.svg │ │ ├── qa.svg │ │ ├── re.svg │ │ ├── ro.svg │ │ ├── rs.svg │ │ ├── ru.svg │ │ ├── rw.svg │ │ ├── sa.svg │ │ ├── sb.svg │ │ ├── sc.svg │ │ ├── sd.svg │ │ ├── se.svg │ │ ├── sg.svg │ │ ├── sh.svg │ │ ├── si.svg │ │ ├── sj.svg │ │ ├── sk.svg │ │ ├── sl.svg │ │ ├── sm.svg │ │ ├── sn.svg │ │ ├── so.svg │ │ ├── sr.svg │ │ ├── ss.svg │ │ ├── st.svg │ │ ├── sv.svg │ │ ├── sx.svg │ │ ├── sy.svg │ │ ├── sz.svg │ │ ├── tc.svg │ │ ├── td.svg │ │ ├── tf.svg │ │ ├── tg.svg │ │ ├── th.svg │ │ ├── tj.svg │ │ ├── tk.svg │ │ ├── tl.svg │ │ ├── tm.svg │ │ ├── tn.svg │ │ ├── to.svg │ │ ├── tr.svg │ │ ├── tt.svg │ │ ├── tv.svg │ │ ├── tw.svg │ │ ├── tz.svg │ │ ├── ua.svg │ │ ├── ug.svg │ │ ├── um.svg │ │ ├── un.svg │ │ ├── us.svg │ │ ├── uy.svg │ │ ├── uz.svg │ │ ├── va.svg │ │ ├── vc.svg │ │ ├── ve.svg │ │ ├── vg.svg │ │ ├── vi.svg │ │ ├── vn.svg │ │ ├── vu.svg │ │ ├── wf.svg │ │ ├── ws.svg │ │ ├── xk.svg │ │ ├── ye.svg │ │ ├── yt.svg │ │ ├── za.svg │ │ ├── zm.svg │ │ └── zw.svg │ ├── js │ ├── bootstrap.min.js.map │ └── vendor.bundle.base.js │ ├── jvectormap │ ├── jquery-jvectormap-world-mill-en.js │ ├── jquery-jvectormap.css │ └── jquery-jvectormap.min.js │ ├── mdi │ ├── css │ │ ├── materialdesignicons.min.css │ │ └── materialdesignicons.min.css.map │ └── fonts │ │ ├── materialdesignicons-webfont.eot │ │ ├── materialdesignicons-webfont.ttf │ │ ├── materialdesignicons-webfont.woff │ │ └── materialdesignicons-webfont.woff2 │ ├── owl-carousel-2 │ ├── owl.carousel.min.css │ ├── owl.carousel.min.js │ ├── owl.theme.default.min.css │ └── owl.video.play.png │ ├── progressbar.js │ └── progressbar.min.js │ ├── pwstabs │ ├── jquery.pwstabs.min.css │ └── jquery.pwstabs.min.js │ ├── select2-bootstrap-theme │ └── select2-bootstrap.min.css │ ├── select2 │ ├── select2.min.css │ └── select2.min.js │ └── typeahead.js │ └── typeahead.bundle.min.js ├── composer.json ├── composer.lock ├── config.php ├── discord.php ├── idle.php ├── inc ├── AccountRegen.php ├── AddProduct.php ├── addcoins.php ├── buy.php ├── coins.php ├── delete.php ├── functions.php └── setcoins.php ├── index.php ├── latestVersion.txt ├── login.php ├── logout.php ├── node_modules ├── .bin │ ├── acorn │ ├── cssesc │ ├── detective │ ├── nanoid │ ├── resolve │ ├── tailwind │ └── tailwindcss ├── @babel │ ├── code-frame │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ ├── helper-validator-identifier │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── identifier.js │ │ │ ├── index.js │ │ │ └── keyword.js │ │ ├── package.json │ │ └── scripts │ │ │ └── generate-identifier-regex.js │ └── highlight │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ └── index.js │ │ ├── node_modules │ │ ├── ansi-styles │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── chalk │ │ │ ├── index.js │ │ │ ├── index.js.flow │ │ │ ├── license │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ ├── templates.js │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── color-convert │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── conversions.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── route.js │ │ ├── color-name │ │ │ ├── .eslintrc.json │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── has-flag │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ └── supports-color │ │ │ ├── browser.js │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ └── package.json ├── @nodelib │ ├── fs.scandir │ │ ├── LICENSE │ │ ├── README.md │ │ ├── out │ │ │ ├── adapters │ │ │ │ ├── fs.d.ts │ │ │ │ └── fs.js │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── providers │ │ │ │ ├── async.d.ts │ │ │ │ ├── async.js │ │ │ │ ├── common.d.ts │ │ │ │ ├── common.js │ │ │ │ ├── sync.d.ts │ │ │ │ └── sync.js │ │ │ ├── settings.d.ts │ │ │ ├── settings.js │ │ │ ├── types │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── utils │ │ │ │ ├── fs.d.ts │ │ │ │ ├── fs.js │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ └── package.json │ ├── fs.stat │ │ ├── LICENSE │ │ ├── README.md │ │ ├── out │ │ │ ├── adapters │ │ │ │ ├── fs.d.ts │ │ │ │ └── fs.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── providers │ │ │ │ ├── async.d.ts │ │ │ │ ├── async.js │ │ │ │ ├── sync.d.ts │ │ │ │ └── sync.js │ │ │ ├── settings.d.ts │ │ │ ├── settings.js │ │ │ └── types │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ └── package.json │ └── fs.walk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── out │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── providers │ │ │ ├── async.d.ts │ │ │ ├── async.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── stream.d.ts │ │ │ ├── stream.js │ │ │ ├── sync.d.ts │ │ │ └── sync.js │ │ ├── readers │ │ │ ├── async.d.ts │ │ │ ├── async.js │ │ │ ├── common.d.ts │ │ │ ├── common.js │ │ │ ├── reader.d.ts │ │ │ ├── reader.js │ │ │ ├── sync.d.ts │ │ │ └── sync.js │ │ ├── settings.d.ts │ │ ├── settings.js │ │ └── types │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json ├── @types │ └── parse-json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ └── package.json ├── acorn-node │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── build.js │ ├── index.js │ ├── lib │ │ ├── bigint │ │ │ └── index.js │ │ ├── class-fields │ │ │ └── index.js │ │ ├── dynamic-import │ │ │ └── index.js │ │ ├── export-ns-from │ │ │ └── index.js │ │ ├── import-meta │ │ │ └── index.js │ │ ├── numeric-separator │ │ │ └── index.js │ │ ├── private-class-elements │ │ │ └── index.js │ │ └── static-class-features │ │ │ └── index.js │ ├── package.json │ ├── test │ │ └── index.js │ └── walk.js ├── acorn-walk │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── walk.d.ts │ │ ├── walk.js │ │ ├── walk.js.map │ │ ├── walk.mjs │ │ └── walk.mjs.map │ └── package.json ├── acorn │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── acorn │ ├── dist │ │ ├── acorn.d.ts │ │ ├── acorn.js │ │ ├── acorn.js.map │ │ ├── acorn.mjs │ │ ├── acorn.mjs.d.ts │ │ ├── acorn.mjs.map │ │ └── bin.js │ └── package.json ├── ansi-styles │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── anymatch │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── arg │ ├── LICENSE.md │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── binary-extensions │ ├── binary-extensions.json │ ├── binary-extensions.json.d.ts │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── braces │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── lib │ │ ├── compile.js │ │ ├── constants.js │ │ ├── expand.js │ │ ├── parse.js │ │ ├── stringify.js │ │ └── utils.js │ └── package.json ├── callsites │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── camelcase-css │ ├── README.md │ ├── index-es5.js │ ├── index.js │ ├── license │ └── package.json ├── chalk │ ├── index.d.ts │ ├── license │ ├── package.json │ ├── readme.md │ └── source │ │ ├── index.js │ │ ├── templates.js │ │ └── util.js ├── chokidar │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── lib │ │ ├── constants.js │ │ ├── fsevents-handler.js │ │ └── nodefs-handler.js │ ├── node_modules │ │ └── glob-parent │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ ├── package.json │ └── types │ │ └── index.d.ts ├── color-convert │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── conversions.js │ ├── index.js │ ├── package.json │ └── route.js ├── color-name │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── colorette │ ├── LICENSE.md │ ├── README.md │ ├── index.cjs │ ├── index.d.ts │ ├── index.js │ └── package.json ├── cosmiconfig │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── Explorer.d.ts │ │ ├── Explorer.d.ts.map │ │ ├── Explorer.js │ │ ├── Explorer.js.map │ │ ├── ExplorerBase.d.ts │ │ ├── ExplorerBase.d.ts.map │ │ ├── ExplorerBase.js │ │ ├── ExplorerBase.js.map │ │ ├── ExplorerSync.d.ts │ │ ├── ExplorerSync.d.ts.map │ │ ├── ExplorerSync.js │ │ ├── ExplorerSync.js.map │ │ ├── cacheWrapper.d.ts │ │ ├── cacheWrapper.d.ts.map │ │ ├── cacheWrapper.js │ │ ├── cacheWrapper.js.map │ │ ├── getDirectory.d.ts │ │ ├── getDirectory.d.ts.map │ │ ├── getDirectory.js │ │ ├── getDirectory.js.map │ │ ├── getPropertyByPath.d.ts │ │ ├── getPropertyByPath.d.ts.map │ │ ├── getPropertyByPath.js │ │ ├── getPropertyByPath.js.map │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── loaders.d.ts │ │ ├── loaders.d.ts.map │ │ ├── loaders.js │ │ ├── loaders.js.map │ │ ├── readFile.d.ts │ │ ├── readFile.d.ts.map │ │ ├── readFile.js │ │ ├── readFile.js.map │ │ ├── types.d.ts │ │ ├── types.d.ts.map │ │ ├── types.js │ │ └── types.js.map │ └── package.json ├── cssesc │ ├── LICENSE-MIT.txt │ ├── README.md │ ├── bin │ │ └── cssesc │ ├── cssesc.js │ ├── man │ │ └── cssesc.1 │ └── package.json ├── defined │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ └── defined.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── def.js │ │ └── falsy.js ├── detective │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── bench │ │ ├── detect.js │ │ └── esprima_v_acorn.txt │ ├── bin │ │ └── detective.js │ ├── example │ │ ├── strings.js │ │ └── strings_src.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── both.js │ │ ├── chained.js │ │ ├── complicated.js │ │ ├── es2019.js │ │ ├── es6-module.js │ │ ├── files │ │ ├── both.js │ │ ├── chained.js │ │ ├── es6-module.js │ │ ├── for-await.js │ │ ├── generators.js │ │ ├── isrequire.js │ │ ├── nested.js │ │ ├── optional-catch.js │ │ ├── rest-spread.js │ │ ├── set-in-object-pattern.js │ │ ├── shebang.js │ │ ├── sparse-array.js │ │ ├── strings.js │ │ ├── word.js │ │ └── yield.js │ │ ├── generators.js │ │ ├── isrequire.js │ │ ├── nested.js │ │ ├── noargs.js │ │ ├── parseopts.js │ │ ├── rest-spread.js │ │ ├── return.js │ │ ├── set-in-object-pattern.js │ │ ├── shebang.js │ │ ├── sparse-array.js │ │ ├── strings.js │ │ ├── word.js │ │ └── yield.js ├── didyoumean │ ├── LICENSE │ ├── README.md │ ├── didYouMean-1.2.1.js │ ├── didYouMean-1.2.1.min.js │ └── package.json ├── dlv │ ├── README.md │ ├── dist │ │ ├── dlv.es.js │ │ ├── dlv.es.js.map │ │ ├── dlv.js │ │ ├── dlv.js.map │ │ ├── dlv.umd.js │ │ └── dlv.umd.js.map │ ├── index.js │ └── package.json ├── error-ex │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── escape-string-regexp │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── fast-glob │ ├── LICENSE │ ├── README.md │ ├── node_modules │ │ └── glob-parent │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ ├── out │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── managers │ │ │ ├── patterns.d.ts │ │ │ ├── patterns.js │ │ │ ├── tasks.d.ts │ │ │ └── tasks.js │ │ ├── providers │ │ │ ├── async.d.ts │ │ │ ├── async.js │ │ │ ├── filters │ │ │ │ ├── deep.d.ts │ │ │ │ ├── deep.js │ │ │ │ ├── entry.d.ts │ │ │ │ ├── entry.js │ │ │ │ ├── error.d.ts │ │ │ │ └── error.js │ │ │ ├── matchers │ │ │ │ ├── matcher.d.ts │ │ │ │ ├── matcher.js │ │ │ │ ├── partial.d.ts │ │ │ │ └── partial.js │ │ │ ├── provider.d.ts │ │ │ ├── provider.js │ │ │ ├── stream.d.ts │ │ │ ├── stream.js │ │ │ ├── sync.d.ts │ │ │ ├── sync.js │ │ │ └── transformers │ │ │ │ ├── entry.d.ts │ │ │ │ └── entry.js │ │ ├── readers │ │ │ ├── reader.d.ts │ │ │ ├── reader.js │ │ │ ├── stream.d.ts │ │ │ ├── stream.js │ │ │ ├── sync.d.ts │ │ │ └── sync.js │ │ ├── settings.d.ts │ │ ├── settings.js │ │ ├── types │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── utils │ │ │ ├── array.d.ts │ │ │ ├── array.js │ │ │ ├── errno.d.ts │ │ │ ├── errno.js │ │ │ ├── fs.d.ts │ │ │ ├── fs.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── path.d.ts │ │ │ ├── path.js │ │ │ ├── pattern.d.ts │ │ │ ├── pattern.js │ │ │ ├── stream.d.ts │ │ │ ├── stream.js │ │ │ ├── string.d.ts │ │ │ └── string.js │ └── package.json ├── fastq │ ├── .github │ │ ├── dependabot.yml │ │ └── workflows │ │ │ └── ci.yml │ ├── LICENSE │ ├── README.md │ ├── bench.js │ ├── example.js │ ├── example.mjs │ ├── index.d.ts │ ├── package.json │ ├── queue.js │ └── test │ │ ├── example.ts │ │ ├── promise.js │ │ ├── test.js │ │ └── tsconfig.json ├── fill-range │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── function-bind │ ├── .editorconfig │ ├── .eslintrc │ ├── .jscs.json │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── implementation.js │ ├── index.js │ ├── package.json │ └── test │ │ ├── .eslintrc │ │ └── index.js ├── glob-parent │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── has-flag │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── has │ ├── LICENSE-MIT │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.js │ └── test │ │ └── index.js ├── import-fresh │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── is-arrayish │ ├── .editorconfig │ ├── .istanbul.yml │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── is-binary-path │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── is-core-module │ ├── .eslintrc │ ├── .nycrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── core.json │ ├── index.js │ ├── package.json │ └── test │ │ └── index.js ├── is-extglob │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── is-glob │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── is-number │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── isarray │ ├── .npmignore │ ├── .travis.yml │ ├── Makefile │ ├── README.md │ ├── component.json │ ├── index.js │ ├── package.json │ └── test.js ├── isobject │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── js-tokens │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── json-parse-even-better-errors │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── index.js │ └── package.json ├── lilconfig │ ├── dist │ │ ├── index.d.ts │ │ └── index.js │ ├── package.json │ └── readme.md ├── line-column │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── line-column.js │ └── package.json ├── lines-and-columns │ ├── LICENSE │ ├── README.md │ ├── build │ │ ├── index.d.ts │ │ └── index.js │ └── package.json ├── merge2 │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── micromatch │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── minimist │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ └── parse.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── all_bool.js │ │ ├── bool.js │ │ ├── dash.js │ │ ├── default_bool.js │ │ ├── dotted.js │ │ ├── kv_short.js │ │ ├── long.js │ │ ├── num.js │ │ ├── parse.js │ │ ├── parse_modified.js │ │ ├── proto.js │ │ ├── short.js │ │ ├── stop_early.js │ │ ├── unknown.js │ │ └── whitespace.js ├── nanoid │ ├── LICENSE │ ├── README.md │ ├── async │ │ ├── index.browser.cjs │ │ ├── index.browser.js │ │ ├── index.cjs │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.native.js │ │ └── package.json │ ├── bin │ │ └── nanoid.cjs │ ├── index.browser.cjs │ ├── index.browser.js │ ├── index.cjs │ ├── index.d.ts │ ├── index.dev.js │ ├── index.js │ ├── index.prod.js │ ├── nanoid.js │ ├── non-secure │ │ ├── index.cjs │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── package.json │ └── url-alphabet │ │ ├── index.cjs │ │ ├── index.js │ │ └── package.json ├── normalize-path │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── object-hash │ ├── LICENSE │ ├── dist │ │ └── object_hash.js │ ├── index.js │ ├── package.json │ └── readme.markdown ├── parent-module │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── parse-json │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── path-parse │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── path-type │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── picomatch │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── lib │ │ ├── constants.js │ │ ├── parse.js │ │ ├── picomatch.js │ │ ├── scan.js │ │ └── utils.js │ └── package.json ├── postcss-js │ ├── LICENSE │ ├── README.md │ ├── async.js │ ├── index.js │ ├── index.mjs │ ├── objectifier.js │ ├── package.json │ ├── parser.js │ ├── process-result.js │ └── sync.js ├── postcss-load-config │ ├── LICENSE │ ├── README.md │ ├── package.json │ └── src │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── options.js │ │ └── plugins.js ├── postcss-nested │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── postcss-selector-parser │ ├── API.md │ ├── CHANGELOG.md │ ├── LICENSE-MIT │ ├── README.md │ ├── dist │ │ ├── index.js │ │ ├── parser.js │ │ ├── processor.js │ │ ├── selectors │ │ │ ├── attribute.js │ │ │ ├── className.js │ │ │ ├── combinator.js │ │ │ ├── comment.js │ │ │ ├── constructors.js │ │ │ ├── container.js │ │ │ ├── guards.js │ │ │ ├── id.js │ │ │ ├── index.js │ │ │ ├── namespace.js │ │ │ ├── nesting.js │ │ │ ├── node.js │ │ │ ├── pseudo.js │ │ │ ├── root.js │ │ │ ├── selector.js │ │ │ ├── string.js │ │ │ ├── tag.js │ │ │ ├── types.js │ │ │ └── universal.js │ │ ├── sortAscending.js │ │ ├── tokenTypes.js │ │ ├── tokenize.js │ │ └── util │ │ │ ├── ensureObject.js │ │ │ ├── getProp.js │ │ │ ├── index.js │ │ │ ├── stripComments.js │ │ │ └── unesc.js │ ├── package.json │ └── postcss-selector-parser.d.ts ├── postcss-value-parser │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── parse.js │ │ ├── stringify.js │ │ ├── unit.js │ │ └── walk.js │ └── package.json ├── postcss │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── at-rule.d.ts │ │ ├── at-rule.js │ │ ├── comment.d.ts │ │ ├── comment.js │ │ ├── container.d.ts │ │ ├── container.js │ │ ├── css-syntax-error.d.ts │ │ ├── css-syntax-error.js │ │ ├── declaration.d.ts │ │ ├── declaration.js │ │ ├── input.d.ts │ │ ├── input.js │ │ ├── lazy-result.d.ts │ │ ├── lazy-result.js │ │ ├── list.d.ts │ │ ├── list.js │ │ ├── map-generator.js │ │ ├── node.d.ts │ │ ├── node.js │ │ ├── parse.d.ts │ │ ├── parse.js │ │ ├── parser.js │ │ ├── postcss.d.ts │ │ ├── postcss.js │ │ ├── postcss.mjs │ │ ├── previous-map.d.ts │ │ ├── previous-map.js │ │ ├── processor.d.ts │ │ ├── processor.js │ │ ├── result.d.ts │ │ ├── result.js │ │ ├── root.d.ts │ │ ├── root.js │ │ ├── rule.d.ts │ │ ├── rule.js │ │ ├── stringifier.js │ │ ├── stringify.d.ts │ │ ├── stringify.js │ │ ├── symbols.js │ │ ├── terminal-highlight.js │ │ ├── tokenize.js │ │ ├── warn-once.js │ │ ├── warning.d.ts │ │ └── warning.js │ └── package.json ├── queue-microtask │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── quick-lru │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── readdirp │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── resolve-from │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── resolve │ ├── .editorconfig │ ├── .eslintrc │ ├── .github │ │ └── FUNDING.yml │ ├── LICENSE │ ├── SECURITY.md │ ├── appveyor.yml │ ├── async.js │ ├── bin │ │ └── resolve │ ├── example │ │ ├── async.js │ │ └── sync.js │ ├── index.js │ ├── lib │ │ ├── async.js │ │ ├── caller.js │ │ ├── core.js │ │ ├── core.json │ │ ├── is-core.js │ │ ├── node-modules-paths.js │ │ ├── normalize-options.js │ │ └── sync.js │ ├── package.json │ ├── readme.markdown │ ├── sync.js │ └── test │ │ ├── core.js │ │ ├── dotdot.js │ │ ├── dotdot │ │ ├── abc │ │ │ └── index.js │ │ └── index.js │ │ ├── faulty_basedir.js │ │ ├── filter.js │ │ ├── filter_sync.js │ │ ├── mock.js │ │ ├── mock_sync.js │ │ ├── module_dir.js │ │ ├── module_dir │ │ ├── xmodules │ │ │ └── aaa │ │ │ │ └── index.js │ │ ├── ymodules │ │ │ └── aaa │ │ │ │ └── index.js │ │ └── zmodules │ │ │ └── bbb │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── node-modules-paths.js │ │ ├── node_path.js │ │ ├── node_path │ │ ├── x │ │ │ ├── aaa │ │ │ │ └── index.js │ │ │ └── ccc │ │ │ │ └── index.js │ │ └── y │ │ │ ├── bbb │ │ │ └── index.js │ │ │ └── ccc │ │ │ └── index.js │ │ ├── nonstring.js │ │ ├── pathfilter.js │ │ ├── pathfilter │ │ └── deep_ref │ │ │ └── main.js │ │ ├── precedence.js │ │ ├── precedence │ │ ├── aaa.js │ │ ├── aaa │ │ │ ├── index.js │ │ │ └── main.js │ │ ├── bbb.js │ │ └── bbb │ │ │ └── main.js │ │ ├── resolver.js │ │ ├── resolver │ │ ├── baz │ │ │ ├── doom.js │ │ │ ├── package.json │ │ │ └── quux.js │ │ ├── browser_field │ │ │ ├── a.js │ │ │ ├── b.js │ │ │ └── package.json │ │ ├── cup.coffee │ │ ├── dot_main │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── dot_slash_main │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── foo.js │ │ ├── incorrect_main │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── invalid_main │ │ │ └── package.json │ │ ├── malformed_package_json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mug.coffee │ │ ├── mug.js │ │ ├── multirepo │ │ │ ├── lerna.json │ │ │ ├── package.json │ │ │ └── packages │ │ │ │ ├── package-a │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ └── package-b │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── nested_symlinks │ │ │ └── mylib │ │ │ │ ├── async.js │ │ │ │ ├── package.json │ │ │ │ └── sync.js │ │ ├── other_path │ │ │ ├── lib │ │ │ │ └── other-lib.js │ │ │ └── root.js │ │ ├── quux │ │ │ └── foo │ │ │ │ └── index.js │ │ ├── same_names │ │ │ ├── foo.js │ │ │ └── foo │ │ │ │ └── index.js │ │ ├── symlinked │ │ │ ├── _ │ │ │ │ ├── node_modules │ │ │ │ │ └── foo.js │ │ │ │ └── symlink_target │ │ │ │ │ └── .gitkeep │ │ │ └── package │ │ │ │ ├── bar.js │ │ │ │ └── package.json │ │ └── without_basedir │ │ │ └── main.js │ │ ├── resolver_sync.js │ │ ├── shadowed_core.js │ │ ├── shadowed_core │ │ └── node_modules │ │ │ └── util │ │ │ └── index.js │ │ ├── subdirs.js │ │ └── symlinks.js ├── reusify │ ├── .coveralls.yml │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── benchmarks │ │ ├── createNoCodeFunction.js │ │ ├── fib.js │ │ └── reuseNoCodeFunction.js │ ├── package.json │ ├── reusify.js │ └── test.js ├── run-parallel │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── source-map │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── source-map.debug.js │ │ ├── source-map.js │ │ ├── source-map.min.js │ │ └── source-map.min.js.map │ ├── lib │ │ ├── array-set.js │ │ ├── base64-vlq.js │ │ ├── base64.js │ │ ├── binary-search.js │ │ ├── mapping-list.js │ │ ├── quick-sort.js │ │ ├── source-map-consumer.js │ │ ├── source-map-generator.js │ │ ├── source-node.js │ │ └── util.js │ ├── package.json │ ├── source-map.d.ts │ └── source-map.js ├── supports-color │ ├── browser.js │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── supports-preserve-symlinks-flag │ ├── .eslintrc │ ├── .github │ │ └── FUNDING.yml │ ├── .nycrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── index.js │ ├── package.json │ └── test │ │ └── index.js ├── tailwindcss │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── base.css │ ├── colors.js │ ├── components.css │ ├── defaultConfig.js │ ├── defaultTheme.js │ ├── lib │ │ ├── cli-peer-dependencies.js │ │ ├── cli.js │ │ ├── constants.js │ │ ├── corePluginList.js │ │ ├── corePlugins.js │ │ ├── css │ │ │ ├── LICENSE │ │ │ └── preflight.css │ │ ├── featureFlags.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── collapseAdjacentRules.js │ │ │ ├── collapseDuplicateDeclarations.js │ │ │ ├── defaultExtractor.js │ │ │ ├── detectNesting.js │ │ │ ├── evaluateTailwindFunctions.js │ │ │ ├── expandApplyAtRules.js │ │ │ ├── expandTailwindAtRules.js │ │ │ ├── generateRules.js │ │ │ ├── getModuleDependencies.js │ │ │ ├── normalizeTailwindDirectives.js │ │ │ ├── resolveDefaultsAtRules.js │ │ │ ├── setupContextUtils.js │ │ │ ├── setupTrackingContext.js │ │ │ ├── sharedState.js │ │ │ └── substituteScreenAtRules.js │ │ ├── processTailwindFeatures.js │ │ ├── public │ │ │ ├── colors.js │ │ │ ├── create-plugin.js │ │ │ ├── default-config.js │ │ │ ├── default-theme.js │ │ │ └── resolve-config.js │ │ └── util │ │ │ ├── bigSign.js │ │ │ ├── buildMediaQuery.js │ │ │ ├── cloneDeep.js │ │ │ ├── cloneNodes.js │ │ │ ├── color.js │ │ │ ├── configurePlugins.js │ │ │ ├── createPlugin.js │ │ │ ├── createUtilityPlugin.js │ │ │ ├── dataTypes.js │ │ │ ├── defaults.js │ │ │ ├── escapeClassName.js │ │ │ ├── escapeCommas.js │ │ │ ├── flattenColorPalette.js │ │ │ ├── formatVariantSelector.js │ │ │ ├── getAllConfigs.js │ │ │ ├── hashConfig.js │ │ │ ├── isKeyframeRule.js │ │ │ ├── isPlainObject.js │ │ │ ├── isValidArbitraryValue.js │ │ │ ├── log.js │ │ │ ├── nameClass.js │ │ │ ├── negateValue.js │ │ │ ├── normalizeConfig.js │ │ │ ├── normalizeScreens.js │ │ │ ├── parseAnimationValue.js │ │ │ ├── parseBoxShadowValue.js │ │ │ ├── parseDependency.js │ │ │ ├── parseObjectStyles.js │ │ │ ├── pluginUtils.js │ │ │ ├── prefixSelector.js │ │ │ ├── resolveConfig.js │ │ │ ├── resolveConfigPath.js │ │ │ ├── responsive.js │ │ │ ├── tap.js │ │ │ ├── toColorValue.js │ │ │ ├── toPath.js │ │ │ ├── transformThemeValue.js │ │ │ └── withAlphaVariable.js │ ├── nesting │ │ ├── README.md │ │ ├── index.js │ │ └── plugin.js │ ├── package.json │ ├── peers │ │ └── index.js │ ├── plugin.js │ ├── prettier.config.js │ ├── resolveConfig.js │ ├── screens.css │ ├── scripts │ │ ├── create-plugin-list.js │ │ ├── install-integrations.js │ │ └── rebuildFixtures.js │ ├── src │ │ ├── cli-peer-dependencies.js │ │ ├── cli.js │ │ ├── constants.js │ │ ├── corePluginList.js │ │ ├── corePlugins.js │ │ ├── css │ │ │ ├── LICENSE │ │ │ └── preflight.css │ │ ├── featureFlags.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── collapseAdjacentRules.js │ │ │ ├── collapseDuplicateDeclarations.js │ │ │ ├── defaultExtractor.js │ │ │ ├── detectNesting.js │ │ │ ├── evaluateTailwindFunctions.js │ │ │ ├── expandApplyAtRules.js │ │ │ ├── expandTailwindAtRules.js │ │ │ ├── generateRules.js │ │ │ ├── getModuleDependencies.js │ │ │ ├── normalizeTailwindDirectives.js │ │ │ ├── resolveDefaultsAtRules.js │ │ │ ├── setupContextUtils.js │ │ │ ├── setupTrackingContext.js │ │ │ ├── sharedState.js │ │ │ └── substituteScreenAtRules.js │ │ ├── processTailwindFeatures.js │ │ ├── public │ │ │ ├── colors.js │ │ │ ├── create-plugin.js │ │ │ ├── default-config.js │ │ │ ├── default-theme.js │ │ │ └── resolve-config.js │ │ └── util │ │ │ ├── bigSign.js │ │ │ ├── buildMediaQuery.js │ │ │ ├── cloneDeep.js │ │ │ ├── cloneNodes.js │ │ │ ├── color.js │ │ │ ├── configurePlugins.js │ │ │ ├── createPlugin.js │ │ │ ├── createUtilityPlugin.js │ │ │ ├── dataTypes.js │ │ │ ├── defaults.js │ │ │ ├── escapeClassName.js │ │ │ ├── escapeCommas.js │ │ │ ├── flattenColorPalette.js │ │ │ ├── formatVariantSelector.js │ │ │ ├── getAllConfigs.js │ │ │ ├── hashConfig.js │ │ │ ├── isKeyframeRule.js │ │ │ ├── isPlainObject.js │ │ │ ├── isValidArbitraryValue.js │ │ │ ├── log.js │ │ │ ├── nameClass.js │ │ │ ├── negateValue.js │ │ │ ├── normalizeConfig.js │ │ │ ├── normalizeScreens.js │ │ │ ├── parseAnimationValue.js │ │ │ ├── parseBoxShadowValue.js │ │ │ ├── parseDependency.js │ │ │ ├── parseObjectStyles.js │ │ │ ├── pluginUtils.js │ │ │ ├── prefixSelector.js │ │ │ ├── resolveConfig.js │ │ │ ├── resolveConfigPath.js │ │ │ ├── responsive.js │ │ │ ├── tap.js │ │ │ ├── toColorValue.js │ │ │ ├── toPath.js │ │ │ ├── transformThemeValue.js │ │ │ └── withAlphaVariable.js │ ├── stubs │ │ ├── defaultConfig.stub.js │ │ ├── defaultPostCssConfig.stub.js │ │ └── simpleConfig.stub.js │ ├── tailwind.css │ ├── utilities.css │ └── variants.css ├── to-regex-range │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── util-deprecate │ ├── History.md │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── node.js │ └── package.json ├── xtend │ ├── .jshintrc │ ├── LICENSE │ ├── README.md │ ├── immutable.js │ ├── mutable.js │ ├── package.json │ └── test.js └── yaml │ ├── LICENSE │ ├── README.md │ ├── browser │ ├── dist │ │ ├── PlainValue-b8036b75.js │ │ ├── Schema-e94716c8.js │ │ ├── index.js │ │ ├── legacy-exports.js │ │ ├── package.json │ │ ├── parse-cst.js │ │ ├── resolveSeq-492ab440.js │ │ ├── types.js │ │ ├── util.js │ │ └── warnings-df54cb69.js │ ├── index.js │ ├── map.js │ ├── pair.js │ ├── parse-cst.js │ ├── scalar.js │ ├── schema.js │ ├── seq.js │ ├── types.js │ ├── types │ │ ├── binary.js │ │ ├── omap.js │ │ ├── pairs.js │ │ ├── set.js │ │ └── timestamp.js │ └── util.js │ ├── dist │ ├── Document-9b4560a1.js │ ├── PlainValue-ec8e588e.js │ ├── Schema-88e323a7.js │ ├── index.js │ ├── legacy-exports.js │ ├── parse-cst.js │ ├── resolveSeq-d03cb037.js │ ├── test-events.js │ ├── types.js │ ├── util.js │ └── warnings-1000a372.js │ ├── index.d.ts │ ├── index.js │ ├── map.js │ ├── package.json │ ├── pair.js │ ├── parse-cst.d.ts │ ├── parse-cst.js │ ├── scalar.js │ ├── schema.js │ ├── seq.js │ ├── types.d.ts │ ├── types.js │ ├── types.mjs │ ├── types │ ├── binary.js │ ├── omap.js │ ├── pairs.js │ ├── set.js │ └── timestamp.js │ ├── util.d.ts │ ├── util.js │ └── util.mjs ├── order.php ├── package-lock.json ├── src └── css │ └── style.css ├── tailwind.config.js ├── vendor ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php ├── delight-im │ ├── auth │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── Database │ │ │ ├── MySQL.sql │ │ │ ├── PostgreSQL.sql │ │ │ └── SQLite.sql │ │ ├── LICENSE │ │ ├── Migration.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── src │ │ │ ├── Administration.php │ │ │ ├── AmbiguousUsernameException.php │ │ │ ├── AttemptCancelledException.php │ │ │ ├── Auth.php │ │ │ ├── AuthError.php │ │ │ ├── AuthException.php │ │ │ ├── ConfirmationRequestNotFound.php │ │ │ ├── DatabaseError.php │ │ │ ├── DuplicateUsernameException.php │ │ │ ├── EmailNotVerifiedException.php │ │ │ ├── EmailOrUsernameRequiredError.php │ │ │ ├── HeadersAlreadySentError.php │ │ │ ├── InvalidEmailException.php │ │ │ ├── InvalidPasswordException.php │ │ │ ├── InvalidSelectorTokenPairException.php │ │ │ ├── MissingCallbackError.php │ │ │ ├── NotLoggedInException.php │ │ │ ├── ResetDisabledException.php │ │ │ ├── Role.php │ │ │ ├── Status.php │ │ │ ├── TokenExpiredException.php │ │ │ ├── TooManyRequestsException.php │ │ │ ├── UnknownIdException.php │ │ │ ├── UnknownUsernameException.php │ │ │ ├── UserAlreadyExistsException.php │ │ │ └── UserManager.php │ │ └── tests │ │ │ └── index.php │ ├── base64 │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── src │ │ │ ├── Base64.php │ │ │ └── Throwable │ │ │ │ ├── DecodingError.php │ │ │ │ ├── EncodingError.php │ │ │ │ ├── Error.php │ │ │ │ └── Exception.php │ │ └── tests │ │ │ └── index.php │ ├── cookie │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis-ci-apache │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Migration.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── src │ │ │ ├── Cookie.php │ │ │ └── Session.php │ │ └── tests │ │ │ └── index.php │ ├── db │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── src │ │ │ ├── DataSource.php │ │ │ ├── Database.php │ │ │ ├── Dsn.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Measurement.php │ │ │ ├── PdoDataSource.php │ │ │ ├── PdoDatabase.php │ │ │ ├── PdoDsn.php │ │ │ ├── Profiler.php │ │ │ ├── SimpleMeasurement.php │ │ │ ├── SimpleProfiler.php │ │ │ └── Throwable │ │ │ │ ├── BeginTransactionFailureException.php │ │ │ │ ├── CommitTransactionFailureException.php │ │ │ │ ├── DatabaseNotFoundError.php │ │ │ │ ├── EmptyValueListError.php │ │ │ │ ├── EmptyWhereClauseError.php │ │ │ │ ├── Error.php │ │ │ │ ├── Exception.php │ │ │ │ ├── IntegrityConstraintViolationException.php │ │ │ │ ├── NoDatabaseSelectedError.php │ │ │ │ ├── RollBackTransactionFailureException.php │ │ │ │ ├── SyntaxError.php │ │ │ │ ├── TableNotFoundError.php │ │ │ │ ├── TransactionFailureException.php │ │ │ │ ├── UnknownColumnError.php │ │ │ │ └── WrongCredentialsError.php │ │ └── tests │ │ │ └── index.php │ └── http │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Migration.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── src │ │ └── ResponseHeader.php │ │ └── tests │ │ └── index.php ├── guzzlehttp │ ├── guzzle │ │ ├── .php_cs │ │ ├── CHANGELOG.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Client.php │ │ │ ├── ClientInterface.php │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieJarInterface.php │ │ │ ├── FileCookieJar.php │ │ │ ├── SessionCookieJar.php │ │ │ └── SetCookie.php │ │ │ ├── Exception │ │ │ ├── BadResponseException.php │ │ │ ├── ClientException.php │ │ │ ├── ConnectException.php │ │ │ ├── GuzzleException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── RequestException.php │ │ │ ├── SeekException.php │ │ │ ├── ServerException.php │ │ │ ├── TooManyRedirectsException.php │ │ │ └── TransferException.php │ │ │ ├── Handler │ │ │ ├── CurlFactory.php │ │ │ ├── CurlFactoryInterface.php │ │ │ ├── CurlHandler.php │ │ │ ├── CurlMultiHandler.php │ │ │ ├── EasyHandle.php │ │ │ ├── MockHandler.php │ │ │ ├── Proxy.php │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ ├── MessageFormatter.php │ │ │ ├── Middleware.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── UriTemplate.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── promises │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── Create.php │ │ │ ├── Each.php │ │ │ ├── EachPromise.php │ │ │ ├── FulfilledPromise.php │ │ │ ├── Is.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ └── psr7 │ │ ├── .github │ │ └── workflows │ │ │ ├── bc.yml │ │ │ ├── ci.yml │ │ │ └── integration.yml │ │ ├── .php_cs.dist │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AppendStream.php │ │ ├── BufferStream.php │ │ ├── CachingStream.php │ │ ├── DroppingStream.php │ │ ├── FnStream.php │ │ ├── Header.php │ │ ├── InflateStream.php │ │ ├── LazyOpenStream.php │ │ ├── LimitStream.php │ │ ├── Message.php │ │ ├── MessageTrait.php │ │ ├── MimeType.php │ │ ├── MultipartStream.php │ │ ├── NoSeekStream.php │ │ ├── PumpStream.php │ │ ├── Query.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Rfc7230.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ ├── StreamDecoratorTrait.php │ │ ├── StreamWrapper.php │ │ ├── UploadedFile.php │ │ ├── Uri.php │ │ ├── UriNormalizer.php │ │ ├── UriResolver.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php ├── hcgcloud │ └── pterodactyl-sdk │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Actions │ │ ├── ManagesAllocations.php │ │ ├── ManagesEggs.php │ │ ├── ManagesLocations.php │ │ ├── ManagesNests.php │ │ ├── ManagesNodes.php │ │ ├── ManagesServers.php │ │ ├── ManagesUsers.php │ │ └── UsesServers.php │ │ ├── Exceptions │ │ ├── FailedActionException.php │ │ ├── NotFoundException.php │ │ ├── TimeoutException.php │ │ └── ValidationException.php │ │ ├── MakesHttpRequests.php │ │ ├── Pterodactyl.php │ │ └── Resources │ │ ├── Allocation.php │ │ ├── Egg.php │ │ ├── Location.php │ │ ├── Nest.php │ │ ├── Node.php │ │ ├── Resource.php │ │ ├── Server.php │ │ ├── ServerDatabase.php │ │ ├── Stats.php │ │ ├── SubUser.php │ │ └── User.php ├── psr │ └── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php ├── ralouphie │ └── getallheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── getallheaders.php └── symfony │ ├── polyfill-intl-idn │ ├── Idn.php │ ├── Info.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── DisallowedRanges.php │ │ │ ├── Regex.php │ │ │ ├── deviation.php │ │ │ ├── disallowed.php │ │ │ ├── disallowed_STD3_mapped.php │ │ │ ├── disallowed_STD3_valid.php │ │ │ ├── ignored.php │ │ │ ├── mapped.php │ │ │ └── virama.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json │ ├── polyfill-intl-normalizer │ ├── LICENSE │ ├── Normalizer.php │ ├── README.md │ ├── Resources │ │ ├── stubs │ │ │ └── Normalizer.php │ │ └── unidata │ │ │ ├── canonicalComposition.php │ │ │ ├── canonicalDecomposition.php │ │ │ ├── combiningClass.php │ │ │ └── compatibilityDecomposition.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json │ └── polyfill-php72 │ ├── LICENSE │ ├── Php72.php │ ├── README.md │ ├── bootstrap.php │ └── composer.json └── vexclient.sql /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | dist/style.css 3 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | ErrorDocument 404 /404.php 2 | ErrorDocument 500 /500.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Vex Panel 2 | Vex Panel is a free and open source panel for Pterodactyl v1. Vex Panel has many features such as Idling for coins, product stock, an admin page, built in API for a Discord bot, and so much more to come. Vex Panel was originally made because there isn't a really great panel for Pterodactyl v1 that's written in PHP. 3 | -------------------------------------------------------------------------------- /api/isStaff.php: -------------------------------------------------------------------------------- 1 | query("SELECT * FROM staff WHERE discord_id='".mysqli_real_escape_string($conn, $_GET['did'])."'"); 4 | if($userInfo->num_rows == 1){ 5 | echo '**is a**'; 6 | }else{ 7 | echo '**is not a**'; 8 | } -------------------------------------------------------------------------------- /api/numServ.php: -------------------------------------------------------------------------------- 1 | query("SELECT * FROM servers"); 4 | if($userInfo->num_rows == 0){ 5 | echo 'There are currently **no** servers hosted here...'; 6 | }else{ 7 | echo 'There are **'. $userInfo->num_rows . '** servers hosted here!'; 8 | } -------------------------------------------------------------------------------- /api/numUser.php: -------------------------------------------------------------------------------- 1 | query("SELECT * FROM users"); 4 | if($userInfo->num_rows == 0){ 5 | echo 'There are currently **no** users using this hosting...'; 6 | }else{ 7 | echo 'There are **'. $userInfo->num_rows . '** users signed up here!'; 8 | } -------------------------------------------------------------------------------- /api/topCoin.php: -------------------------------------------------------------------------------- 1 | query("SELECT * FROM products"); 4 | if($userInfo->num_rows == 0){ 5 | echo 'There are currently no products...'; 6 | }else{ 7 | echo 'There are a total of **'.$userInfo->num_rows. '** products!'; 8 | } -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Bold.eot -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Bold.woff -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-ExtraBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-ExtraBold.eot -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-ExtraBold.woff -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-ExtraBold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-ExtraLight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-ExtraLight.eot -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-ExtraLight.woff -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-ExtraLight.woff2 -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Light.eot -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Light.woff -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Light.woff2 -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Regular.eot -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Regular.woff -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-Regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-SemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-SemiBold.eot -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-SemiBold.woff -------------------------------------------------------------------------------- /assets/fonts/Assistant/Assistant-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Assistant/Assistant-SemiBold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Rubik/Rubik-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Rubik/Rubik-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Rubik/Rubik-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Rubik/Rubik-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/fonts/Rubik/Rubik-Regular.ttf -------------------------------------------------------------------------------- /assets/images/auth/Login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/auth/Login_bg.jpg -------------------------------------------------------------------------------- /assets/images/auth/Login_bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/auth/Login_bg2.jpg -------------------------------------------------------------------------------- /assets/images/auth/lockscreen-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/auth/lockscreen-bg.jpg -------------------------------------------------------------------------------- /assets/images/auth/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/auth/login-bg.jpg -------------------------------------------------------------------------------- /assets/images/auth/register-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/auth/register-bg.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_1.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_10.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_11.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_12.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_2.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_3.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_4.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_5.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_6.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_7.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_8.jpg -------------------------------------------------------------------------------- /assets/images/carousel/banner_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/carousel/banner_9.jpg -------------------------------------------------------------------------------- /assets/images/dashboard/Group126@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/dashboard/Group126@2x.png -------------------------------------------------------------------------------- /assets/images/dashboard/Img_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/dashboard/Img_5.jpg -------------------------------------------------------------------------------- /assets/images/dashboard/Rectangle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/dashboard/Rectangle.jpg -------------------------------------------------------------------------------- /assets/images/dashboard/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/dashboard/circle.png -------------------------------------------------------------------------------- /assets/images/dashboard/img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/dashboard/img_1.jpg -------------------------------------------------------------------------------- /assets/images/dashboard/img_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/dashboard/img_2.jpg -------------------------------------------------------------------------------- /assets/images/dashboard/img_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/dashboard/img_3.jpg -------------------------------------------------------------------------------- /assets/images/dashboard/img_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/dashboard/img_4.jpg -------------------------------------------------------------------------------- /assets/images/dashboard/img_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/dashboard/img_6.jpg -------------------------------------------------------------------------------- /assets/images/faces-clipart/pic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces-clipart/pic-1.png -------------------------------------------------------------------------------- /assets/images/faces-clipart/pic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces-clipart/pic-2.png -------------------------------------------------------------------------------- /assets/images/faces-clipart/pic-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces-clipart/pic-3.png -------------------------------------------------------------------------------- /assets/images/faces-clipart/pic-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces-clipart/pic-4.png -------------------------------------------------------------------------------- /assets/images/faces-clipart/pic-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces-clipart/pic-8.png -------------------------------------------------------------------------------- /assets/images/faces/face1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face1.jpg -------------------------------------------------------------------------------- /assets/images/faces/face10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face10.jpg -------------------------------------------------------------------------------- /assets/images/faces/face11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face11.jpg -------------------------------------------------------------------------------- /assets/images/faces/face12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face12.jpg -------------------------------------------------------------------------------- /assets/images/faces/face13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face13.jpg -------------------------------------------------------------------------------- /assets/images/faces/face14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face14.jpg -------------------------------------------------------------------------------- /assets/images/faces/face15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face15.jpg -------------------------------------------------------------------------------- /assets/images/faces/face16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face16.jpg -------------------------------------------------------------------------------- /assets/images/faces/face17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face17.jpg -------------------------------------------------------------------------------- /assets/images/faces/face18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face18.jpg -------------------------------------------------------------------------------- /assets/images/faces/face19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face19.jpg -------------------------------------------------------------------------------- /assets/images/faces/face2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face2.jpg -------------------------------------------------------------------------------- /assets/images/faces/face20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face20.jpg -------------------------------------------------------------------------------- /assets/images/faces/face21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face21.jpg -------------------------------------------------------------------------------- /assets/images/faces/face22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face22.jpg -------------------------------------------------------------------------------- /assets/images/faces/face23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face23.jpg -------------------------------------------------------------------------------- /assets/images/faces/face24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face24.jpg -------------------------------------------------------------------------------- /assets/images/faces/face25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face25.jpg -------------------------------------------------------------------------------- /assets/images/faces/face26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face26.jpg -------------------------------------------------------------------------------- /assets/images/faces/face27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face27.jpg -------------------------------------------------------------------------------- /assets/images/faces/face3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face3.jpg -------------------------------------------------------------------------------- /assets/images/faces/face4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face4.jpg -------------------------------------------------------------------------------- /assets/images/faces/face5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face5.jpg -------------------------------------------------------------------------------- /assets/images/faces/face6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face6.jpg -------------------------------------------------------------------------------- /assets/images/faces/face7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face7.jpg -------------------------------------------------------------------------------- /assets/images/faces/face8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face8.jpg -------------------------------------------------------------------------------- /assets/images/faces/face9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/faces/face9.jpg -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/file-icons/128/001-interface-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/128/001-interface-1.png -------------------------------------------------------------------------------- /assets/images/file-icons/128/002-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/128/002-tool.png -------------------------------------------------------------------------------- /assets/images/file-icons/128/003-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/128/003-interface.png -------------------------------------------------------------------------------- /assets/images/file-icons/128/004-folder-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/128/004-folder-1.png -------------------------------------------------------------------------------- /assets/images/file-icons/128/005-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/128/005-database.png -------------------------------------------------------------------------------- /assets/images/file-icons/128/006-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/128/006-record.png -------------------------------------------------------------------------------- /assets/images/file-icons/128/007-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/128/007-folder.png -------------------------------------------------------------------------------- /assets/images/file-icons/128/008-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/128/008-archive.png -------------------------------------------------------------------------------- /assets/images/file-icons/256/001-interface-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/256/001-interface-1.png -------------------------------------------------------------------------------- /assets/images/file-icons/256/002-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/256/002-tool.png -------------------------------------------------------------------------------- /assets/images/file-icons/256/003-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/256/003-interface.png -------------------------------------------------------------------------------- /assets/images/file-icons/256/004-folder-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/256/004-folder-1.png -------------------------------------------------------------------------------- /assets/images/file-icons/256/005-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/256/005-database.png -------------------------------------------------------------------------------- /assets/images/file-icons/256/006-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/256/006-record.png -------------------------------------------------------------------------------- /assets/images/file-icons/256/007-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/256/007-folder.png -------------------------------------------------------------------------------- /assets/images/file-icons/256/008-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/256/008-archive.png -------------------------------------------------------------------------------- /assets/images/file-icons/512/001-interface-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/512/001-interface-1.png -------------------------------------------------------------------------------- /assets/images/file-icons/512/002-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/512/002-tool.png -------------------------------------------------------------------------------- /assets/images/file-icons/512/003-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/512/003-interface.png -------------------------------------------------------------------------------- /assets/images/file-icons/512/004-folder-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/512/004-folder-1.png -------------------------------------------------------------------------------- /assets/images/file-icons/512/005-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/512/005-database.png -------------------------------------------------------------------------------- /assets/images/file-icons/512/006-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/512/006-record.png -------------------------------------------------------------------------------- /assets/images/file-icons/512/007-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/512/007-folder.png -------------------------------------------------------------------------------- /assets/images/file-icons/512/008-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/512/008-archive.png -------------------------------------------------------------------------------- /assets/images/file-icons/64/001-interface-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/64/001-interface-1.png -------------------------------------------------------------------------------- /assets/images/file-icons/64/002-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/64/002-tool.png -------------------------------------------------------------------------------- /assets/images/file-icons/64/003-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/64/003-interface.png -------------------------------------------------------------------------------- /assets/images/file-icons/64/004-folder-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/64/004-folder-1.png -------------------------------------------------------------------------------- /assets/images/file-icons/64/005-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/64/005-database.png -------------------------------------------------------------------------------- /assets/images/file-icons/64/006-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/64/006-record.png -------------------------------------------------------------------------------- /assets/images/file-icons/64/007-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/64/007-folder.png -------------------------------------------------------------------------------- /assets/images/file-icons/64/008-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/file-icons/64/008-archive.png -------------------------------------------------------------------------------- /assets/images/lightbox/play-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/lightbox/play-button.png -------------------------------------------------------------------------------- /assets/images/lightbox/thumb-v-v-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/lightbox/thumb-v-v-1.jpg -------------------------------------------------------------------------------- /assets/images/lightbox/thumb-v-v-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/lightbox/thumb-v-v-2.jpg -------------------------------------------------------------------------------- /assets/images/lightbox/thumb-v-y-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/lightbox/thumb-v-y-1.jpg -------------------------------------------------------------------------------- /assets/images/lightbox/thumb-v-y-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/lightbox/thumb-v-y-2.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/1.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/10.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/11.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/12.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/13.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/14.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/15.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/2.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/3.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/4.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/5.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/6.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/7.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/8.jpg -------------------------------------------------------------------------------- /assets/images/samples/1280x768/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/1280x768/9.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/1.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/10.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/11.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/12.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/13.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/14.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/15.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/2.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/3.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/4.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/5.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/6.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/7.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/8.jpg -------------------------------------------------------------------------------- /assets/images/samples/300x300/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/300x300/9.jpg -------------------------------------------------------------------------------- /assets/images/samples/Banner_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/Banner_bg.jpg -------------------------------------------------------------------------------- /assets/images/samples/Login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/Login_bg.jpg -------------------------------------------------------------------------------- /assets/images/samples/Login_bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/Login_bg2.jpg -------------------------------------------------------------------------------- /assets/images/samples/Mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/Mac.png -------------------------------------------------------------------------------- /assets/images/samples/angular-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/angular-4.png -------------------------------------------------------------------------------- /assets/images/samples/bootstrap-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/bootstrap-stack.png -------------------------------------------------------------------------------- /assets/images/samples/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/charts.png -------------------------------------------------------------------------------- /assets/images/samples/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/dashboard.png -------------------------------------------------------------------------------- /assets/images/samples/e-commerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/e-commerce.png -------------------------------------------------------------------------------- /assets/images/samples/editors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/editors.png -------------------------------------------------------------------------------- /assets/images/samples/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/email.png -------------------------------------------------------------------------------- /assets/images/samples/forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/forms.png -------------------------------------------------------------------------------- /assets/images/samples/html5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/html5.png -------------------------------------------------------------------------------- /assets/images/samples/lockscreen-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/lockscreen-bg.jpg -------------------------------------------------------------------------------- /assets/images/samples/modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/modal.png -------------------------------------------------------------------------------- /assets/images/samples/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/popup.png -------------------------------------------------------------------------------- /assets/images/samples/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/samples/widgets.png -------------------------------------------------------------------------------- /assets/images/screenshots/classic-horizontal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/screenshots/classic-horizontal.jpg -------------------------------------------------------------------------------- /assets/images/screenshots/classic-vertical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/screenshots/classic-vertical.jpg -------------------------------------------------------------------------------- /assets/images/screenshots/modern-horizontal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/screenshots/modern-horizontal.jpg -------------------------------------------------------------------------------- /assets/images/screenshots/modern-vertical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/screenshots/modern-vertical.jpg -------------------------------------------------------------------------------- /assets/images/screenshots/tinted-sidebar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/screenshots/tinted-sidebar.jpg -------------------------------------------------------------------------------- /assets/images/sprites/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/sprites/blue.png -------------------------------------------------------------------------------- /assets/images/sprites/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/sprites/dark.png -------------------------------------------------------------------------------- /assets/images/sprites/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/sprites/flag.png -------------------------------------------------------------------------------- /assets/images/sprites/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/sprites/green.png -------------------------------------------------------------------------------- /assets/images/sprites/jsgrid-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/sprites/jsgrid-icons.png -------------------------------------------------------------------------------- /assets/images/sprites/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/sprites/red.png -------------------------------------------------------------------------------- /assets/images/sprites/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/images/sprites/yellow.png -------------------------------------------------------------------------------- /assets/js/ace.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | var editor = ace.edit("aceExample"); 4 | editor.setTheme("ace/theme/chaos"); 5 | editor.getSession().setMode("ace/mode/javascript"); 6 | document.getElementById('aceExample').style.fontSize = '1rem'; 7 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/circle-progress.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | if ($(".circle-progress-1").length) { 4 | $('.circle-progress-1').circleProgress({}).on('circle-animation-progress', function(event, progress, stepValue) { 5 | $(this).find('.value').html(Math.round(100 * stepValue.toFixed(2).substr(1)) + '%'); 6 | }); 7 | } 8 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/clipboard.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 'use strict'; 3 | new ClipboardJS('.btn-clipboard'); 4 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/cropper.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | $('#cropperExample').cropper({ 4 | aspectRatio: 16 / 9 5 | }); 6 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/dropify.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | $('.dropify').dropify(); 4 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/dropzone.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | $("my-awesome-dropzone").dropzone({ 4 | url: "bootstrapdash.com/" 5 | }); 6 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/inputmask.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | 4 | // initializing inputmask 5 | $(":input").inputmask(); 6 | 7 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/jquery-file-upload.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | if ($("#fileuploader").length) { 4 | $("#fileuploader").uploadFile({ 5 | url: "YOUR_FILE_UPLOAD_URL", 6 | fileName: "myfile" 7 | }); 8 | } 9 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/listify.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | var options = { 4 | valueNames: ['name', 'born'] 5 | }; 6 | 7 | var userList = new List('users', options); 8 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/mapael.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 'use strict'; 3 | if ($(".mapael-container").length) { 4 | $(".mapael-container").mapael({ 5 | map: { 6 | name: "world_countries" 7 | } 8 | }); 9 | } 10 | }); -------------------------------------------------------------------------------- /assets/js/off-canvas.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | $(function() { 4 | $('[data-toggle="offcanvas"]').on("click", function() { 5 | $('.sidebar-offcanvas').toggleClass('active') 6 | }); 7 | }); 8 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/profile-demo.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | $(function() { 4 | $('#profile-rating').barrating({ 5 | theme: 'css-stars', 6 | showSelectedRating: false 7 | }); 8 | }); 9 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/select2.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | 4 | if ($(".js-example-basic-single").length) { 5 | $(".js-example-basic-single").select2(); 6 | } 7 | if ($(".js-example-basic-multiple").length) { 8 | $(".js-example-basic-multiple").select2(); 9 | } 10 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/tablesorter.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | $(function() { 4 | if ($('#sortable-table-1').length) { 5 | $('#sortable-table-1').tablesort(); 6 | } 7 | if ($('#sortable-table-2').length) { 8 | $('#sortable-table-2').tablesort(); 9 | } 10 | }); 11 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/tight-grid.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | if ($('.grid').length) { 4 | var colcade = new Colcade('.grid', { 5 | columns: '.grid-col', 6 | items: '.grid-item' 7 | }); 8 | } 9 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/timer.js: -------------------------------------------------------------------------------- 1 | var timeleft = 60; 2 | var Timer = setInterval(function(){ 3 | if(timeleft <= 0){ 4 | timeleft = 60 5 | } else { 6 | document.getElementById("timer").innerHTML = timeleft + " second(s)"; 7 | } 8 | timeleft -= 1; 9 | }, 1000); -------------------------------------------------------------------------------- /assets/scss/components/_functions.scss: -------------------------------------------------------------------------------- 1 | // Functions 2 | 3 | @function social-color($key: "twitter") { 4 | @return map-get($social-colors, $key); 5 | } 6 | 7 | -------------------------------------------------------------------------------- /assets/scss/components/loaders/_variables.scss: -------------------------------------------------------------------------------- 1 | $square-box-scale: 3; 2 | $square-size: 30px; 3 | $square-corner-size: ceil($square-size / $square-box-scale); 4 | $square-corner-position: ceil($square-corner-size / $square-box-scale); -------------------------------------------------------------------------------- /assets/scss/components/mixins/_background.scss: -------------------------------------------------------------------------------- 1 | // Background Mixins // 2 | -------------------------------------------------------------------------------- /assets/scss/components/mixins/_blockqoute.scss: -------------------------------------------------------------------------------- 1 | // BlockQuote Mixins // 2 | 3 | @mixin blockquote($color) { 4 | border-color: $color; 5 | .blockquote-footer { 6 | color: $color; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /assets/scss/components/mixins/_cards.scss: -------------------------------------------------------------------------------- 1 | // Cards Mixins 2 | 3 | @mixin card-inverse-variant($bg, $border, $color) { 4 | background: $bg; 5 | border: 1px solid $border; 6 | color: $color; 7 | } 8 | -------------------------------------------------------------------------------- /assets/scss/components/plugin-overrides/_ace.scss: -------------------------------------------------------------------------------- 1 | /* Ace Editor */ 2 | .ace_editor { 3 | margin: auto; 4 | height: 300px; 5 | width: 100%; 6 | font: 14px/normal SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 7 | 8 | .ace_content { 9 | font-size: $default-font-size; 10 | } 11 | } -------------------------------------------------------------------------------- /assets/scss/components/plugin-overrides/_c3.scss: -------------------------------------------------------------------------------- 1 | .c3-axis, 2 | .c3-legend-item { 3 | fill: rgba(255, 255, 255, 0.7); 4 | } 5 | .c3 path, 6 | .c3 line { 7 | stroke: #2e2f32; 8 | } 9 | .c3-chart-arcs-title { 10 | fill: rgba(255, 255, 255, 0.7); 11 | } 12 | -------------------------------------------------------------------------------- /assets/scss/components/plugin-overrides/_codemirror.scss: -------------------------------------------------------------------------------- 1 | /* CodeMirror */ 2 | 3 | .CodeMirror { 4 | font-size: $default-font-size; 5 | font-weight: normal; 6 | height: auto; 7 | text-align: left; 8 | min-height: auto; 9 | } 10 | .CodeMirror-scroll { 11 | min-height: auto; 12 | } 13 | -------------------------------------------------------------------------------- /assets/scss/components/plugin-overrides/_google-charts.scss: -------------------------------------------------------------------------------- 1 | /* Google Charts */ 2 | 3 | .google-chart-container { 4 | .google-charts { 5 | width: 100%; 6 | height: 280px; 7 | min-height: 280px; 8 | min-width: 100%; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assets/scss/components/plugin-overrides/_icheck.scss: -------------------------------------------------------------------------------- 1 | /* Icheck */ 2 | 3 | .icheck, 4 | .icheck-flat, 5 | .icheck-square, 6 | .icheck-line { 7 | margin-bottom: .5rem; 8 | label { 9 | font-size: .8125rem; 10 | line-height: 1.5; 11 | margin-left: 5px; 12 | margin-bottom: 0; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /assets/scss/components/plugin-overrides/_justguage.scss: -------------------------------------------------------------------------------- 1 | .gauge { 2 | text { 3 | fill: $text-muted; 4 | } 5 | } -------------------------------------------------------------------------------- /assets/scss/components/plugin-overrides/_jvectormap.scss: -------------------------------------------------------------------------------- 1 | /* Jvectormap */ 2 | 3 | .jvectormap-container { 4 | background: $white; 5 | } 6 | 7 | .vector-map { 8 | width: 100%; 9 | height: 300px; 10 | } -------------------------------------------------------------------------------- /assets/scss/components/plugin-overrides/_morris.scss: -------------------------------------------------------------------------------- 1 | .morris-chart { 2 | text { 3 | fill: $text-muted; 4 | } 5 | } -------------------------------------------------------------------------------- /assets/scss/components/plugin-overrides/_quill.scss: -------------------------------------------------------------------------------- 1 | /* Quill Editor */ 2 | 3 | .quill-container { 4 | height: 300px; 5 | } 6 | .ql-toolbar, 7 | .quill-container { 8 | &.ql-snow { 9 | border-color: $border-color; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /assets/scss/components/plugin-overrides/_summernote.scss: -------------------------------------------------------------------------------- 1 | /* Summernote Editor */ 2 | 3 | .note-editor{ 4 | &.note-frame { 5 | border: 1px solid $border-color; 6 | } 7 | } 8 | .note-popover { 9 | border: 1px solid $border-color; 10 | } 11 | -------------------------------------------------------------------------------- /assets/scss/components/plugin-overrides/_tinymce.scss: -------------------------------------------------------------------------------- 1 | /* TinyMCE Editor */ 2 | 3 | .mce-tinymce { 4 | &.mce-panel, 5 | .mce-panel { 6 | border-color: $border-color; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/es-ca.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/1x1/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/es-ca.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/flag-icon-css/flags/4x3/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /assets/vendors/mdi/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/vendors/mdi/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /assets/vendors/mdi/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/vendors/mdi/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /assets/vendors/mdi/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/vendors/mdi/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /assets/vendors/mdi/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/vendors/mdi/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /assets/vendors/owl-carousel-2/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/assets/vendors/owl-carousel-2/owl.video.play.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "delight-im/auth": "^8.3", 4 | "hcgcloud/pterodactyl-sdk": "^1.0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /latestVersion.txt: -------------------------------------------------------------------------------- 1 | v1.3 BETA 2 | -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- 1 | void; 4 | export declare function read(path: string, settings: Settings, callback: AsyncCallback): void; 5 | -------------------------------------------------------------------------------- /node_modules/@nodelib/fs.stat/out/providers/sync.d.ts: -------------------------------------------------------------------------------- 1 | import type Settings from '../settings'; 2 | import type { Stats } from '../types'; 3 | export declare function read(path: string, settings: Settings): Stats; 4 | -------------------------------------------------------------------------------- /node_modules/@nodelib/fs.stat/out/types/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import type * as fs from 'fs'; 3 | export declare type Stats = fs.Stats; 4 | export declare type ErrnoException = NodeJS.ErrnoException; 5 | -------------------------------------------------------------------------------- /node_modules/@nodelib/fs.stat/out/types/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/@nodelib/fs.walk/out/providers/index.d.ts: -------------------------------------------------------------------------------- 1 | import AsyncProvider from './async'; 2 | import StreamProvider from './stream'; 3 | import SyncProvider from './sync'; 4 | export { AsyncProvider, StreamProvider, SyncProvider }; 5 | -------------------------------------------------------------------------------- /node_modules/@nodelib/fs.walk/out/readers/reader.d.ts: -------------------------------------------------------------------------------- 1 | import type Settings from '../settings'; 2 | export default class Reader { 3 | protected readonly _root: string; 4 | protected readonly _settings: Settings; 5 | constructor(_root: string, _settings: Settings); 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/@nodelib/fs.walk/out/types/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import type * as scandir from '@nodelib/fs.scandir'; 3 | export declare type Entry = scandir.Entry; 4 | export declare type Errno = NodeJS.ErrnoException; 5 | export interface QueueItem { 6 | directory: string; 7 | base?: string; 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/@nodelib/fs.walk/out/types/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/acorn/bin/acorn: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict'; 3 | 4 | require('../dist/bin.js'); 5 | -------------------------------------------------------------------------------- /node_modules/acorn/dist/acorn.mjs.d.ts: -------------------------------------------------------------------------------- 1 | import * as acorn from "./acorn"; 2 | export = acorn; -------------------------------------------------------------------------------- /node_modules/binary-extensions/binary-extensions.json.d.ts: -------------------------------------------------------------------------------- 1 | declare const binaryExtensionsJson: readonly string[]; 2 | 3 | export = binaryExtensionsJson; 4 | -------------------------------------------------------------------------------- /node_modules/binary-extensions/index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | List of binary file extensions. 3 | 4 | @example 5 | ``` 6 | import binaryExtensions = require('binary-extensions'); 7 | 8 | console.log(binaryExtensions); 9 | //=> ['3ds', '3g2', …] 10 | ``` 11 | */ 12 | declare const binaryExtensions: readonly string[]; 13 | 14 | export = binaryExtensions; 15 | -------------------------------------------------------------------------------- /node_modules/binary-extensions/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./binary-extensions.json'); 2 | -------------------------------------------------------------------------------- /node_modules/cosmiconfig/dist/getDirectory.d.ts: -------------------------------------------------------------------------------- 1 | declare function getDirectory(filepath: string): Promise; 2 | declare function getDirectorySync(filepath: string): string; 3 | export { getDirectory, getDirectorySync }; 4 | //# sourceMappingURL=getDirectory.d.ts.map -------------------------------------------------------------------------------- /node_modules/cosmiconfig/dist/getDirectory.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"getDirectory.d.ts","sourceRoot":"","sources":["../src/getDirectory.ts"],"names":[],"mappings":"AAGA,iBAAe,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAU7D;AAED,iBAAS,gBAAgB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAUlD;AAED,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,CAAC"} -------------------------------------------------------------------------------- /node_modules/cosmiconfig/dist/getPropertyByPath.d.ts: -------------------------------------------------------------------------------- 1 | declare function getPropertyByPath(source: { 2 | [key: string]: unknown; 3 | }, path: string | Array): unknown; 4 | export { getPropertyByPath }; 5 | //# sourceMappingURL=getPropertyByPath.d.ts.map -------------------------------------------------------------------------------- /node_modules/cosmiconfig/dist/getPropertyByPath.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"getPropertyByPath.d.ts","sourceRoot":"","sources":["../src/getPropertyByPath.ts"],"names":[],"mappings":"AAKA,iBAAS,iBAAiB,CACxB,MAAM,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CAAE,EAClC,IAAI,EAAE,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,GAC3B,OAAO,CAgBT;AAED,OAAO,EAAE,iBAAiB,EAAE,CAAC"} -------------------------------------------------------------------------------- /node_modules/cosmiconfig/dist/loaders.d.ts: -------------------------------------------------------------------------------- 1 | import { LoadersSync } from './types'; 2 | declare const loaders: LoadersSync; 3 | export { loaders }; 4 | //# sourceMappingURL=loaders.d.ts.map -------------------------------------------------------------------------------- /node_modules/cosmiconfig/dist/loaders.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"loaders.d.ts","sourceRoot":"","sources":["../src/loaders.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AA0CtC,QAAA,MAAM,OAAO,EAAE,WAA4C,CAAC;AAE5D,OAAO,EAAE,OAAO,EAAE,CAAC"} -------------------------------------------------------------------------------- /node_modules/cosmiconfig/dist/readFile.d.ts: -------------------------------------------------------------------------------- 1 | interface Options { 2 | throwNotFound?: boolean; 3 | } 4 | declare function readFile(filepath: string, options?: Options): Promise; 5 | declare function readFileSync(filepath: string, options?: Options): string | null; 6 | export { readFile, readFileSync }; 7 | //# sourceMappingURL=readFile.d.ts.map -------------------------------------------------------------------------------- /node_modules/cosmiconfig/dist/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /node_modules/cosmiconfig/dist/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"types.js"} -------------------------------------------------------------------------------- /node_modules/defined/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/defined/example/defined.js: -------------------------------------------------------------------------------- 1 | var defined = require('../'); 2 | var opts = { y : false, w : 4 }; 3 | var x = defined(opts.x, opts.y, opts.w, 8); 4 | console.log(x); 5 | -------------------------------------------------------------------------------- /node_modules/defined/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { 2 | for (var i = 0; i < arguments.length; i++) { 3 | if (arguments[i] !== undefined) return arguments[i]; 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/defined/test/falsy.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var defined = require('../'); 3 | 4 | test('falsy', function (t) { 5 | t.plan(1); 6 | var opts = { y : false, w : 4 }; 7 | var x = defined(opts.x, opts.y, opts.w, 8); 8 | t.equal(x, false); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/detective/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "11" 4 | - "10" 5 | - "9" 6 | - "8" 7 | - "6" 8 | - "4" 9 | - "iojs" 10 | - "0.12" 11 | - "0.10" 12 | - "0.8" 13 | sudo: false 14 | before_install: 15 | - 'nvm install-latest-npm' 16 | matrix: 17 | fast_finish: true 18 | -------------------------------------------------------------------------------- /node_modules/detective/bench/detect.js: -------------------------------------------------------------------------------- 1 | var detective = require('../'); 2 | var fs = require('fs'); 3 | 4 | var src = fs.readFileSync(__dirname + '/src/jquery.js', 'utf8'); 5 | var t0 = Date.now(); 6 | var requires = detective(src); 7 | console.log(Date.now() - t0); 8 | -------------------------------------------------------------------------------- /node_modules/detective/bench/esprima_v_acorn.txt: -------------------------------------------------------------------------------- 1 | esprima: 2 | 3 | $ for i in {1..5}; do node detect.js; done 4 | 704 5 | 702 6 | 704 7 | 704 8 | 697 9 | 10 | acorn: 11 | 12 | $ for i in {1..5}; do node detect.js; done 13 | 555 14 | 552 15 | 585 16 | 549 17 | 583 18 | 19 | -------------------------------------------------------------------------------- /node_modules/detective/bin/detective.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var detective = require('../'); 4 | var argv = require('minimist')(process.argv.slice(2)); 5 | var fs = require('fs'); 6 | 7 | argv._.forEach(function(file) { 8 | var src = fs.readFileSync(file, 'utf8'); 9 | var requires = detective(src, argv); 10 | console.log(requires.join('\n')); 11 | }); 12 | -------------------------------------------------------------------------------- /node_modules/detective/example/strings.js: -------------------------------------------------------------------------------- 1 | var detective = require('../'); 2 | var fs = require('fs'); 3 | 4 | var src = fs.readFileSync(__dirname + '/strings_src.js'); 5 | var requires = detective(src); 6 | console.dir(requires); 7 | -------------------------------------------------------------------------------- /node_modules/detective/example/strings_src.js: -------------------------------------------------------------------------------- 1 | var a = require('a'); 2 | var b = require('b'); 3 | var c = require('c'); 4 | -------------------------------------------------------------------------------- /node_modules/detective/test/chained.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var detective = require('../'); 3 | var fs = require('fs'); 4 | var src = fs.readFileSync(__dirname + '/files/chained.js'); 5 | 6 | test('chained', function (t) { 7 | t.deepEqual(detective(src), [ 'c', 'b', 'a' ]); 8 | t.end(); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/detective/test/es6-module.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var detective = require('../'); 3 | var fs = require('fs'); 4 | var src = fs.readFileSync(__dirname + '/files/es6-module.js'); 5 | 6 | test('es6-module', function (t) { 7 | t.plan(1); 8 | t.deepEqual(detective(src, {parse: {sourceType: 'module'}}), [ 'a', 'b' ]); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/detective/test/files/both.js: -------------------------------------------------------------------------------- 1 | require('a'); 2 | require('b'); 3 | require('c' + x); 4 | var moo = require('d' + y).moo; 5 | -------------------------------------------------------------------------------- /node_modules/detective/test/files/chained.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | require('c').hello().goodbye() 4 | require('b').hello() 5 | require('a') 6 | -------------------------------------------------------------------------------- /node_modules/detective/test/files/es6-module.js: -------------------------------------------------------------------------------- 1 | var a = require('a'); 2 | 3 | export default function () { 4 | var b = require('b'); 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/detective/test/files/for-await.js: -------------------------------------------------------------------------------- 1 | async function main () { 2 | for await (const _ of (async function* () {})()) { 3 | require(_) 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/detective/test/files/generators.js: -------------------------------------------------------------------------------- 1 | var a = require('a'); 2 | 3 | function *gen() { 4 | yield require('b'); 5 | } -------------------------------------------------------------------------------- /node_modules/detective/test/files/optional-catch.js: -------------------------------------------------------------------------------- 1 | try { 2 | require; 3 | } catch { 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/detective/test/files/rest-spread.js: -------------------------------------------------------------------------------- 1 | var a = require('a'); 2 | var b = require('b'); 3 | var c = require('c'); 4 | 5 | 6 | var obj = { foo: 'bar', bee: 'bop' } 7 | var spread = { ...obj } 8 | var { foo, ...rest } = obj 9 | 10 | -------------------------------------------------------------------------------- /node_modules/detective/test/files/set-in-object-pattern.js: -------------------------------------------------------------------------------- 1 | var a = load('a'); 2 | var b = load('b'); 3 | var c = load('c'); 4 | var abc = a.b(c); 5 | 6 | function load2({set = 'hello'}) { 7 | return load('tt'); 8 | } 9 | 10 | var loadUse = load2(); 11 | -------------------------------------------------------------------------------- /node_modules/detective/test/files/shebang.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var a = require('a'); 4 | var b = require('b'); 5 | var c = require('c'); 6 | -------------------------------------------------------------------------------- /node_modules/detective/test/files/sparse-array.js: -------------------------------------------------------------------------------- 1 | var o = [,,,,] 2 | 3 | require('./foo') 4 | -------------------------------------------------------------------------------- /node_modules/detective/test/files/strings.js: -------------------------------------------------------------------------------- 1 | var a = require('a'); 2 | var b = require('b'); 3 | var c = require('c'); 4 | var abc = a.b(c); 5 | 6 | var EventEmitter = require('events').EventEmitter; 7 | 8 | var x = require('doom')(5,6,7); 9 | x(8,9); 10 | c.require('notthis'); 11 | var y = require('y') * 100; 12 | 13 | var EventEmitter2 = require('events2').EventEmitter(); -------------------------------------------------------------------------------- /node_modules/detective/test/files/word.js: -------------------------------------------------------------------------------- 1 | var a = load('a'); 2 | var b = load('b'); 3 | var c = load('c'); 4 | var abc = a.b(c); 5 | 6 | var EventEmitter = load('events').EventEmitter; 7 | 8 | var x = load('doom')(5,6,7); 9 | x(8,9); 10 | c.load('notthis'); 11 | var y = load('y') * 100; 12 | 13 | var EventEmitter2 = load('events2').EventEmitter(); 14 | -------------------------------------------------------------------------------- /node_modules/detective/test/files/yield.js: -------------------------------------------------------------------------------- 1 | (function * () { 2 | var a = require('a'); 3 | var b = yield require('c')(a); 4 | })(); 5 | -------------------------------------------------------------------------------- /node_modules/detective/test/generators.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var detective = require('../'); 3 | var fs = require('fs'); 4 | var src = fs.readFileSync(__dirname + '/files/generators.js'); 5 | 6 | test('generators', function (t) { 7 | t.plan(1); 8 | t.deepEqual(detective(src), [ 'a', 'b' ]); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/detective/test/nested.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var detective = require('../'); 3 | var fs = require('fs'); 4 | var src = fs.readFileSync(__dirname + '/files/nested.js'); 5 | 6 | test('nested', function (t) { 7 | t.deepEqual(detective(src), [ 'a', 'b', 'c' ]); 8 | t.end(); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/detective/test/rest-spread.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var detective = require('../'); 3 | var fs = require('fs'); 4 | var src = fs.readFileSync(__dirname + '/files/rest-spread.js'); 5 | 6 | test('rest-spread', function (t) { 7 | t.doesNotThrow(detective.bind(detective, src), 'Files with rest or spread do not throw') 8 | t.end(); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/detective/test/return.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var detective = require('../'); 3 | var fs = require('fs'); 4 | var src = [ 'require("a")\nreturn' ]; 5 | 6 | test('return', function (t) { 7 | t.plan(1); 8 | t.deepEqual(detective(src), [ 'a' ]); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/detective/test/shebang.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var detective = require('../'); 3 | var fs = require('fs'); 4 | var src = fs.readFileSync(__dirname + '/files/shebang.js'); 5 | 6 | test('shebang', function (t) { 7 | t.plan(1); 8 | t.deepEqual(detective(src), [ 'a', 'b', 'c' ]); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/detective/test/strings.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var detective = require('../'); 3 | var fs = require('fs'); 4 | var src = fs.readFileSync(__dirname + '/files/strings.js'); 5 | 6 | test('single', function (t) { 7 | t.deepEqual(detective(src), [ 'a', 'b', 'c', 'events', 'doom', 'y', 'events2' ]); 8 | t.end(); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/detective/test/yield.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var detective = require('../'); 3 | var fs = require('fs'); 4 | var src = fs.readFileSync(__dirname + '/files/yield.js'); 5 | 6 | test('yield', function (t) { 7 | t.plan(1); 8 | t.deepEqual(detective(src), [ 'a', 'c' ]); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/dlv/dist/dlv.es.js: -------------------------------------------------------------------------------- 1 | export default function(t,e,l,n,r){for(e=e.split?e.split("."):e,n=0;n(items: T[][]): T[]; 2 | export declare function splitWhen(items: T[], predicate: (item: T) => boolean): T[][]; 3 | -------------------------------------------------------------------------------- /node_modules/fast-glob/out/utils/errno.d.ts: -------------------------------------------------------------------------------- 1 | import { ErrnoException } from '../types'; 2 | export declare function isEnoentCodeError(error: ErrnoException): boolean; 3 | -------------------------------------------------------------------------------- /node_modules/fast-glob/out/utils/errno.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.isEnoentCodeError = void 0; 4 | function isEnoentCodeError(error) { 5 | return error.code === 'ENOENT'; 6 | } 7 | exports.isEnoentCodeError = isEnoentCodeError; 8 | -------------------------------------------------------------------------------- /node_modules/fast-glob/out/utils/fs.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import * as fs from 'fs'; 3 | import { Dirent } from '@nodelib/fs.walk'; 4 | export declare function createDirentFromStats(name: string, stats: fs.Stats): Dirent; 5 | -------------------------------------------------------------------------------- /node_modules/fast-glob/out/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | import * as array from './array'; 2 | import * as errno from './errno'; 3 | import * as fs from './fs'; 4 | import * as path from './path'; 5 | import * as pattern from './pattern'; 6 | import * as stream from './stream'; 7 | import * as string from './string'; 8 | export { array, errno, fs, path, pattern, stream, string }; 9 | -------------------------------------------------------------------------------- /node_modules/fast-glob/out/utils/stream.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import { Readable } from 'stream'; 3 | export declare function merge(streams: Readable[]): NodeJS.ReadableStream; 4 | -------------------------------------------------------------------------------- /node_modules/fast-glob/out/utils/string.d.ts: -------------------------------------------------------------------------------- 1 | export declare function isString(input: unknown): input is string; 2 | export declare function isEmpty(input: string): boolean; 3 | -------------------------------------------------------------------------------- /node_modules/fastq/.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: npm 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | open-pull-requests-limit: 10 8 | ignore: 9 | - dependency-name: standard 10 | versions: 11 | - 16.0.3 12 | -------------------------------------------------------------------------------- /node_modules/fastq/example.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | /* eslint-disable no-var */ 4 | 5 | var queue = require('./')(worker, 1) 6 | 7 | queue.push(42, function (err, result) { 8 | if (err) { throw err } 9 | console.log('the result is', result) 10 | }) 11 | 12 | function worker (arg, cb) { 13 | cb(null, 42 * 2) 14 | } 15 | -------------------------------------------------------------------------------- /node_modules/fastq/example.mjs: -------------------------------------------------------------------------------- 1 | import { promise as queueAsPromised } from './queue.js' 2 | 3 | /* eslint-disable */ 4 | 5 | const queue = queueAsPromised(worker, 1) 6 | 7 | console.log('the result is', await queue.push(42)) 8 | 9 | async function worker (arg) { 10 | return 42 * 2 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/fastq/test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs", 5 | "noEmit": true, 6 | "strict": true 7 | }, 8 | "files": [ 9 | "./example.ts" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/function-bind/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "func-name-matching": 0, 8 | "indent": [2, 4], 9 | "max-nested-callbacks": [2, 3], 10 | "max-params": [2, 3], 11 | "max-statements": [2, 20], 12 | "no-new-func": [1], 13 | "strict": [0] 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /node_modules/function-bind/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var implementation = require('./implementation'); 4 | 5 | module.exports = Function.prototype.bind || implementation; 6 | -------------------------------------------------------------------------------- /node_modules/function-bind/test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "array-bracket-newline": 0, 4 | "array-element-newline": 0, 5 | "max-statements-per-line": [2, { "max": 2 }], 6 | "no-invalid-this": 0, 7 | "no-magic-numbers": 0, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/has/README.md: -------------------------------------------------------------------------------- 1 | # has 2 | 3 | > Object.prototype.hasOwnProperty.call shortcut 4 | 5 | ## Installation 6 | 7 | ```sh 8 | npm install --save has 9 | ``` 10 | 11 | ## Usage 12 | 13 | ```js 14 | var has = require('has'); 15 | 16 | has({}, 'hasOwnProperty'); // false 17 | has(Object.prototype, 'hasOwnProperty'); // true 18 | ``` 19 | -------------------------------------------------------------------------------- /node_modules/has/src/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var bind = require('function-bind'); 4 | 5 | module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty); 6 | -------------------------------------------------------------------------------- /node_modules/is-arrayish/.istanbul.yml: -------------------------------------------------------------------------------- 1 | instrumentation: 2 | excludes: 3 | - test.js 4 | - test/**/* 5 | -------------------------------------------------------------------------------- /node_modules/is-arrayish/.npmignore: -------------------------------------------------------------------------------- 1 | /coverage/ 2 | /test.js 3 | /test/ 4 | *.sw[a-p] 5 | /node_modules/ 6 | -------------------------------------------------------------------------------- /node_modules/is-arrayish/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function isArrayish(obj) { 4 | if (!obj) { 5 | return false; 6 | } 7 | 8 | return obj instanceof Array || Array.isArray(obj) || 9 | (obj.length >= 0 && obj.splice instanceof Function); 10 | }; 11 | -------------------------------------------------------------------------------- /node_modules/is-binary-path/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const path = require('path'); 3 | const binaryExtensions = require('binary-extensions'); 4 | 5 | const extensions = new Set(binaryExtensions); 6 | 7 | module.exports = filePath => extensions.has(path.extname(filePath).slice(1).toLowerCase()); 8 | -------------------------------------------------------------------------------- /node_modules/is-core-module/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | var toString = {}.toString; 2 | 3 | module.exports = Array.isArray || function (arr) { 4 | return toString.call(arr) == '[object Array]'; 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.12" 6 | - "iojs" 7 | before_install: 8 | - npm install -g npm@~1.4.6 9 | -------------------------------------------------------------------------------- /node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.log(argv); 3 | -------------------------------------------------------------------------------- /node_modules/minimist/test/parse_modified.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('parse with modifier functions' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b', '123' ], { boolean: 'b' }); 8 | t.deepEqual(argv, { b: true, _: [123] }); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /node_modules/nanoid/async/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module", 3 | "main": "index.cjs", 4 | "module": "index.js", 5 | "react-native": { 6 | "./index.js": "./index.native.js" 7 | }, 8 | "browser": { 9 | "./index.js": "./index.browser.js", 10 | "./index.cjs": "./index.browser.cjs" 11 | } 12 | } -------------------------------------------------------------------------------- /node_modules/nanoid/bin/nanoid.cjs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | let { nanoid } = require('..') 4 | 5 | process.stdout.write(nanoid() + '\n') 6 | -------------------------------------------------------------------------------- /node_modules/nanoid/nanoid.js: -------------------------------------------------------------------------------- 1 | export let nanoid=(t=21)=>{let e="",r=crypto.getRandomValues(new Uint8Array(t));for(;t--;){let n=63&r[t];e+=n<36?n.toString(36):n<62?(n-26).toString(36).toUpperCase():n<63?"_":"-"}return e}; -------------------------------------------------------------------------------- /node_modules/nanoid/non-secure/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module", 3 | "main": "index.cjs", 4 | "module": "index.js", 5 | "react-native": "index.js" 6 | } -------------------------------------------------------------------------------- /node_modules/nanoid/url-alphabet/index.cjs: -------------------------------------------------------------------------------- 1 | let urlAlphabet = 2 | 'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict' 3 | module.exports = { urlAlphabet } 4 | -------------------------------------------------------------------------------- /node_modules/nanoid/url-alphabet/index.js: -------------------------------------------------------------------------------- 1 | let urlAlphabet = 2 | 'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict' 3 | export { urlAlphabet } 4 | -------------------------------------------------------------------------------- /node_modules/nanoid/url-alphabet/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module", 3 | "main": "index.cjs", 4 | "module": "index.js", 5 | "react-native": "index.js" 6 | } -------------------------------------------------------------------------------- /node_modules/picomatch/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/picomatch'); 4 | -------------------------------------------------------------------------------- /node_modules/postcss-js/index.js: -------------------------------------------------------------------------------- 1 | let objectify = require('./objectifier') 2 | let parse = require('./parser') 3 | let async = require('./async') 4 | let sync = require('./sync') 5 | 6 | module.exports = { 7 | objectify, 8 | parse, 9 | async, 10 | sync 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/postcss-js/index.mjs: -------------------------------------------------------------------------------- 1 | import index from './index.js' 2 | 3 | export default index 4 | 5 | export const objectify = index.objectify 6 | export const parse = index.parse 7 | export const async = index.async 8 | export const sync = index.sync 9 | -------------------------------------------------------------------------------- /node_modules/postcss-selector-parser/dist/sortAscending.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | exports.__esModule = true; 4 | exports["default"] = sortAscending; 5 | 6 | function sortAscending(list) { 7 | return list.sort(function (a, b) { 8 | return a - b; 9 | }); 10 | } 11 | 12 | ; 13 | module.exports = exports.default; -------------------------------------------------------------------------------- /node_modules/postcss/lib/comment.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | let Node = require('./node') 4 | 5 | class Comment extends Node { 6 | constructor (defaults) { 7 | super(defaults) 8 | this.type = 'comment' 9 | } 10 | } 11 | 12 | module.exports = Comment 13 | -------------------------------------------------------------------------------- /node_modules/postcss/lib/parse.d.ts: -------------------------------------------------------------------------------- 1 | import { Parser } from './postcss.js' 2 | 3 | declare const parse: Parser 4 | 5 | export default parse 6 | -------------------------------------------------------------------------------- /node_modules/postcss/lib/stringify.d.ts: -------------------------------------------------------------------------------- 1 | import { Stringifier } from './postcss.js' 2 | 3 | declare const stringify: Stringifier 4 | 5 | export default stringify 6 | -------------------------------------------------------------------------------- /node_modules/postcss/lib/stringify.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | let Stringifier = require('./stringifier') 4 | 5 | module.exports = function stringify (node, builder) { 6 | let str = new Stringifier(builder) 7 | str.stringify(node) 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/postcss/lib/symbols.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = { 4 | isClean: Symbol('isClean') 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/postcss/lib/warn-once.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | let printed = {} 4 | 5 | module.exports = function warnOnce (message) { 6 | if (printed[message]) return 7 | printed[message] = true 8 | 9 | if (typeof console !== 'undefined' && console.warn) { 10 | console.warn(message) 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /node_modules/queue-microtask/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const queueMicrotask: (cb: () => void) => void 2 | export = queueMicrotask 3 | -------------------------------------------------------------------------------- /node_modules/resolve/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security 2 | 3 | Please email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report. 4 | -------------------------------------------------------------------------------- /node_modules/resolve/async.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/async'); 4 | -------------------------------------------------------------------------------- /node_modules/resolve/example/async.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | resolve('tap', { basedir: __dirname }, function (err, res) { 3 | if (err) console.error(err); 4 | else console.log(res); 5 | }); 6 | -------------------------------------------------------------------------------- /node_modules/resolve/example/sync.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | var res = resolve.sync('tap', { basedir: __dirname }); 3 | console.log(res); 4 | -------------------------------------------------------------------------------- /node_modules/resolve/index.js: -------------------------------------------------------------------------------- 1 | var async = require('./lib/async'); 2 | async.core = require('./lib/core'); 3 | async.isCore = require('./lib/is-core'); 4 | async.sync = require('./lib/sync'); 5 | 6 | module.exports = async; 7 | -------------------------------------------------------------------------------- /node_modules/resolve/lib/is-core.js: -------------------------------------------------------------------------------- 1 | var isCoreModule = require('is-core-module'); 2 | 3 | module.exports = function isCore(x) { 4 | return isCoreModule(x); 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/resolve/sync.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/sync'); 4 | -------------------------------------------------------------------------------- /node_modules/resolve/test/dotdot/abc/index.js: -------------------------------------------------------------------------------- 1 | var x = require('..'); 2 | console.log(x); 3 | -------------------------------------------------------------------------------- /node_modules/resolve/test/dotdot/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'whatever'; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/module_dir/xmodules/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x * 100; }; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/module_dir/ymodules/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x + 100; }; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/module_dir/zmodules/bbb/main.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { return n * 111; }; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/module_dir/zmodules/bbb/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "main.js" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/resolve/test/node_path/x/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'A'; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/node_path/x/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'C'; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/node_path/y/bbb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'B'; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/node_path/y/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'CY'; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/nonstring.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var resolve = require('../'); 3 | 4 | test('nonstring', function (t) { 5 | t.plan(1); 6 | resolve(555, function (err, res, pkg) { 7 | t.ok(err); 8 | }); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/resolve/test/pathfilter/deep_ref/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/pathfilter/deep_ref/main.js -------------------------------------------------------------------------------- /node_modules/resolve/test/precedence/aaa.js: -------------------------------------------------------------------------------- 1 | module.exports = 'wtf'; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/precedence/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'okok'; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/precedence/aaa/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('./')); 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/precedence/bbb.js: -------------------------------------------------------------------------------- 1 | module.exports = '>_<'; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/precedence/bbb/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('./')); // should throw 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/baz/doom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/resolver/baz/doom.js -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/baz/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "baz", 3 | "main": "quux.js" 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/baz/quux.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/browser_field/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/resolver/browser_field/a.js -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/browser_field/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/resolver/browser_field/b.js -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/browser_field/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "browser_field", 3 | "main": "a", 4 | "browser": "b" 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/cup.coffee: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/dot_main/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/dot_main/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "." 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/dot_slash_main/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/dot_slash_main/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/incorrect_main/index.js: -------------------------------------------------------------------------------- 1 | // this is the actual main file 'index.js', not 'wrong.js' like the package.json would indicate 2 | module.exports = 1; 3 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/incorrect_main/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "wrong.js" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/invalid_main/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "invalid_main", 3 | "main": [ 4 | "why is this a thing", 5 | "srsly omg wtf" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/malformed_package_json/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/resolver/malformed_package_json/index.js -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/malformed_package_json/package.json: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/mug.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/resolver/mug.coffee -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/mug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/resolver/mug.js -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/multirepo/lerna.json: -------------------------------------------------------------------------------- 1 | { 2 | "packages": [ 3 | "packages/*" 4 | ], 5 | "version": "0.0.0" 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/other_path/lib/other-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/resolver/other_path/lib/other-lib.js -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/other_path/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/resolver/other_path/root.js -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/quux/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/same_names/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 42; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/same_names/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/symlinked/package/bar.js: -------------------------------------------------------------------------------- 1 | module.exports = 'bar'; 2 | -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/symlinked/package/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "bar.js" 3 | } -------------------------------------------------------------------------------- /node_modules/resolve/test/resolver/without_basedir/main.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../../../'); 2 | 3 | module.exports = function (t, cb) { 4 | resolve('mymodule', null, cb); 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/resolve/test/shadowed_core/node_modules/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GallearTech/VexPanel/e5ec4b1389ccaf1c6c5a21b8b376865783fe6a59/node_modules/resolve/test/shadowed_core/node_modules/util/index.js -------------------------------------------------------------------------------- /node_modules/reusify/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: yIxhFqtaaz5iGVYfie9mODehFYogm8S8L 2 | -------------------------------------------------------------------------------- /node_modules/reusify/benchmarks/fib.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | function fib (num) { 4 | var fib = [] 5 | 6 | fib[0] = 0 7 | fib[1] = 1 8 | for (var i = 2; i <= num; i++) { 9 | fib[i] = fib[i - 2] + fib[i - 1] 10 | } 11 | } 12 | 13 | module.exports = fib 14 | -------------------------------------------------------------------------------- /node_modules/supports-color/browser.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = { 3 | stdout: false, 4 | stderr: false 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/supports-preserve-symlinks-flag/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "env": { 7 | "browser": true, 8 | "node": true, 9 | }, 10 | 11 | "rules": { 12 | "id-length": "off", 13 | }, 14 | } 15 | -------------------------------------------------------------------------------- /node_modules/supports-preserve-symlinks-flag/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/supports-preserve-symlinks-flag/browser.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = null; 4 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/base.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/colors.js: -------------------------------------------------------------------------------- 1 | let colors = require('./lib/public/colors') 2 | module.exports = (colors.__esModule ? colors : { default: colors }).default 3 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/components.css: -------------------------------------------------------------------------------- 1 | @tailwind components; 2 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/defaultConfig.js: -------------------------------------------------------------------------------- 1 | let defaultConfig = require('./lib/public/default-config') 2 | module.exports = (defaultConfig.__esModule ? defaultConfig : { default: defaultConfig }).default 3 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/defaultTheme.js: -------------------------------------------------------------------------------- 1 | let defaultTheme = require('./lib/public/default-theme') 2 | module.exports = (defaultTheme.__esModule ? defaultTheme : { default: defaultTheme }).default 3 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/lib/util/bigSign.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { 3 | value: true 4 | }); 5 | exports.default = bigSign; 6 | function bigSign(bigIntValue) { 7 | return (bigIntValue > 0n) - (bigIntValue < 0n); 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/lib/util/escapeCommas.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { 3 | value: true 4 | }); 5 | exports.default = escapeCommas; 6 | function escapeCommas(className) { 7 | return className.replace(/\\,/g, '\\2c '); 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/lib/util/isKeyframeRule.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { 3 | value: true 4 | }); 5 | exports.default = isKeyframeRule; 6 | function isKeyframeRule(rule) { 7 | return rule.parent && rule.parent.type === 'atrule' && /keyframes$/.test(rule.parent.name); 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/lib/util/tap.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { 3 | value: true 4 | }); 5 | exports.tap = tap; 6 | function tap(value, mutator) { 7 | mutator(value); 8 | return value; 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/lib/util/toColorValue.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { 3 | value: true 4 | }); 5 | exports.default = toColorValue; 6 | function toColorValue(maybeFunction) { 7 | return typeof maybeFunction === 'function' ? maybeFunction({ 8 | }) : maybeFunction; 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/nesting/index.js: -------------------------------------------------------------------------------- 1 | let nesting = require('./plugin') 2 | 3 | module.exports = (opts) => { 4 | return { 5 | postcssPlugin: 'tailwindcss/nesting', 6 | Once(root, { result }) { 7 | return nesting(opts)(root, result) 8 | }, 9 | } 10 | } 11 | 12 | module.exports.postcss = true 13 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/plugin.js: -------------------------------------------------------------------------------- 1 | let createPlugin = require('./lib/public/create-plugin') 2 | module.exports = (createPlugin.__esModule ? createPlugin : { default: createPlugin }).default 3 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/resolveConfig.js: -------------------------------------------------------------------------------- 1 | let resolveConfig = require('./lib/public/resolve-config') 2 | module.exports = (resolveConfig.__esModule ? resolveConfig : { default: resolveConfig }).default 3 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/screens.css: -------------------------------------------------------------------------------- 1 | @tailwind screens; 2 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/scripts/create-plugin-list.js: -------------------------------------------------------------------------------- 1 | import { corePlugins } from '../src/corePlugins' 2 | import fs from 'fs' 3 | import path from 'path' 4 | 5 | let corePluginList = Object.keys(corePlugins) 6 | 7 | fs.writeFileSync( 8 | path.join(process.cwd(), 'src', 'corePluginList.js'), 9 | `export default ${JSON.stringify(corePluginList)}` 10 | ) 11 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/cli-peer-dependencies.js: -------------------------------------------------------------------------------- 1 | export let postcss = require('postcss') 2 | 3 | export function lazyAutoprefixer() { 4 | return require('autoprefixer') 5 | } 6 | 7 | export function lazyCssnano() { 8 | return require('cssnano') 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/public/create-plugin.js: -------------------------------------------------------------------------------- 1 | import createPlugin from '../util/createPlugin' 2 | export default createPlugin 3 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/public/default-config.js: -------------------------------------------------------------------------------- 1 | import { cloneDeep } from '../util/cloneDeep' 2 | import defaultConfig from '../../stubs/defaultConfig.stub' 3 | 4 | export default cloneDeep(defaultConfig) 5 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/public/default-theme.js: -------------------------------------------------------------------------------- 1 | import { cloneDeep } from '../util/cloneDeep' 2 | import defaultConfig from '../../stubs/defaultConfig.stub' 3 | 4 | export default cloneDeep(defaultConfig.theme) 5 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/public/resolve-config.js: -------------------------------------------------------------------------------- 1 | import resolveConfigObjects from '../util/resolveConfig' 2 | import getAllConfigs from '../util/getAllConfigs' 3 | 4 | export default function resolveConfig(...configs) { 5 | let [, ...defaultConfigs] = getAllConfigs(configs[0]) 6 | return resolveConfigObjects([...configs, ...defaultConfigs]) 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/util/bigSign.js: -------------------------------------------------------------------------------- 1 | export default function bigSign(bigIntValue) { 2 | return (bigIntValue > 0n) - (bigIntValue < 0n) 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/util/cloneDeep.js: -------------------------------------------------------------------------------- 1 | export function cloneDeep(value) { 2 | if (Array.isArray(value)) { 3 | return value.map((child) => cloneDeep(child)) 4 | } 5 | 6 | if (typeof value === 'object' && value !== null) { 7 | return Object.fromEntries(Object.entries(value).map(([k, v]) => [k, cloneDeep(v)])) 8 | } 9 | 10 | return value 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/util/cloneNodes.js: -------------------------------------------------------------------------------- 1 | export default function cloneNodes(nodes, source) { 2 | return nodes.map((node) => { 3 | let cloned = node.clone() 4 | 5 | if (source !== undefined) { 6 | cloned.source = source 7 | } 8 | 9 | return cloned 10 | }) 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/util/escapeClassName.js: -------------------------------------------------------------------------------- 1 | import parser from 'postcss-selector-parser' 2 | import escapeCommas from './escapeCommas' 3 | 4 | export default function escapeClassName(className) { 5 | let node = parser.className() 6 | node.value = className 7 | return escapeCommas(node?.raws?.value ?? node.value) 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/util/escapeCommas.js: -------------------------------------------------------------------------------- 1 | export default function escapeCommas(className) { 2 | return className.replace(/\\,/g, '\\2c ') 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/util/hashConfig.js: -------------------------------------------------------------------------------- 1 | import hash from 'object-hash' 2 | 3 | export default function hashConfig(config) { 4 | return hash(config, { ignoreUnknown: true }) 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/util/isKeyframeRule.js: -------------------------------------------------------------------------------- 1 | export default function isKeyframeRule(rule) { 2 | return rule.parent && rule.parent.type === 'atrule' && /keyframes$/.test(rule.parent.name) 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/util/isPlainObject.js: -------------------------------------------------------------------------------- 1 | export default function isPlainObject(value) { 2 | if (Object.prototype.toString.call(value) !== '[object Object]') { 3 | return false 4 | } 5 | 6 | const prototype = Object.getPrototypeOf(value) 7 | return prototype === null || prototype === Object.prototype 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/util/responsive.js: -------------------------------------------------------------------------------- 1 | import postcss from 'postcss' 2 | import cloneNodes from './cloneNodes' 3 | 4 | export default function responsive(rules) { 5 | return postcss 6 | .atRule({ 7 | name: 'responsive', 8 | }) 9 | .append(cloneNodes(Array.isArray(rules) ? rules : [rules])) 10 | } 11 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/util/tap.js: -------------------------------------------------------------------------------- 1 | export function tap(value, mutator) { 2 | mutator(value) 3 | return value 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/src/util/toColorValue.js: -------------------------------------------------------------------------------- 1 | export default function toColorValue(maybeFunction) { 2 | return typeof maybeFunction === 'function' ? maybeFunction({}) : maybeFunction 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/stubs/defaultPostCssConfig.stub.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/stubs/simpleConfig.stub.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: [], 3 | theme: { 4 | extend: {}, 5 | }, 6 | plugins: [], 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/tailwind.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | 3 | @tailwind components; 4 | 5 | @tailwind utilities; 6 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/utilities.css: -------------------------------------------------------------------------------- 1 | @tailwind utilities; 2 | -------------------------------------------------------------------------------- /node_modules/tailwindcss/variants.css: -------------------------------------------------------------------------------- 1 | @tailwind variants; 2 | -------------------------------------------------------------------------------- /node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * For Node.js, simply re-export the core `util.deprecate` function. 4 | */ 5 | 6 | module.exports = require('util').deprecate; 7 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/dist/legacy-exports.js: -------------------------------------------------------------------------------- 1 | export { b as binary, f as floatTime, i as intTime, o as omap, p as pairs, s as set, t as timestamp, c as warnFileDeprecation } from './warnings-df54cb69.js'; 2 | import './PlainValue-b8036b75.js'; 3 | import './resolveSeq-492ab440.js'; 4 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/dist/package.json: -------------------------------------------------------------------------------- 1 | { "type": "module" } 2 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/dist/util.js: -------------------------------------------------------------------------------- 1 | export { l as findPair, g as parseMap, h as parseSeq, k as stringifyNumber, c as stringifyString, t as toJSON } from './resolveSeq-492ab440.js'; 2 | export { T as Type, i as YAMLError, o as YAMLReferenceError, g as YAMLSemanticError, Y as YAMLSyntaxError, f as YAMLWarning } from './PlainValue-b8036b75.js'; 3 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist').YAML 2 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/map.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/types').YAMLMap 2 | require('./dist/legacy-exports').warnFileDeprecation(__filename) 3 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/pair.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/types').Pair 2 | require('./dist/legacy-exports').warnFileDeprecation(__filename) 3 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/parse-cst.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/parse-cst').parse 2 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/scalar.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/types').Scalar 2 | require('./dist/legacy-exports').warnFileDeprecation(__filename) 3 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/seq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/types').YAMLSeq 2 | require('./dist/legacy-exports').warnFileDeprecation(__filename) 3 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/types.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/types') 2 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/types/binary.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | Object.defineProperty(exports, '__esModule', { value: true }) 3 | 4 | const legacy = require('../dist/legacy-exports') 5 | exports.binary = legacy.binary 6 | exports.default = [exports.binary] 7 | 8 | legacy.warnFileDeprecation(__filename) 9 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/types/omap.js: -------------------------------------------------------------------------------- 1 | const legacy = require('../dist/legacy-exports') 2 | module.exports = legacy.omap 3 | legacy.warnFileDeprecation(__filename) 4 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/types/pairs.js: -------------------------------------------------------------------------------- 1 | const legacy = require('../dist/legacy-exports') 2 | module.exports = legacy.pairs 3 | legacy.warnFileDeprecation(__filename) 4 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/types/set.js: -------------------------------------------------------------------------------- 1 | const legacy = require('../dist/legacy-exports') 2 | module.exports = legacy.set 3 | legacy.warnFileDeprecation(__filename) 4 | -------------------------------------------------------------------------------- /node_modules/yaml/browser/util.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/util') 2 | -------------------------------------------------------------------------------- /node_modules/yaml/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist').YAML 2 | -------------------------------------------------------------------------------- /node_modules/yaml/map.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/types').YAMLMap 2 | require('./dist/legacy-exports').warnFileDeprecation(__filename) 3 | -------------------------------------------------------------------------------- /node_modules/yaml/pair.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/types').Pair 2 | require('./dist/legacy-exports').warnFileDeprecation(__filename) 3 | -------------------------------------------------------------------------------- /node_modules/yaml/parse-cst.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/parse-cst').parse 2 | -------------------------------------------------------------------------------- /node_modules/yaml/scalar.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/types').Scalar 2 | require('./dist/legacy-exports').warnFileDeprecation(__filename) 3 | -------------------------------------------------------------------------------- /node_modules/yaml/schema.js: -------------------------------------------------------------------------------- 1 | const types = require('./dist/types') 2 | const util = require('./dist/util') 3 | 4 | module.exports = types.Schema 5 | module.exports.nullOptions = types.nullOptions 6 | module.exports.strOptions = types.strOptions 7 | module.exports.stringify = util.stringifyString 8 | 9 | require('./dist/legacy-exports').warnFileDeprecation(__filename) 10 | -------------------------------------------------------------------------------- /node_modules/yaml/seq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/types').YAMLSeq 2 | require('./dist/legacy-exports').warnFileDeprecation(__filename) 3 | -------------------------------------------------------------------------------- /node_modules/yaml/types/binary.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | Object.defineProperty(exports, '__esModule', { value: true }) 3 | 4 | const legacy = require('../dist/legacy-exports') 5 | exports.binary = legacy.binary 6 | exports.default = [exports.binary] 7 | 8 | legacy.warnFileDeprecation(__filename) 9 | -------------------------------------------------------------------------------- /node_modules/yaml/types/omap.js: -------------------------------------------------------------------------------- 1 | const legacy = require('../dist/legacy-exports') 2 | module.exports = legacy.omap 3 | legacy.warnFileDeprecation(__filename) 4 | -------------------------------------------------------------------------------- /node_modules/yaml/types/pairs.js: -------------------------------------------------------------------------------- 1 | const legacy = require('../dist/legacy-exports') 2 | module.exports = legacy.pairs 3 | legacy.warnFileDeprecation(__filename) 4 | -------------------------------------------------------------------------------- /node_modules/yaml/types/set.js: -------------------------------------------------------------------------------- 1 | const legacy = require('../dist/legacy-exports') 2 | module.exports = legacy.set 3 | legacy.warnFileDeprecation(__filename) 4 | -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | .btn{ 6 | @apply rounded-full py-2 px-3 uppercase text-xs font-bold cursor-pointer tracking-wider; 7 | } -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ["./src/**/*.{html,js}"], 3 | theme: { 4 | extend: {}, 5 | }, 6 | plugins: [], 7 | } 8 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | 'ss', 5 | 962 => 'σ', 6 | 8204 => '', 7 | 8205 => '', 8 | ); 9 | --------------------------------------------------------------------------------