├── README.md ├── SQL ├── 1-schema-mysql.sql ├── 1-schema-postgresql.sql ├── 2-setup-mysql.sql ├── 2-setup-postgresql.sql ├── 3-data-mysql.sql ├── 3-data-postgresql.sql ├── 4-syslog-mysql.sql ├── 4-syslog-postgreslq.sql ├── sqlcounter-mysql │ ├── accessperiod.conf │ └── quotalimit.conf └── sqlcounter-postgresql │ ├── accessperiod.conf │ └── quotalimit.conf ├── active.html ├── address.html ├── api ├── .htaccess ├── active.php ├── address.php ├── client.php ├── config.php ├── data.php ├── dhcp.php ├── expired.php ├── forgot.php ├── history.php ├── home.php ├── identity.php ├── index.php ├── interface.php ├── level.php ├── login.php ├── logs.php ├── online.php ├── packet.php ├── payment.php ├── pool.php ├── profile.php ├── profiles.php ├── radius.php ├── route.php ├── router.php ├── shop.php ├── themes.php ├── transaction.php ├── usages.php ├── users.php ├── voucher.php └── wireless.php ├── client.html ├── composer.json ├── composer.lock ├── config.html ├── dhcp.html ├── dist ├── css │ ├── animate.css │ ├── dripicons.css │ ├── font-awesome.min.css │ ├── glyphicons.css │ ├── ionicons.min.css │ ├── lightgallery.css │ ├── linea-icon.css │ ├── material-design-iconic-font.min.css │ ├── pe-icon-7-stroke.css │ ├── simple-line-icons.css │ ├── style.css │ ├── style.css.map │ └── themify-icons.css ├── file │ ├── contact.xls │ ├── estimation.xls │ ├── list.xls │ ├── users.xls │ └── users.xlsx ├── fonts │ ├── dripicons │ │ ├── dripicons-v2.eot │ │ ├── dripicons-v2.svg │ │ ├── dripicons-v2.ttf │ │ └── dripicons-v2.woff │ ├── fontawesome │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── glyphicons │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── ionicons │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ ├── ionicons.woff │ │ └── ionicons.woff2 │ ├── lg │ │ ├── lg.svg │ │ ├── lg.ttf │ │ └── lg.woff │ ├── linea-icons │ │ ├── linea-arrows-10.eot │ │ ├── linea-arrows-10.svg │ │ ├── linea-arrows-10.ttf │ │ ├── linea-arrows-10.woff │ │ ├── linea-arrows-10d41d.eot │ │ ├── linea-basic-10.eot │ │ ├── linea-basic-10.svg │ │ ├── linea-basic-10.ttf │ │ ├── linea-basic-10.woff │ │ ├── linea-basic-10d41d.eot │ │ ├── linea-basic-elaboration-10.eot │ │ ├── linea-basic-elaboration-10.svg │ │ ├── linea-basic-elaboration-10.ttf │ │ ├── linea-basic-elaboration-10.woff │ │ ├── linea-basic-elaboration-10d41d.eot │ │ ├── linea-ecommerce-10.eot │ │ ├── linea-ecommerce-10.svg │ │ ├── linea-ecommerce-10.ttf │ │ ├── linea-ecommerce-10.woff │ │ ├── linea-ecommerce-10d41d.eot │ │ ├── linea-music-10.eot │ │ ├── linea-music-10.svg │ │ ├── linea-music-10.ttf │ │ ├── linea-music-10.woff │ │ ├── linea-music-10d41d.eot │ │ ├── linea-software-10.eot │ │ ├── linea-software-10.svg │ │ ├── linea-software-10.ttf │ │ ├── linea-software-10.woff │ │ ├── linea-software-10d41d.eot │ │ ├── linea-weather-10.eot │ │ ├── linea-weather-10.svg │ │ ├── linea-weather-10.ttf │ │ ├── linea-weather-10.woff │ │ └── linea-weather-10d41d.eot │ ├── material-design-iconic-font │ │ ├── Material-Design-Iconic-Font.eot │ │ ├── Material-Design-Iconic-Font.svg │ │ ├── Material-Design-Iconic-Font.ttf │ │ ├── Material-Design-Iconic-Font.woff │ │ └── Material-Design-Iconic-Font.woff2 │ ├── pe-icon-7 │ │ ├── Pe-icon-7-stroke.eot │ │ ├── Pe-icon-7-stroke.svg │ │ ├── Pe-icon-7-stroke.ttf │ │ └── Pe-icon-7-stroke.woff │ ├── simple-line-icons │ │ ├── Simple-Line-Icons4c82.eot │ │ ├── Simple-Line-Icons4c82.svg │ │ ├── Simple-Line-Icons4c82.ttf │ │ ├── Simple-Line-Icons4c82.woff │ │ ├── Simple-Line-Icons4c82.woff2 │ │ └── Simple-Line-Iconsd41d.eot │ └── themify-icons │ │ ├── themify.eot │ │ ├── themify.svg │ │ ├── themify.ttf │ │ └── themify.woff ├── img │ ├── bg │ │ ├── bg1.png │ │ └── bg2.jpg │ ├── blank.png │ ├── favicon.png │ ├── file-add.jpg │ ├── img-add.jpg │ ├── load.gif │ ├── loader.gif │ ├── loading.gif │ ├── loads.gif │ ├── logo-dark.png │ ├── logo-light.png │ ├── logo.png │ └── users │ │ └── no_foto.jpg └── js │ ├── active.js │ ├── address.js │ ├── client.js │ ├── config.js │ ├── controls.js │ ├── dhcp.js │ ├── expired.js │ ├── feather.min.js │ ├── forgot.js │ ├── history.js │ ├── identity.js │ ├── index.js │ ├── init.js │ ├── interface.js │ ├── level.js │ ├── login.js │ ├── logs.js │ ├── online.js │ ├── packet.js │ ├── payment.js │ ├── pool.js │ ├── profile.js │ ├── profiles.js │ ├── radius.js │ ├── route.js │ ├── router.js │ ├── shop.js │ ├── themes.js │ ├── transaction.js │ ├── usages.js │ ├── users.js │ ├── voucher.js │ └── wireless.js ├── expired.html ├── forgot.html ├── history.html ├── identity.html ├── include ├── .htaccess ├── autoload.php ├── cipher.php ├── config.php ├── connect.php ├── function.php ├── mikrotik.php ├── monitor.php └── ssh2.php ├── index.html ├── info.php ├── interface.html ├── level.html ├── login.html ├── logs.html ├── media ├── .htaccess ├── adapters │ ├── jquery-example.html │ ├── jquery-min.js │ └── jquery.js ├── barcode │ ├── 1802200434387.png │ ├── delivery_1802200434387.png │ ├── payment_1802200450178.png │ ├── payment_1816310321252.png │ ├── payout_180610090443.png │ ├── payout_180707091024.png │ ├── payout_182531090134.png │ ├── payout_182531090135.png │ └── payout_182702090646.png ├── browse.php ├── cache │ ├── .htaccess │ ├── base.css │ ├── base.js │ ├── theme_dark.css │ ├── theme_dark.js │ ├── theme_default.css │ └── theme_default.js ├── composer.json ├── conf │ ├── .htaccess │ ├── config.php │ └── upload.htaccess ├── core │ ├── .htaccess │ ├── autoload.php │ ├── bootstrap.php │ ├── class │ │ ├── browser.php │ │ ├── minifier.php │ │ ├── session.php │ │ └── uploader.php │ └── types │ │ ├── type_img.php │ │ └── type_mime.php ├── css │ ├── 000.base.css │ ├── 001.transForm.css │ ├── 999.agent.css │ └── index.php ├── doc │ ├── .htaccess │ ├── Changelog │ ├── Changelog.md │ ├── LICENSE.GPL │ └── LICENSE.LGPL ├── favicon.ico ├── index.php ├── integration │ ├── .htaccess │ ├── BolmerCMS.php │ └── drupal.php ├── js │ ├── 000._jquery.js │ ├── 002._jqueryui.js │ ├── 006.jquery.transForm.js │ ├── 006.jquery.uniform.js │ ├── 010.jquery.fixes.js │ ├── 020.jquery.rightClick.js │ ├── 021.jquery.taphold.js │ ├── 022.jquery.shDropUpload.js │ ├── 029.jquery.agent.js │ ├── 030.jquery.helper.js │ ├── 031.jquery.md5.js │ ├── 040.object.js │ ├── 041.dialogs.js │ ├── 050.init.js │ ├── 060.toolbar.js │ ├── 070.settings.js │ ├── 080.files.js │ ├── 090.folders.js │ ├── 091.menus.js │ ├── 091.viewImage.js │ ├── 100.clipboard.js │ ├── 110.dropUpload.js │ ├── 120.misc.js │ └── index.php ├── js_localize.php ├── lang │ ├── .htaccess │ ├── af.php │ ├── bg.php │ ├── ca.php │ ├── cs.php │ ├── da.php │ ├── de.php │ ├── el.php │ ├── en.php │ ├── es.php │ ├── et.php │ ├── fa.php │ ├── fi.php │ ├── fr.php │ ├── he.php │ ├── hu.php │ ├── id.php │ ├── it.php │ ├── ja.php │ ├── lt.php │ ├── lv.php │ ├── nl.php │ ├── no.php │ ├── pl.php │ ├── pt-br.php │ ├── pt.php │ ├── ro.php │ ├── ru.php │ ├── sk.php │ ├── sv.php │ ├── tr.php │ ├── uk.php │ ├── vi.php │ └── zh-cn.php ├── lib │ ├── .htaccess │ ├── class_fastImage.php │ ├── class_image.php │ ├── class_image_gd.php │ ├── class_image_gmagick.php │ ├── class_image_imagick.php │ ├── class_zipFolder.php │ ├── helper_dir.php │ ├── helper_file.php │ ├── helper_httpCache.php │ ├── helper_path.php │ ├── helper_phpGet.php │ └── helper_text.php ├── themes │ └── default │ │ ├── 01.ui.css │ │ ├── 02.misc.css │ │ ├── 02.transForm.css │ │ ├── 03.misc.css │ │ ├── README │ │ ├── css.php │ │ ├── img │ │ ├── bg_transparent.png │ │ ├── files │ │ │ ├── big │ │ │ │ ├── ..png │ │ │ │ ├── .image.png │ │ │ │ ├── avi.png │ │ │ │ ├── bat.png │ │ │ │ ├── bmp.png │ │ │ │ ├── bz2.png │ │ │ │ ├── ccd.png │ │ │ │ ├── cgi.png │ │ │ │ ├── com.png │ │ │ │ ├── csh.png │ │ │ │ ├── cue.png │ │ │ │ ├── deb.png │ │ │ │ ├── dll.png │ │ │ │ ├── doc.png │ │ │ │ ├── docx.png │ │ │ │ ├── exe.png │ │ │ │ ├── fla.png │ │ │ │ ├── flv.png │ │ │ │ ├── fon.png │ │ │ │ ├── gif.png │ │ │ │ ├── gz.png │ │ │ │ ├── htm.png │ │ │ │ ├── html.png │ │ │ │ ├── ini.png │ │ │ │ ├── iso.png │ │ │ │ ├── jar.png │ │ │ │ ├── java.png │ │ │ │ ├── jpeg.png │ │ │ │ ├── jpg.png │ │ │ │ ├── js.png │ │ │ │ ├── mds.png │ │ │ │ ├── mdx.png │ │ │ │ ├── mid.png │ │ │ │ ├── midi.png │ │ │ │ ├── mkv.png │ │ │ │ ├── mov.png │ │ │ │ ├── mp3.png │ │ │ │ ├── mp4.png │ │ │ │ ├── mpeg.png │ │ │ │ ├── mpg.png │ │ │ │ ├── nfo.png │ │ │ │ ├── nrg.png │ │ │ │ ├── ogg.png │ │ │ │ ├── pdf.png │ │ │ │ ├── php.png │ │ │ │ ├── phps.png │ │ │ │ ├── pl.png │ │ │ │ ├── pm.png │ │ │ │ ├── png.png │ │ │ │ ├── ppt.png │ │ │ │ ├── pptx.png │ │ │ │ ├── psd.png │ │ │ │ ├── qt.png │ │ │ │ ├── rar.png │ │ │ │ ├── rpm.png │ │ │ │ ├── rtf.png │ │ │ │ ├── sh.png │ │ │ │ ├── sql.png │ │ │ │ ├── srt.png │ │ │ │ ├── sub.png │ │ │ │ ├── swf.png │ │ │ │ ├── tgz.png │ │ │ │ ├── tif.png │ │ │ │ ├── tiff.png │ │ │ │ ├── torrent.png │ │ │ │ ├── ttf.png │ │ │ │ ├── txt.png │ │ │ │ ├── wav.png │ │ │ │ ├── wma.png │ │ │ │ ├── xls.png │ │ │ │ ├── xlsx.png │ │ │ │ └── zip.png │ │ │ └── small │ │ │ │ ├── ..png │ │ │ │ ├── .image.png │ │ │ │ ├── avi.png │ │ │ │ ├── bat.png │ │ │ │ ├── bmp.png │ │ │ │ ├── bz2.png │ │ │ │ ├── ccd.png │ │ │ │ ├── cgi.png │ │ │ │ ├── com.png │ │ │ │ ├── csh.png │ │ │ │ ├── cue.png │ │ │ │ ├── deb.png │ │ │ │ ├── dll.png │ │ │ │ ├── doc.png │ │ │ │ ├── docx.png │ │ │ │ ├── exe.png │ │ │ │ ├── fla.png │ │ │ │ ├── flv.png │ │ │ │ ├── fon.png │ │ │ │ ├── gif.png │ │ │ │ ├── gz.png │ │ │ │ ├── htm.png │ │ │ │ ├── html.png │ │ │ │ ├── ini.png │ │ │ │ ├── iso.png │ │ │ │ ├── jar.png │ │ │ │ ├── java.png │ │ │ │ ├── jpeg.png │ │ │ │ ├── jpg.png │ │ │ │ ├── js.png │ │ │ │ ├── mds.png │ │ │ │ ├── mdx.png │ │ │ │ ├── mid.png │ │ │ │ ├── midi.png │ │ │ │ ├── mkv.png │ │ │ │ ├── mov.png │ │ │ │ ├── mp3.png │ │ │ │ ├── mp4.png │ │ │ │ ├── mpeg.png │ │ │ │ ├── mpg.png │ │ │ │ ├── nfo.png │ │ │ │ ├── nrg.png │ │ │ │ ├── ogg.png │ │ │ │ ├── pdf.png │ │ │ │ ├── php.png │ │ │ │ ├── phps.png │ │ │ │ ├── pl.png │ │ │ │ ├── pm.png │ │ │ │ ├── png.png │ │ │ │ ├── ppt.png │ │ │ │ ├── pptx.png │ │ │ │ ├── psd.png │ │ │ │ ├── qt.png │ │ │ │ ├── rar.png │ │ │ │ ├── rpm.png │ │ │ │ ├── rtf.png │ │ │ │ ├── sh.png │ │ │ │ ├── sql.png │ │ │ │ ├── srt.png │ │ │ │ ├── sub.png │ │ │ │ ├── swf.png │ │ │ │ ├── tgz.png │ │ │ │ ├── tif.png │ │ │ │ ├── tiff.png │ │ │ │ ├── torrent.png │ │ │ │ ├── ttf.png │ │ │ │ ├── txt.png │ │ │ │ ├── wav.png │ │ │ │ ├── wma.png │ │ │ │ ├── xls.png │ │ │ │ ├── xlsx.png │ │ │ │ └── zip.png │ │ ├── icons │ │ │ ├── about.png │ │ │ ├── clipboard-add.png │ │ │ ├── clipboard-clear.png │ │ │ ├── clipboard.png │ │ │ ├── copy.png │ │ │ ├── delete.png │ │ │ ├── download.png │ │ │ ├── folder-new.png │ │ │ ├── maximize.png │ │ │ ├── move.png │ │ │ ├── refresh.png │ │ │ ├── rename.png │ │ │ ├── select.png │ │ │ ├── settings.png │ │ │ ├── upload.png │ │ │ └── view.png │ │ ├── kcf_logo.png │ │ ├── loading.gif │ │ ├── tree │ │ │ ├── denied.png │ │ │ ├── folder.png │ │ │ ├── minus.png │ │ │ └── plus.png │ │ ├── ui-icons_black.png │ │ ├── ui-icons_blue.png │ │ └── ui-icons_white.png │ │ ├── init.js │ │ └── js.php ├── tpl │ ├── .htaccess │ ├── tpl_browser.php │ ├── tpl_css.php │ └── tpl_javascript.php └── upload.php ├── menu └── footer.html ├── online.html ├── packet.html ├── payment.html ├── pool.html ├── profile.html ├── profiles.html ├── radius.html ├── route.html ├── router.html ├── shop.html ├── themes.html ├── transaction.html ├── usages.html ├── users.html ├── vendor ├── autoload.php ├── carloswgama │ └── php-onesignal │ │ ├── composer.json │ │ ├── readme.md │ │ └── src │ │ ├── CURL.php │ │ ├── Device.php │ │ ├── Exceptions │ │ └── OneSignalException.php │ │ ├── Notification.php │ │ └── OneSignal.php ├── claviska │ └── simpleimage │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── claviska │ │ └── SimpleImage.php ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json ├── filipsedivy │ └── php-download-file │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── DownloadFile.php ├── league │ └── color-extractor │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── src │ │ └── League │ │ └── ColorExtractor │ │ ├── Color.php │ │ ├── ColorExtractor.php │ │ └── Palette.php ├── markbaker │ ├── complex │ │ ├── README.md │ │ ├── classes │ │ │ ├── Autoloader.php │ │ │ ├── Bootstrap.php │ │ │ └── src │ │ │ │ ├── Complex.php │ │ │ │ ├── Exception.php │ │ │ │ ├── functions │ │ │ │ ├── abs.php │ │ │ │ ├── acos.php │ │ │ │ ├── acosh.php │ │ │ │ ├── acot.php │ │ │ │ ├── acoth.php │ │ │ │ ├── acsc.php │ │ │ │ ├── acsch.php │ │ │ │ ├── argument.php │ │ │ │ ├── asec.php │ │ │ │ ├── asech.php │ │ │ │ ├── asin.php │ │ │ │ ├── asinh.php │ │ │ │ ├── atan.php │ │ │ │ ├── atanh.php │ │ │ │ ├── conjugate.php │ │ │ │ ├── cos.php │ │ │ │ ├── cosh.php │ │ │ │ ├── cot.php │ │ │ │ ├── coth.php │ │ │ │ ├── csc.php │ │ │ │ ├── csch.php │ │ │ │ ├── exp.php │ │ │ │ ├── inverse.php │ │ │ │ ├── ln.php │ │ │ │ ├── log10.php │ │ │ │ ├── log2.php │ │ │ │ ├── negative.php │ │ │ │ ├── pow.php │ │ │ │ ├── rho.php │ │ │ │ ├── sec.php │ │ │ │ ├── sech.php │ │ │ │ ├── sin.php │ │ │ │ ├── sinh.php │ │ │ │ ├── sqrt.php │ │ │ │ ├── tan.php │ │ │ │ ├── tanh.php │ │ │ │ └── theta.php │ │ │ │ └── operations │ │ │ │ ├── add.php │ │ │ │ ├── divideby.php │ │ │ │ ├── divideinto.php │ │ │ │ ├── multiply.php │ │ │ │ └── subtract.php │ │ ├── composer.json │ │ ├── examples │ │ │ ├── complexTest.php │ │ │ ├── testFunctions.php │ │ │ └── testOperations.php │ │ └── license.md │ └── matrix │ │ ├── README.md │ │ ├── buildPhar.php │ │ ├── classes │ │ ├── Autoloader.php │ │ ├── Bootstrap.php │ │ └── src │ │ │ ├── Builder.php │ │ │ ├── Exception.php │ │ │ ├── Functions.php │ │ │ ├── Matrix.php │ │ │ ├── Operators │ │ │ ├── Addition.php │ │ │ ├── DirectSum.php │ │ │ ├── Division.php │ │ │ ├── Multiplication.php │ │ │ ├── Operator.php │ │ │ └── Subtraction.php │ │ │ ├── functions │ │ │ ├── adjoint.php │ │ │ ├── antidiagonal.php │ │ │ ├── cofactors.php │ │ │ ├── determinant.php │ │ │ ├── diagonal.php │ │ │ ├── identity.php │ │ │ ├── inverse.php │ │ │ ├── minors.php │ │ │ ├── trace.php │ │ │ └── transpose.php │ │ │ └── operations │ │ │ ├── add.php │ │ │ ├── directsum.php │ │ │ ├── divideby.php │ │ │ ├── divideinto.php │ │ │ ├── multiply.php │ │ │ └── subtract.php │ │ ├── composer.7.2.json │ │ ├── composer.json │ │ ├── examples │ │ └── test.php │ │ ├── infection.json.dist │ │ ├── license.md │ │ └── phpstan.neon ├── phpmailer │ └── phpmailer │ │ ├── COMMITMENT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── get_oauth_token.php │ │ ├── language │ │ ├── phpmailer.lang-af.php │ │ ├── phpmailer.lang-am.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ │ └── src │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php ├── phpoffice │ └── phpspreadsheet │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .sami.php │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.PHPExcel.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── bin │ │ ├── migrate-from-phpexcel │ │ └── pre-commit │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── docs │ │ ├── assets │ │ │ └── logo.svg │ │ ├── extra │ │ │ └── extra.css │ │ ├── faq.md │ │ ├── index.md │ │ ├── references │ │ │ ├── features-cross-reference.md │ │ │ ├── function-list-by-category.md │ │ │ └── function-list-by-name.md │ │ └── topics │ │ │ ├── accessing-cells.md │ │ │ ├── architecture.md │ │ │ ├── autofilters.md │ │ │ ├── calculation-engine.md │ │ │ ├── creating-spreadsheet.md │ │ │ ├── file-formats.md │ │ │ ├── images │ │ │ ├── 01-01-autofilter.png │ │ │ ├── 01-02-autofilter.png │ │ │ ├── 01-03-filter-icon-1.png │ │ │ ├── 01-03-filter-icon-2.png │ │ │ ├── 01-04-autofilter.png │ │ │ ├── 01-schematic.png │ │ │ ├── 02-readers-writers.png │ │ │ ├── 04-01-simple-autofilter.png │ │ │ ├── 04-02-dategroup-autofilter.png │ │ │ ├── 04-03-custom-autofilter-1.png │ │ │ ├── 04-03-custom-autofilter-2.png │ │ │ ├── 04-04-dynamic-autofilter.png │ │ │ ├── 04-05-topten-autofilter-1.png │ │ │ ├── 04-05-topten-autofilter-2.png │ │ │ ├── 07-simple-example-1.png │ │ │ ├── 07-simple-example-2.png │ │ │ ├── 07-simple-example-3.png │ │ │ ├── 07-simple-example-4.png │ │ │ ├── 08-cell-comment.png │ │ │ ├── 08-column-width.png │ │ │ ├── 08-page-setup-margins.png │ │ │ ├── 08-page-setup-scaling-options.png │ │ │ ├── 08-styling-border-options.png │ │ │ ├── 09-command-line-calculation.png │ │ │ ├── 09-formula-in-cell-1.png │ │ │ └── 09-formula-in-cell-2.png │ │ │ ├── memory_saving.md │ │ │ ├── migration-from-PHPExcel.md │ │ │ ├── reading-and-writing-to-file.md │ │ │ ├── reading-files.md │ │ │ ├── recipes.md │ │ │ ├── settings.md │ │ │ └── worksheets.md │ │ ├── mkdocs.yml │ │ ├── phpunit.xml.dist │ │ ├── samples │ │ ├── Autofilter │ │ │ ├── 10_Autofilter.php │ │ │ ├── 10_Autofilter_selection_1.php │ │ │ ├── 10_Autofilter_selection_2.php │ │ │ └── 10_Autofilter_selection_display.php │ │ ├── Basic │ │ │ ├── 01_Simple.php │ │ │ ├── 01_Simple_download_ods.php │ │ │ ├── 01_Simple_download_pdf.php │ │ │ ├── 01_Simple_download_xls.php │ │ │ ├── 01_Simple_download_xlsx.php │ │ │ ├── 02_Types.php │ │ │ ├── 03_Formulas.php │ │ │ ├── 04_Printing.php │ │ │ ├── 05_Feature_demo.php │ │ │ ├── 06_Largescale.php │ │ │ ├── 07_Reader.php │ │ │ ├── 08_Conditional_formatting.php │ │ │ ├── 08_Conditional_formatting_2.php │ │ │ ├── 09_Pagebreaks.php │ │ │ ├── 11_Documentsecurity.php │ │ │ ├── 12_CellProtection.php │ │ │ ├── 13_Calculation.php │ │ │ ├── 13_CalculationCyclicFormulae.php │ │ │ ├── 14_Xls.php │ │ │ ├── 15_Datavalidation.php │ │ │ ├── 16_Csv.php │ │ │ ├── 17_Html.php │ │ │ ├── 18_Extendedcalculation.php │ │ │ ├── 19_Namedrange.php │ │ │ ├── 20_Read_Excel2003XML.php │ │ │ ├── 20_Read_Gnumeric.php │ │ │ ├── 20_Read_Ods.php │ │ │ ├── 20_Read_Sylk.php │ │ │ ├── 20_Read_Xls.php │ │ │ ├── 22_Heavily_formatted.php │ │ │ ├── 23_Sharedstyles.php │ │ │ ├── 24_Readfilter.php │ │ │ ├── 25_In_memory_image.php │ │ │ ├── 26_Utf8.php │ │ │ ├── 27_Images_Xls.php │ │ │ ├── 28_Iterator.php │ │ │ ├── 29_Advanced_value_binder.php │ │ │ ├── 30_Template.php │ │ │ ├── 31_Document_properties_write.php │ │ │ ├── 31_Document_properties_write_xls.php │ │ │ ├── 37_Page_layout_view.php │ │ │ ├── 38_Clone_worksheet.php │ │ │ ├── 39_Dropdown.php │ │ │ ├── 40_Duplicate_style.php │ │ │ ├── 41_Password.php │ │ │ ├── 42_RichText.php │ │ │ ├── 43_Merge_workbooks.php │ │ │ ├── 44_Worksheet_info.php │ │ │ ├── 45_Quadratic_equation_solver.php │ │ │ ├── 46_ReadHtml.php │ │ │ └── data │ │ │ │ └── continents │ │ │ │ ├── Africa.txt │ │ │ │ ├── Asia.txt │ │ │ │ ├── Europe.txt │ │ │ │ ├── North America.txt │ │ │ │ ├── Oceania.txt │ │ │ │ └── South America.txt │ │ ├── Calculations │ │ │ ├── Database │ │ │ │ ├── DAVERAGE.php │ │ │ │ ├── DCOUNT.php │ │ │ │ ├── DGET.php │ │ │ │ ├── DMAX.php │ │ │ │ ├── DMIN.php │ │ │ │ ├── DPRODUCT.php │ │ │ │ ├── DSTDEV.php │ │ │ │ ├── DSTDEVP.php │ │ │ │ ├── DVAR.php │ │ │ │ └── DVARP.php │ │ │ └── DateTime │ │ │ │ ├── DATE.php │ │ │ │ ├── DATEVALUE.php │ │ │ │ ├── TIME.php │ │ │ │ └── TIMEVALUE.php │ │ ├── Chart │ │ │ ├── 32_Chart_read_write.php │ │ │ ├── 32_Chart_read_write_HTML.php │ │ │ ├── 32_Chart_read_write_PDF.php │ │ │ ├── 33_Chart_create_area.php │ │ │ ├── 33_Chart_create_bar.php │ │ │ ├── 33_Chart_create_bar_stacked.php │ │ │ ├── 33_Chart_create_column.php │ │ │ ├── 33_Chart_create_column_2.php │ │ │ ├── 33_Chart_create_composite.php │ │ │ ├── 33_Chart_create_line.php │ │ │ ├── 33_Chart_create_multiple_charts.php │ │ │ ├── 33_Chart_create_pie.php │ │ │ ├── 33_Chart_create_pie_custom_colors.php │ │ │ ├── 33_Chart_create_radar.php │ │ │ ├── 33_Chart_create_scatter.php │ │ │ ├── 33_Chart_create_stock.php │ │ │ ├── 34_Chart_update.php │ │ │ └── 35_Chart_render.php │ │ ├── Header.php │ │ ├── Pdf │ │ │ ├── 21_Pdf_Domdf.php │ │ │ ├── 21_Pdf_TCPDF.php │ │ │ └── 21_Pdf_mPDF.php │ │ ├── Reader │ │ │ ├── 01_Simple_file_reader_using_IOFactory.php │ │ │ ├── 02_Simple_file_reader_using_a_specified_reader.php │ │ │ ├── 03_Simple_file_reader_using_the_IOFactory_to_return_a_reader.php │ │ │ ├── 04_Simple_file_reader_using_the_IOFactory_to_identify_a_reader_to_use.php │ │ │ ├── 05_Simple_file_reader_using_the_read_data_only_option.php │ │ │ ├── 06_Simple_file_reader_loading_all_worksheets.php │ │ │ ├── 07_Simple_file_reader_loading_a_single_named_worksheet.php │ │ │ ├── 08_Simple_file_reader_loading_several_named_worksheets.php │ │ │ ├── 09_Simple_file_reader_using_a_read_filter.php │ │ │ ├── 10_Simple_file_reader_using_a_configurable_read_filter.php │ │ │ ├── 11_Reading_a_workbook_in_chunks_using_a_configurable_read_filter_(version_1).php │ │ │ ├── 12_Reading_a_workbook_in_chunks_using_a_configurable_read_filter_(version_2).php │ │ │ ├── 13_Simple_file_reader_for_multiple_CSV_files.php │ │ │ ├── 14_Reading_a_large_CSV_file_in_chunks_to_split_across_multiple_worksheets.php │ │ │ ├── 15_Simple_file_reader_for_tab_separated_value_file_using_the_Advanced_Value_Binder.php │ │ │ ├── 16_Handling_loader_exceptions_using_TryCatch.php │ │ │ ├── 17_Simple_file_reader_loading_several_named_worksheets.php │ │ │ ├── 18_Reading_list_of_worksheets_without_loading_entire_file.php │ │ │ ├── 19_Reading_worksheet_information_without_loading_entire_file.php │ │ │ ├── 20_Reader_worksheet_hyperlink_image.php │ │ │ ├── 21_Reader_CSV_Long_Integers_with_String_Value_Binder.php │ │ │ └── sampleData │ │ │ │ ├── example1.csv │ │ │ │ ├── example1.tsv │ │ │ │ ├── example1.xls │ │ │ │ ├── example2.csv │ │ │ │ ├── example2.xls │ │ │ │ └── longIntegers.csv │ │ ├── Reading_workbook_data │ │ │ ├── Custom_properties.php │ │ │ ├── Custom_property_names.php │ │ │ ├── Properties.php │ │ │ ├── Worksheet_count_and_names.php │ │ │ └── sampleData │ │ │ │ ├── example1.xls │ │ │ │ ├── example1.xlsx │ │ │ │ └── example2.xls │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── font-awesome.min.css │ │ │ │ └── phpspreadsheet.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── jquery.min.js │ │ ├── images │ │ │ ├── PhpSpreadsheet_logo.png │ │ │ ├── officelogo.jpg │ │ │ ├── paid.png │ │ │ └── termsconditions.jpg │ │ ├── index.php │ │ └── templates │ │ │ ├── 26template.xlsx │ │ │ ├── 27template.xls │ │ │ ├── 28iterators.xlsx │ │ │ ├── 30template.xls │ │ │ ├── 31docproperties.xls │ │ │ ├── 31docproperties.xlsx │ │ │ ├── 32chartreadwrite.xlsx │ │ │ ├── 32complexChartreadwrite.xlsx │ │ │ ├── 32readwriteAreaChart1.xlsx │ │ │ ├── 32readwriteAreaChart2.xlsx │ │ │ ├── 32readwriteAreaChart3.xlsx │ │ │ ├── 32readwriteAreaChart3D1.xlsx │ │ │ ├── 32readwriteAreaPercentageChart1.xlsx │ │ │ ├── 32readwriteAreaPercentageChart2.xlsx │ │ │ ├── 32readwriteAreaPercentageChart3D1.xlsx │ │ │ ├── 32readwriteAreaStackedChart1.xlsx │ │ │ ├── 32readwriteAreaStackedChart2.xlsx │ │ │ ├── 32readwriteAreaStackedChart3D1.xlsx │ │ │ ├── 32readwriteBarChart1.xlsx │ │ │ ├── 32readwriteBarChart2.xlsx │ │ │ ├── 32readwriteBarChart3.xlsx │ │ │ ├── 32readwriteBarChart3D1.xlsx │ │ │ ├── 32readwriteBarPercentageChart1.xlsx │ │ │ ├── 32readwriteBarPercentageChart2.xlsx │ │ │ ├── 32readwriteBarPercentageChart3D1.xlsx │ │ │ ├── 32readwriteBarStackedChart1.xlsx │ │ │ ├── 32readwriteBarStackedChart2.xlsx │ │ │ ├── 32readwriteBarStackedChart3D1.xlsx │ │ │ ├── 32readwriteBubbleChart1.xlsx │ │ │ ├── 32readwriteBubbleChart3D1.xlsx │ │ │ ├── 32readwriteChartWithImages1.xlsx │ │ │ ├── 32readwriteColumnChart1.xlsx │ │ │ ├── 32readwriteColumnChart2.xlsx │ │ │ ├── 32readwriteColumnChart3.xlsx │ │ │ ├── 32readwriteColumnChart3D1.xlsx │ │ │ ├── 32readwriteColumnChart4.xlsx │ │ │ ├── 32readwriteColumnPercentageChart1.xlsx │ │ │ ├── 32readwriteColumnPercentageChart2.xlsx │ │ │ ├── 32readwriteColumnPercentageChart3D1.xlsx │ │ │ ├── 32readwriteColumnStackedChart1.xlsx │ │ │ ├── 32readwriteColumnStackedChart2.xlsx │ │ │ ├── 32readwriteColumnStackedChart3D1.xlsx │ │ │ ├── 32readwriteDonutChart1.xlsx │ │ │ ├── 32readwriteDonutChart2.xlsx │ │ │ ├── 32readwriteDonutChart3.xlsx │ │ │ ├── 32readwriteDonutChart4.xlsx │ │ │ ├── 32readwriteDonutChartExploded1.xlsx │ │ │ ├── 32readwriteDonutChartMultiseries1.xlsx │ │ │ ├── 32readwriteLineChart1.xlsx │ │ │ ├── 32readwriteLineChart2.xlsx │ │ │ ├── 32readwriteLineChart3.xlsx │ │ │ ├── 32readwriteLineChart3D1.xlsx │ │ │ ├── 32readwriteLineChartNoPointMarkers1.xlsx │ │ │ ├── 32readwriteLinePercentageChart1.xlsx │ │ │ ├── 32readwriteLinePercentageChart2.xlsx │ │ │ ├── 32readwriteLineStackedChart1.xlsx │ │ │ ├── 32readwriteLineStackedChart2.xlsx │ │ │ ├── 32readwritePieChart1.xlsx │ │ │ ├── 32readwritePieChart2.xlsx │ │ │ ├── 32readwritePieChart3.xlsx │ │ │ ├── 32readwritePieChart3D1.xlsx │ │ │ ├── 32readwritePieChart4.xlsx │ │ │ ├── 32readwritePieChartExploded1.xlsx │ │ │ ├── 32readwritePieChartExploded3D1.xlsx │ │ │ ├── 32readwriteRadarChart1.xlsx │ │ │ ├── 32readwriteRadarChart2.xlsx │ │ │ ├── 32readwriteRadarChart3.xlsx │ │ │ ├── 32readwriteScatterChart1.xlsx │ │ │ ├── 32readwriteScatterChart2.xlsx │ │ │ ├── 32readwriteScatterChart3.xlsx │ │ │ ├── 32readwriteScatterChart4.xlsx │ │ │ ├── 32readwriteScatterChart5.xlsx │ │ │ ├── 32readwriteStockChart1.xlsx │ │ │ ├── 32readwriteStockChart2.xlsx │ │ │ ├── 32readwriteStockChart3.xlsx │ │ │ ├── 32readwriteStockChart4.xlsx │ │ │ ├── 32readwriteSurfaceChart1.xlsx │ │ │ ├── 32readwriteSurfaceChart2.xlsx │ │ │ ├── 32readwriteSurfaceChart3.xlsx │ │ │ ├── 32readwriteSurfaceChart4.xlsx │ │ │ ├── 36writeLineChart1.xlsx │ │ │ ├── 43mergeBook1.xlsx │ │ │ ├── 43mergeBook2.xlsx │ │ │ ├── 46readHtml.html │ │ │ ├── Excel2003XMLTest.xml │ │ │ ├── GnumericTest.gnumeric │ │ │ ├── OOCalcTest.ods │ │ │ ├── SylkTest.slk │ │ │ ├── chartSpreadsheet.php │ │ │ ├── largeSpreadsheet.php │ │ │ └── sampleSpreadsheet.php │ │ └── src │ │ ├── Bootstrap.php │ │ └── PhpSpreadsheet │ │ ├── Calculation │ │ ├── Calculation.php │ │ ├── Category.php │ │ ├── Database.php │ │ ├── DateTime.php │ │ ├── Engine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ ├── Engineering.php │ │ ├── Exception.php │ │ ├── ExceptionHandler.php │ │ ├── Financial.php │ │ ├── FormulaParser.php │ │ ├── FormulaToken.php │ │ ├── Functions.php │ │ ├── Logical.php │ │ ├── LookupRef.php │ │ ├── MathTrig.php │ │ ├── Statistical.php │ │ ├── TextData.php │ │ ├── Token │ │ │ └── Stack.php │ │ ├── functionlist.txt │ │ └── locale │ │ │ ├── bg │ │ │ ├── config │ │ │ └── functions │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ │ ├── Cell │ │ ├── AdvancedValueBinder.php │ │ ├── Cell.php │ │ ├── Coordinate.php │ │ ├── DataType.php │ │ ├── DataValidation.php │ │ ├── DataValidator.php │ │ ├── DefaultValueBinder.php │ │ ├── Hyperlink.php │ │ ├── IValueBinder.php │ │ └── StringValueBinder.php │ │ ├── Chart │ │ ├── Axis.php │ │ ├── Chart.php │ │ ├── DataSeries.php │ │ ├── DataSeriesValues.php │ │ ├── Exception.php │ │ ├── GridLines.php │ │ ├── Layout.php │ │ ├── Legend.php │ │ ├── PlotArea.php │ │ ├── Properties.php │ │ ├── Renderer │ │ │ ├── IRenderer.php │ │ │ ├── JpGraph.php │ │ │ ├── PHP Charting Libraries.txt │ │ │ └── Polyfill.php │ │ └── Title.php │ │ ├── Collection │ │ ├── Cells.php │ │ ├── CellsFactory.php │ │ └── Memory.php │ │ ├── Comment.php │ │ ├── Document │ │ ├── Properties.php │ │ └── Security.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── Helper │ │ ├── Html.php │ │ ├── Migrator.php │ │ └── Sample.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedRange.php │ │ ├── Reader │ │ ├── BaseReader.php │ │ ├── Csv.php │ │ ├── DefaultReadFilter.php │ │ ├── Exception.php │ │ ├── Gnumeric.php │ │ ├── Html.php │ │ ├── IReadFilter.php │ │ ├── IReader.php │ │ ├── Ods.php │ │ ├── Ods │ │ │ └── Properties.php │ │ ├── Security │ │ │ └── XmlScanner.php │ │ ├── Slk.php │ │ ├── Xls.php │ │ ├── Xls │ │ │ ├── Color.php │ │ │ ├── Color │ │ │ │ ├── BIFF5.php │ │ │ │ ├── BIFF8.php │ │ │ │ └── BuiltIn.php │ │ │ ├── ErrorCode.php │ │ │ ├── Escher.php │ │ │ ├── MD5.php │ │ │ ├── RC4.php │ │ │ └── Style │ │ │ │ ├── Border.php │ │ │ │ └── FillPattern.php │ │ ├── Xlsx.php │ │ ├── Xlsx │ │ │ ├── AutoFilter.php │ │ │ ├── BaseParserClass.php │ │ │ ├── Chart.php │ │ │ ├── ColumnAndRowAttributes.php │ │ │ ├── ConditionalStyles.php │ │ │ ├── DataValidations.php │ │ │ ├── Hyperlinks.php │ │ │ ├── PageSetup.php │ │ │ ├── Properties.php │ │ │ ├── SheetViewOptions.php │ │ │ ├── SheetViews.php │ │ │ ├── Styles.php │ │ │ └── Theme.php │ │ └── Xml.php │ │ ├── ReferenceHelper.php │ │ ├── RichText │ │ ├── ITextElement.php │ │ ├── RichText.php │ │ ├── Run.php │ │ └── TextElement.php │ │ ├── Settings.php │ │ ├── Shared │ │ ├── CodePage.php │ │ ├── Date.php │ │ ├── Drawing.php │ │ ├── Escher.php │ │ ├── Escher │ │ │ ├── DgContainer.php │ │ │ ├── DgContainer │ │ │ │ ├── SpgrContainer.php │ │ │ │ └── SpgrContainer │ │ │ │ │ └── SpContainer.php │ │ │ ├── DggContainer.php │ │ │ └── DggContainer │ │ │ │ ├── BstoreContainer.php │ │ │ │ └── BstoreContainer │ │ │ │ ├── BSE.php │ │ │ │ └── BSE │ │ │ │ └── Blip.php │ │ ├── File.php │ │ ├── Font.php │ │ ├── JAMA │ │ │ ├── CHANGELOG.TXT │ │ │ ├── CholeskyDecomposition.php │ │ │ ├── EigenvalueDecomposition.php │ │ │ ├── LUDecomposition.php │ │ │ ├── Matrix.php │ │ │ ├── QRDecomposition.php │ │ │ ├── SingularValueDecomposition.php │ │ │ └── utils │ │ │ │ └── Maths.php │ │ ├── OLE.php │ │ ├── OLE │ │ │ ├── ChainedBlockStream.php │ │ │ ├── PPS.php │ │ │ └── PPS │ │ │ │ ├── File.php │ │ │ │ └── Root.php │ │ ├── OLERead.php │ │ ├── PasswordHasher.php │ │ ├── StringHelper.php │ │ ├── TimeZone.php │ │ ├── Trend │ │ │ ├── BestFit.php │ │ │ ├── ExponentialBestFit.php │ │ │ ├── LinearBestFit.php │ │ │ ├── LogarithmicBestFit.php │ │ │ ├── PolynomialBestFit.php │ │ │ ├── PowerBestFit.php │ │ │ └── Trend.php │ │ ├── XMLWriter.php │ │ └── Xls.php │ │ ├── Spreadsheet.php │ │ ├── Style │ │ ├── Alignment.php │ │ ├── Border.php │ │ ├── Borders.php │ │ ├── Color.php │ │ ├── Conditional.php │ │ ├── Fill.php │ │ ├── Font.php │ │ ├── NumberFormat.php │ │ ├── Protection.php │ │ ├── Style.php │ │ └── Supervisor.php │ │ ├── Worksheet │ │ ├── AutoFilter.php │ │ ├── AutoFilter │ │ │ ├── Column.php │ │ │ └── Column │ │ │ │ └── Rule.php │ │ ├── BaseDrawing.php │ │ ├── CellIterator.php │ │ ├── Column.php │ │ ├── ColumnCellIterator.php │ │ ├── ColumnDimension.php │ │ ├── ColumnIterator.php │ │ ├── Dimension.php │ │ ├── Drawing.php │ │ ├── Drawing │ │ │ └── Shadow.php │ │ ├── HeaderFooter.php │ │ ├── HeaderFooterDrawing.php │ │ ├── Iterator.php │ │ ├── MemoryDrawing.php │ │ ├── PageMargins.php │ │ ├── PageSetup.php │ │ ├── Protection.php │ │ ├── Row.php │ │ ├── RowCellIterator.php │ │ ├── RowDimension.php │ │ ├── RowIterator.php │ │ ├── SheetView.php │ │ └── Worksheet.php │ │ └── Writer │ │ ├── BaseWriter.php │ │ ├── Csv.php │ │ ├── Exception.php │ │ ├── Html.php │ │ ├── IWriter.php │ │ ├── Ods.php │ │ ├── Ods │ │ ├── Cell │ │ │ └── Comment.php │ │ ├── Content.php │ │ ├── Meta.php │ │ ├── MetaInf.php │ │ ├── Mimetype.php │ │ ├── Settings.php │ │ ├── Styles.php │ │ ├── Thumbnails.php │ │ └── WriterPart.php │ │ ├── Pdf.php │ │ ├── Pdf │ │ ├── Dompdf.php │ │ ├── Mpdf.php │ │ └── Tcpdf.php │ │ ├── Xls.php │ │ ├── Xls │ │ ├── BIFFwriter.php │ │ ├── Escher.php │ │ ├── Font.php │ │ ├── Parser.php │ │ ├── Workbook.php │ │ ├── Worksheet.php │ │ └── Xf.php │ │ ├── Xlsx.php │ │ └── Xlsx │ │ ├── Chart.php │ │ ├── Comments.php │ │ ├── ContentTypes.php │ │ ├── DocProps.php │ │ ├── Drawing.php │ │ ├── Rels.php │ │ ├── RelsRibbon.php │ │ ├── RelsVBA.php │ │ ├── StringTable.php │ │ ├── Style.php │ │ ├── Theme.php │ │ ├── Workbook.php │ │ ├── Worksheet.php │ │ └── WriterPart.php └── psr │ └── simple-cache │ ├── .editorconfig │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ ├── CacheException.php │ ├── CacheInterface.php │ └── InvalidArgumentException.php ├── vendors ├── bootstrap-toggle │ ├── .gitignore │ ├── bootstrap4-toggle.min.css │ ├── bootstrap4-toggle.min.js │ └── bootstrap4-toggle.min.js.map ├── bootstrap │ ├── dist │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ └── bootstrap.min.js │ └── dropdown-extended.js ├── codemirror │ ├── addon │ │ ├── comment │ │ │ ├── comment.js │ │ │ └── continuecomment.js │ │ ├── dialog │ │ │ ├── dialog.css │ │ │ └── dialog.js │ │ ├── display │ │ │ ├── autorefresh.js │ │ │ ├── fullscreen.css │ │ │ ├── fullscreen.js │ │ │ ├── panel.js │ │ │ ├── placeholder.js │ │ │ └── rulers.js │ │ ├── edit │ │ │ ├── closebrackets.js │ │ │ ├── closetag.js │ │ │ ├── continuelist.js │ │ │ ├── matchbrackets.js │ │ │ ├── matchtags.js │ │ │ └── trailingspace.js │ │ ├── fold │ │ │ ├── brace-fold.js │ │ │ ├── comment-fold.js │ │ │ ├── foldcode.js │ │ │ ├── foldgutter.css │ │ │ ├── foldgutter.js │ │ │ ├── indent-fold.js │ │ │ ├── markdown-fold.js │ │ │ └── xml-fold.js │ │ ├── hint │ │ │ ├── anyword-hint.js │ │ │ ├── css-hint.js │ │ │ ├── html-hint.js │ │ │ ├── javascript-hint.js │ │ │ ├── show-hint.css │ │ │ ├── show-hint.js │ │ │ ├── sql-hint.js │ │ │ └── xml-hint.js │ │ ├── lint │ │ │ ├── coffeescript-lint.js │ │ │ ├── css-lint.js │ │ │ ├── html-lint.js │ │ │ ├── javascript-lint.js │ │ │ ├── json-lint.js │ │ │ ├── lint.css │ │ │ ├── lint.js │ │ │ └── yaml-lint.js │ │ ├── merge │ │ │ ├── merge.css │ │ │ └── merge.js │ │ ├── mode │ │ │ ├── loadmode.js │ │ │ ├── multiplex.js │ │ │ ├── multiplex_test.js │ │ │ ├── overlay.js │ │ │ └── simple.js │ │ ├── runmode │ │ │ ├── colorize.js │ │ │ ├── runmode-standalone.js │ │ │ ├── runmode.js │ │ │ └── runmode.node.js │ │ ├── scroll │ │ │ ├── annotatescrollbar.js │ │ │ ├── scrollpastend.js │ │ │ ├── simplescrollbars.css │ │ │ └── simplescrollbars.js │ │ ├── search │ │ │ ├── jump-to-line.js │ │ │ ├── match-highlighter.js │ │ │ ├── matchesonscrollbar.css │ │ │ ├── matchesonscrollbar.js │ │ │ ├── search.js │ │ │ └── searchcursor.js │ │ ├── selection │ │ │ ├── active-line.js │ │ │ ├── mark-selection.js │ │ │ └── selection-pointer.js │ │ ├── tern │ │ │ ├── tern.css │ │ │ ├── tern.js │ │ │ └── worker.js │ │ └── wrap │ │ │ └── hardwrap.js │ ├── blackboard.css │ ├── codemirror.css │ ├── codemirror.js │ ├── demo │ │ ├── activeline.html │ │ ├── anywordhint.html │ │ ├── bidi.html │ │ ├── btree.html │ │ ├── buffers.html │ │ ├── changemode.html │ │ ├── closebrackets.html │ │ ├── closetag.html │ │ ├── complete.html │ │ ├── emacs.html │ │ ├── folding.html │ │ ├── fullscreen.html │ │ ├── hardwrap.html │ │ ├── html5complete.html │ │ ├── indentwrap.html │ │ ├── lint.html │ │ ├── loadmode.html │ │ ├── marker.html │ │ ├── markselection.html │ │ ├── matchhighlighter.html │ │ ├── matchtags.html │ │ ├── merge.html │ │ ├── multiplex.html │ │ ├── mustache.html │ │ ├── panel.html │ │ ├── placeholder.html │ │ ├── preview.html │ │ ├── requirejs.html │ │ ├── resize.html │ │ ├── rulers.html │ │ ├── runmode.html │ │ ├── search.html │ │ ├── simplemode.html │ │ ├── simplescrollbars.html │ │ ├── spanaffectswrapping_shim.html │ │ ├── sublime.html │ │ ├── tern.html │ │ ├── theme.html │ │ ├── trailingspace.html │ │ ├── variableheight.html │ │ ├── vim.html │ │ ├── visibletabs.html │ │ ├── widget.html │ │ └── xmlcomplete.html │ ├── keymap │ │ ├── emacs.js │ │ ├── sublime.js │ │ └── vim.js │ └── mode │ │ ├── apl │ │ ├── apl.js │ │ └── index.html │ │ ├── asciiarmor │ │ ├── asciiarmor.js │ │ └── index.html │ │ ├── asn.1 │ │ ├── asn.1.js │ │ └── index.html │ │ ├── asterisk │ │ ├── asterisk.js │ │ └── index.html │ │ ├── brainfuck │ │ ├── brainfuck.js │ │ └── index.html │ │ ├── clike │ │ ├── clike.js │ │ ├── index.html │ │ ├── scala.html │ │ └── test.js │ │ ├── clojure │ │ ├── clojure.js │ │ ├── index.html │ │ └── test.js │ │ ├── cmake │ │ ├── cmake.js │ │ └── index.html │ │ ├── cobol │ │ ├── cobol.js │ │ └── index.html │ │ ├── coffeescript │ │ ├── coffeescript.js │ │ └── index.html │ │ ├── commonlisp │ │ ├── commonlisp.js │ │ └── index.html │ │ ├── crystal │ │ ├── crystal.js │ │ └── index.html │ │ ├── css │ │ ├── css.js │ │ ├── gss.html │ │ ├── gss_test.js │ │ ├── index.html │ │ ├── less.html │ │ ├── less_test.js │ │ ├── scss.html │ │ ├── scss_test.js │ │ └── test.js │ │ ├── cypher │ │ ├── cypher.js │ │ ├── index.html │ │ └── test.js │ │ ├── d │ │ ├── d.js │ │ ├── index.html │ │ └── test.js │ │ ├── dart │ │ ├── dart.js │ │ └── index.html │ │ ├── diff │ │ ├── diff.js │ │ └── index.html │ │ ├── django │ │ ├── django.js │ │ └── index.html │ │ ├── dockerfile │ │ ├── dockerfile.js │ │ ├── index.html │ │ └── test.js │ │ ├── dtd │ │ ├── dtd.js │ │ └── index.html │ │ ├── dylan │ │ ├── dylan.js │ │ ├── index.html │ │ └── test.js │ │ ├── ebnf │ │ ├── ebnf.js │ │ └── index.html │ │ ├── ecl │ │ ├── ecl.js │ │ └── index.html │ │ ├── eiffel │ │ ├── eiffel.js │ │ └── index.html │ │ ├── elm │ │ ├── elm.js │ │ └── index.html │ │ ├── erlang │ │ ├── erlang.js │ │ └── index.html │ │ ├── factor │ │ ├── factor.js │ │ └── index.html │ │ ├── fcl │ │ ├── fcl.js │ │ └── index.html │ │ ├── forth │ │ ├── forth.js │ │ └── index.html │ │ ├── fortran │ │ ├── fortran.js │ │ └── index.html │ │ ├── gas │ │ ├── gas.js │ │ └── index.html │ │ ├── gfm │ │ ├── gfm.js │ │ ├── index.html │ │ └── test.js │ │ ├── gherkin │ │ ├── gherkin.js │ │ └── index.html │ │ ├── go │ │ ├── go.js │ │ └── index.html │ │ ├── groovy │ │ ├── groovy.js │ │ └── index.html │ │ ├── haml │ │ ├── haml.js │ │ ├── index.html │ │ └── test.js │ │ ├── handlebars │ │ ├── handlebars.js │ │ └── index.html │ │ ├── haskell-literate │ │ ├── haskell-literate.js │ │ └── index.html │ │ ├── haskell │ │ ├── haskell.js │ │ └── index.html │ │ ├── haxe │ │ ├── haxe.js │ │ └── index.html │ │ ├── htmlembedded │ │ ├── htmlembedded.js │ │ └── index.html │ │ ├── htmlmixed │ │ ├── htmlmixed.js │ │ └── index.html │ │ ├── http │ │ ├── http.js │ │ └── index.html │ │ ├── idl │ │ ├── idl.js │ │ └── index.html │ │ ├── index.html │ │ ├── javascript │ │ ├── index.html │ │ ├── javascript.js │ │ ├── json-ld.html │ │ ├── test.js │ │ └── typescript.html │ │ ├── jinja2 │ │ ├── index.html │ │ └── jinja2.js │ │ ├── jsx │ │ ├── index.html │ │ ├── jsx.js │ │ └── test.js │ │ ├── julia │ │ ├── index.html │ │ └── julia.js │ │ ├── livescript │ │ ├── index.html │ │ └── livescript.js │ │ ├── lua │ │ ├── index.html │ │ └── lua.js │ │ ├── markdown │ │ ├── index.html │ │ ├── markdown.js │ │ └── test.js │ │ ├── mathematica │ │ ├── index.html │ │ └── mathematica.js │ │ ├── mbox │ │ ├── index.html │ │ └── mbox.js │ │ ├── meta.js │ │ ├── mirc │ │ ├── index.html │ │ └── mirc.js │ │ ├── mllike │ │ ├── index.html │ │ └── mllike.js │ │ ├── modelica │ │ ├── index.html │ │ └── modelica.js │ │ ├── mscgen │ │ ├── index.html │ │ ├── mscgen.js │ │ ├── mscgen_test.js │ │ ├── msgenny_test.js │ │ └── xu_test.js │ │ ├── mumps │ │ ├── index.html │ │ └── mumps.js │ │ ├── nginx │ │ ├── index.html │ │ └── nginx.js │ │ ├── nsis │ │ ├── index.html │ │ └── nsis.js │ │ ├── ntriples │ │ ├── index.html │ │ └── ntriples.js │ │ ├── octave │ │ ├── index.html │ │ └── octave.js │ │ ├── oz │ │ ├── index.html │ │ └── oz.js │ │ ├── pascal │ │ ├── index.html │ │ └── pascal.js │ │ ├── pegjs │ │ ├── index.html │ │ └── pegjs.js │ │ ├── perl │ │ ├── index.html │ │ └── perl.js │ │ ├── php │ │ ├── index.html │ │ ├── php.js │ │ └── test.js │ │ ├── pig │ │ ├── index.html │ │ └── pig.js │ │ ├── powershell │ │ ├── index.html │ │ ├── powershell.js │ │ └── test.js │ │ ├── properties │ │ ├── index.html │ │ └── properties.js │ │ ├── protobuf │ │ ├── index.html │ │ └── protobuf.js │ │ ├── pug │ │ ├── index.html │ │ └── pug.js │ │ ├── puppet │ │ ├── index.html │ │ └── puppet.js │ │ ├── python │ │ ├── index.html │ │ ├── python.js │ │ └── test.js │ │ ├── q │ │ ├── index.html │ │ └── q.js │ │ ├── r │ │ ├── index.html │ │ └── r.js │ │ ├── rpm │ │ ├── changes │ │ │ └── index.html │ │ ├── index.html │ │ └── rpm.js │ │ ├── rst │ │ ├── index.html │ │ └── rst.js │ │ ├── ruby │ │ ├── index.html │ │ ├── ruby.js │ │ └── test.js │ │ ├── rust │ │ ├── index.html │ │ ├── rust.js │ │ └── test.js │ │ ├── sas │ │ ├── index.html │ │ └── sas.js │ │ ├── sass │ │ ├── index.html │ │ ├── sass.js │ │ └── test.js │ │ ├── scheme │ │ ├── index.html │ │ └── scheme.js │ │ ├── shell │ │ ├── index.html │ │ ├── shell.js │ │ └── test.js │ │ ├── sieve │ │ ├── index.html │ │ └── sieve.js │ │ ├── slim │ │ ├── index.html │ │ ├── slim.js │ │ └── test.js │ │ ├── smalltalk │ │ ├── index.html │ │ └── smalltalk.js │ │ ├── smarty │ │ ├── index.html │ │ └── smarty.js │ │ ├── solr │ │ ├── index.html │ │ └── solr.js │ │ ├── soy │ │ ├── index.html │ │ ├── soy.js │ │ └── test.js │ │ ├── sparql │ │ ├── index.html │ │ └── sparql.js │ │ ├── spreadsheet │ │ ├── index.html │ │ └── spreadsheet.js │ │ ├── sql │ │ ├── index.html │ │ └── sql.js │ │ ├── stex │ │ ├── index.html │ │ ├── stex.js │ │ └── test.js │ │ ├── stylus │ │ ├── index.html │ │ └── stylus.js │ │ ├── swift │ │ ├── index.html │ │ ├── swift.js │ │ └── test.js │ │ ├── tcl │ │ ├── index.html │ │ └── tcl.js │ │ ├── textile │ │ ├── index.html │ │ ├── test.js │ │ └── textile.js │ │ ├── tiddlywiki │ │ ├── index.html │ │ ├── tiddlywiki.css │ │ └── tiddlywiki.js │ │ ├── tiki │ │ ├── index.html │ │ ├── tiki.css │ │ └── tiki.js │ │ ├── toml │ │ ├── index.html │ │ └── toml.js │ │ ├── tornado │ │ ├── index.html │ │ └── tornado.js │ │ ├── troff │ │ ├── index.html │ │ └── troff.js │ │ ├── ttcn-cfg │ │ ├── index.html │ │ └── ttcn-cfg.js │ │ ├── ttcn │ │ ├── index.html │ │ └── ttcn.js │ │ ├── turtle │ │ ├── index.html │ │ └── turtle.js │ │ ├── twig │ │ ├── index.html │ │ └── twig.js │ │ ├── vb │ │ ├── index.html │ │ └── vb.js │ │ ├── vbscript │ │ ├── index.html │ │ └── vbscript.js │ │ ├── velocity │ │ ├── index.html │ │ └── velocity.js │ │ ├── verilog │ │ ├── index.html │ │ ├── test.js │ │ └── verilog.js │ │ ├── vhdl │ │ ├── index.html │ │ └── vhdl.js │ │ ├── vue │ │ ├── index.html │ │ └── vue.js │ │ ├── webidl │ │ ├── index.html │ │ └── webidl.js │ │ ├── xml │ │ ├── index.html │ │ ├── test.js │ │ └── xml.js │ │ ├── xquery │ │ ├── index.html │ │ ├── test.js │ │ └── xquery.js │ │ ├── yacas │ │ ├── index.html │ │ └── yacas.js │ │ ├── yaml-frontmatter │ │ ├── index.html │ │ └── yaml-frontmatter.js │ │ ├── yaml │ │ ├── index.html │ │ └── yaml.js │ │ └── z80 │ │ ├── index.html │ │ └── z80.js ├── datatables │ ├── css │ │ ├── jquery.dataTables.min.css │ │ ├── responsive.dataTables.min.css │ │ └── select.dataTables.min.css │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── js │ │ ├── buttons.bootstrap4.min.js │ │ ├── buttons.colVis.min.js │ │ ├── buttons.flash.min.js │ │ ├── buttons.html5.min.js │ │ ├── buttons.print.min.js │ │ ├── dataTables.bootstrap4.min.js │ │ ├── dataTables.buttons.min.js │ │ ├── dataTables.dataTables.min.js │ │ ├── dataTables.responsive.min.js │ │ ├── dataTables.select.min.js │ │ ├── jquery.dataTables.min.js │ │ └── select.dataTables.min.js │ ├── jszip.min.js │ ├── pdfmake.min.js │ └── vfs_fonts.js ├── daterangepicker │ ├── daterangepicker.css │ ├── daterangepicker.js │ ├── datetimepicker.min.css │ └── datetimepicker.min.js ├── dropify │ ├── css │ │ ├── demo.css │ │ ├── dropify.css │ │ └── dropify.min.css │ ├── fonts │ │ ├── dropify.eot │ │ ├── dropify.svg │ │ ├── dropify.ttf │ │ └── dropify.woff │ └── js │ │ ├── dropify.js │ │ └── dropify.min.js ├── dropzone │ ├── dropzone.css │ └── dropzone.js ├── durationpicker │ └── duration-picker.min.js ├── echarts │ └── echarts-en.min.js ├── flot │ ├── excanvas.min.js │ ├── jquery.colorhelpers.js │ ├── jquery.flot.categories.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.errorbars.js │ ├── jquery.flot.fillbetween.js │ ├── jquery.flot.image.js │ ├── jquery.flot.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.threshold.js │ └── jquery.flot.time.js ├── gmaps │ ├── gmaps.js │ ├── gmaps.min.js │ ├── gmaps.min.js.map │ ├── jquery.gmaps.js │ └── lib │ │ ├── gmaps.controls.js │ │ ├── gmaps.core.js │ │ ├── gmaps.events.js │ │ ├── gmaps.geofences.js │ │ ├── gmaps.geometry.js │ │ ├── gmaps.layers.js │ │ ├── gmaps.map_types.js │ │ ├── gmaps.markers.js │ │ ├── gmaps.native_extensions.js │ │ ├── gmaps.overlays.js │ │ ├── gmaps.routes.js │ │ ├── gmaps.static.js │ │ ├── gmaps.streetview.js │ │ ├── gmaps.styles.js │ │ └── gmaps.utils.js ├── highcharts │ ├── adapters │ │ ├── standalone-framework.js │ │ └── standalone-framework.src.js │ ├── highcharts-3d.js │ ├── highcharts-3d.src.js │ ├── highcharts-all.js │ ├── highcharts-more.js │ ├── highcharts-more.src.js │ ├── highcharts.js │ ├── highcharts.src.js │ ├── lib │ │ ├── alertify.js │ │ └── alertify.min.js │ ├── modules │ │ ├── boost.js │ │ ├── boost.src.js │ │ ├── broken-axis.js │ │ ├── broken-axis.src.js │ │ ├── canvas-tools.js │ │ ├── canvas-tools.src.js │ │ ├── data.js │ │ ├── data.src.js │ │ ├── drilldown.js │ │ ├── drilldown.src.js │ │ ├── exporting.js │ │ ├── exporting.src.js │ │ ├── funnel.js │ │ ├── funnel.src.js │ │ ├── heatmap.js │ │ ├── heatmap.src.js │ │ ├── no-data-to-display.js │ │ ├── no-data-to-display.src.js │ │ ├── offline-exporting.js │ │ ├── offline-exporting.src.js │ │ ├── solid-gauge.js │ │ ├── solid-gauge.src.js │ │ ├── treemap.js │ │ └── treemap.src.js │ └── themes │ │ ├── dark-blue.js │ │ ├── dark-green.js │ │ ├── dark-unica.js │ │ ├── gray.js │ │ ├── grid-light.js │ │ ├── grid.js │ │ ├── sand-signika.js │ │ └── skies.js ├── jasny-bootstrap │ ├── jasny-bootstrap.min.css │ └── jasny-bootstrap.min.js ├── jquery-cookie │ ├── .gitignore │ ├── .jshintignore │ ├── .jshintrc │ ├── .tm_properties │ ├── .travis.yml │ └── jquery.cookie.js ├── jquery-terminal │ ├── css │ │ ├── emoji.css │ │ ├── jquery.terminal-2.0.0.min.css │ │ ├── jquery.terminal-2.2.0.css │ │ ├── jquery.terminal-2.2.0.min.css │ │ ├── jquery.terminal-src.css │ │ ├── jquery.terminal.css │ │ ├── jquery.terminal.min.css │ │ └── jquery.terminal.min.css.map │ └── js │ │ ├── ascii_table.js │ │ ├── dterm.js │ │ ├── emoji.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery.mousewheel-min.js │ │ ├── jquery.terminal-2.0.0.min.js │ │ ├── jquery.terminal-2.2.0.js │ │ ├── jquery.terminal-2.2.0.min.js │ │ ├── jquery.terminal-src.js │ │ ├── jquery.terminal.d.ts │ │ ├── jquery.terminal.js │ │ ├── jquery.terminal.min.js │ │ ├── jquery.terminal.min.js.map │ │ ├── less.js │ │ ├── prism.js │ │ ├── terminal.widget.in │ │ ├── terminal.widget.js │ │ ├── unix_formatting.js │ │ └── xml_formatting.js ├── jquery-toast │ ├── jquery.toast.css │ └── jquery.toast.js ├── jquery-ui.min.js ├── jquery.flot.tooltip │ └── js │ │ └── jquery.flot.tooltip.min.js ├── jquery │ ├── dist │ │ └── jquery.min.js │ ├── images │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.min.css │ └── jquery-ui.theme.min.css ├── lightgallery │ ├── css │ │ └── lightgallery.min.css │ ├── fonts │ │ ├── lg.eot │ │ ├── lg.svg │ │ ├── lg.ttf │ │ └── lg.woff │ ├── img │ │ ├── loading.gif │ │ ├── video-play.png │ │ ├── vimeo-play.png │ │ └── youtube-play.png │ └── js │ │ └── lightgallery-all.min.js ├── moment │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ender.js │ ├── locale │ │ ├── af.js │ │ ├── ar-dz.js │ │ ├── ar-kw.js │ │ ├── ar-ly.js │ │ ├── ar-ma.js │ │ ├── ar-sa.js │ │ ├── ar-tn.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── be.js │ │ ├── bg.js │ │ ├── bm.js │ │ ├── bn.js │ │ ├── bo.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cv.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-at.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── dv.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en-ie.js │ │ ├── en-il.js │ │ ├── en-nz.js │ │ ├── eo.js │ │ ├── es-do.js │ │ ├── es-us.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr-ch.js │ │ ├── fr.js │ │ ├── fy.js │ │ ├── gd.js │ │ ├── gl.js │ │ ├── gom-latn.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy-am.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── jv.js │ │ ├── ka.js │ │ ├── kk.js │ │ ├── km.js │ │ ├── kn.js │ │ ├── ko.js │ │ ├── ky.js │ │ ├── lb.js │ │ ├── lo.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── me.js │ │ ├── mi.js │ │ ├── mk.js │ │ ├── ml.js │ │ ├── mn.js │ │ ├── mr.js │ │ ├── ms-my.js │ │ ├── ms.js │ │ ├── mt.js │ │ ├── my.js │ │ ├── nb.js │ │ ├── ne.js │ │ ├── nl-be.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── pa-in.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sd.js │ │ ├── se.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-cyrl.js │ │ ├── sr.js │ │ ├── ss.js │ │ ├── sv.js │ │ ├── sw.js │ │ ├── ta.js │ │ ├── te.js │ │ ├── tet.js │ │ ├── tg.js │ │ ├── th.js │ │ ├── tl-ph.js │ │ ├── tlh.js │ │ ├── tr.js │ │ ├── tzl.js │ │ ├── tzm-latn.js │ │ ├── tzm.js │ │ ├── ug-cn.js │ │ ├── uk.js │ │ ├── ur.js │ │ ├── uz-latn.js │ │ ├── uz.js │ │ ├── vi.js │ │ ├── x-pseudo.js │ │ ├── yo.js │ │ ├── zh-cn.js │ │ ├── zh-hk.js │ │ └── zh-tw.js │ ├── min │ │ ├── locales.js │ │ ├── locales.min.js │ │ ├── moment-with-locales.js │ │ ├── moment-with-locales.min.js │ │ └── moment.min.js │ ├── moment.d.ts │ ├── moment.js │ ├── package.js │ ├── package.json │ └── src │ │ ├── lib │ │ ├── create │ │ │ ├── check-overflow.js │ │ │ ├── date-from-array.js │ │ │ ├── from-anything.js │ │ │ ├── from-array.js │ │ │ ├── from-object.js │ │ │ ├── from-string-and-array.js │ │ │ ├── from-string-and-format.js │ │ │ ├── from-string.js │ │ │ ├── local.js │ │ │ ├── parsing-flags.js │ │ │ ├── utc.js │ │ │ └── valid.js │ │ ├── duration │ │ │ ├── abs.js │ │ │ ├── add-subtract.js │ │ │ ├── as.js │ │ │ ├── bubble.js │ │ │ ├── clone.js │ │ │ ├── constructor.js │ │ │ ├── create.js │ │ │ ├── duration.js │ │ │ ├── get.js │ │ │ ├── humanize.js │ │ │ ├── iso-string.js │ │ │ ├── prototype.js │ │ │ └── valid.js │ │ ├── format │ │ │ └── format.js │ │ ├── locale │ │ │ ├── base-config.js │ │ │ ├── calendar.js │ │ │ ├── constructor.js │ │ │ ├── en.js │ │ │ ├── formats.js │ │ │ ├── invalid.js │ │ │ ├── lists.js │ │ │ ├── locale.js │ │ │ ├── locales.js │ │ │ ├── ordinal.js │ │ │ ├── pre-post-format.js │ │ │ ├── prototype.js │ │ │ ├── relative.js │ │ │ └── set.js │ │ ├── moment │ │ │ ├── add-subtract.js │ │ │ ├── calendar.js │ │ │ ├── clone.js │ │ │ ├── compare.js │ │ │ ├── constructor.js │ │ │ ├── creation-data.js │ │ │ ├── diff.js │ │ │ ├── format.js │ │ │ ├── from.js │ │ │ ├── get-set.js │ │ │ ├── locale.js │ │ │ ├── min-max.js │ │ │ ├── moment.js │ │ │ ├── now.js │ │ │ ├── prototype.js │ │ │ ├── start-end-of.js │ │ │ ├── to-type.js │ │ │ ├── to.js │ │ │ └── valid.js │ │ ├── parse │ │ │ ├── regex.js │ │ │ └── token.js │ │ ├── units │ │ │ ├── aliases.js │ │ │ ├── constants.js │ │ │ ├── day-of-month.js │ │ │ ├── day-of-week.js │ │ │ ├── day-of-year.js │ │ │ ├── hour.js │ │ │ ├── millisecond.js │ │ │ ├── minute.js │ │ │ ├── month.js │ │ │ ├── offset.js │ │ │ ├── priorities.js │ │ │ ├── quarter.js │ │ │ ├── second.js │ │ │ ├── timestamp.js │ │ │ ├── timezone.js │ │ │ ├── units.js │ │ │ ├── week-calendar-utils.js │ │ │ ├── week-year.js │ │ │ ├── week.js │ │ │ └── year.js │ │ └── utils │ │ │ ├── abs-ceil.js │ │ │ ├── abs-floor.js │ │ │ ├── abs-round.js │ │ │ ├── compare-arrays.js │ │ │ ├── defaults.js │ │ │ ├── deprecate.js │ │ │ ├── extend.js │ │ │ ├── has-own-prop.js │ │ │ ├── hooks.js │ │ │ ├── index-of.js │ │ │ ├── is-array.js │ │ │ ├── is-date.js │ │ │ ├── is-function.js │ │ │ ├── is-number.js │ │ │ ├── is-object-empty.js │ │ │ ├── is-object.js │ │ │ ├── is-undefined.js │ │ │ ├── keys.js │ │ │ ├── map.js │ │ │ ├── mod.js │ │ │ ├── some.js │ │ │ ├── to-int.js │ │ │ └── zero-fill.js │ │ ├── locale │ │ ├── af.js │ │ ├── ar-dz.js │ │ ├── ar-kw.js │ │ ├── ar-ly.js │ │ ├── ar-ma.js │ │ ├── ar-sa.js │ │ ├── ar-tn.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── be.js │ │ ├── bg.js │ │ ├── bm.js │ │ ├── bn.js │ │ ├── bo.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cv.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-at.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── dv.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en-ie.js │ │ ├── en-il.js │ │ ├── en-nz.js │ │ ├── eo.js │ │ ├── es-do.js │ │ ├── es-us.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr-ch.js │ │ ├── fr.js │ │ ├── fy.js │ │ ├── gd.js │ │ ├── gl.js │ │ ├── gom-latn.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy-am.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── jv.js │ │ ├── ka.js │ │ ├── kk.js │ │ ├── km.js │ │ ├── kn.js │ │ ├── ko.js │ │ ├── ky.js │ │ ├── lb.js │ │ ├── lo.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── me.js │ │ ├── mi.js │ │ ├── mk.js │ │ ├── ml.js │ │ ├── mn.js │ │ ├── mr.js │ │ ├── ms-my.js │ │ ├── ms.js │ │ ├── mt.js │ │ ├── my.js │ │ ├── nb.js │ │ ├── ne.js │ │ ├── nl-be.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── pa-in.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sd.js │ │ ├── se.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-cyrl.js │ │ ├── sr.js │ │ ├── ss.js │ │ ├── sv.js │ │ ├── sw.js │ │ ├── ta.js │ │ ├── te.js │ │ ├── tet.js │ │ ├── tg.js │ │ ├── th.js │ │ ├── tl-ph.js │ │ ├── tlh.js │ │ ├── tr.js │ │ ├── tzl.js │ │ ├── tzm-latn.js │ │ ├── tzm.js │ │ ├── ug-cn.js │ │ ├── uk.js │ │ ├── ur.js │ │ ├── uz-latn.js │ │ ├── uz.js │ │ ├── vi.js │ │ ├── x-pseudo.js │ │ ├── yo.js │ │ ├── zh-cn.js │ │ ├── zh-hk.js │ │ └── zh-tw.js │ │ └── moment.js ├── morris.js │ ├── morris.css │ ├── morris.min.js │ └── raphael.min.js ├── nestable │ ├── jquery.nestable.min.css │ └── jquery.nestable.min.js ├── owl.carousel │ └── dist │ │ ├── assets │ │ ├── owl.carousel.min.css │ │ ├── owl.theme.default.min.css │ │ └── owl.video.play.png │ │ └── owl.carousel.min.js ├── pagination │ ├── jquery.twbsPagination.js │ └── pagination.js ├── piechart │ └── jquery.easypiechart.min.js ├── popper.js │ └── dist │ │ └── umd │ │ └── popper.min.js ├── qr-code │ └── jquery-qrcode.min.js ├── select2 │ ├── css │ │ └── select2.min.css │ └── js │ │ ├── select2.full.min.js │ │ └── select2.min.js ├── slimscroll │ └── jquery.slimscroll.js ├── sweetalert │ ├── sweetalert.css │ └── sweetalert.min.js ├── tabletotal │ ├── .gitattributes │ ├── .gitignore │ └── jquery.tableTotal.js ├── tagsinput │ ├── bootstrap-tagsinput.css │ ├── bootstrap-tagsinput.min.js │ ├── tagsinput.css │ ├── tagsinput.js │ └── typeahead.js ├── terminal │ ├── demo.html │ ├── jquery.console.js │ ├── terminal.js │ └── test.html ├── tinymce │ ├── jquery.tinymce.min.js │ ├── langs │ │ └── readme.md │ ├── plugins │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ ├── css │ │ │ │ └── prism.css │ │ │ └── plugin.min.js │ │ ├── colorpicker │ │ │ └── plugin.min.js │ │ ├── contextmenu │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ └── plugin.min.js │ │ ├── example │ │ │ ├── dialog.html │ │ │ └── plugin.min.js │ │ ├── example_dependency │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── img │ │ │ │ └── logo.png │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── imagetools │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── layer │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ └── plugin.min.js │ │ ├── placeholder │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── print │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── template │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ └── plugin.min.js │ │ ├── textpattern │ │ │ └── plugin.min.js │ │ ├── toc │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── content.mobile.min.css │ │ │ ├── fonts │ │ │ ├── tinymce-mobile.woff │ │ │ ├── tinymce-small.eot │ │ │ ├── tinymce-small.svg │ │ │ ├── tinymce-small.ttf │ │ │ ├── tinymce-small.woff │ │ │ ├── tinymce.eot │ │ │ ├── tinymce.svg │ │ │ ├── tinymce.ttf │ │ │ └── tinymce.woff │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ └── trans.gif │ │ │ ├── skin.min.css │ │ │ └── skin.mobile.min.css │ ├── themes │ │ ├── inlite │ │ │ └── theme.min.js │ │ ├── mobile │ │ │ └── theme.min.js │ │ └── modern │ │ │ └── theme.min.js │ └── tinymce.min.js └── validation │ ├── additional-methods.min.js │ └── jquery.validate.min.js ├── voucher.html └── wireless.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/README.md -------------------------------------------------------------------------------- /SQL/1-schema-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/SQL/1-schema-mysql.sql -------------------------------------------------------------------------------- /SQL/1-schema-postgresql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/SQL/1-schema-postgresql.sql -------------------------------------------------------------------------------- /SQL/2-setup-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/SQL/2-setup-mysql.sql -------------------------------------------------------------------------------- /SQL/2-setup-postgresql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/SQL/2-setup-postgresql.sql -------------------------------------------------------------------------------- /SQL/3-data-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/SQL/3-data-mysql.sql -------------------------------------------------------------------------------- /SQL/3-data-postgresql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/SQL/3-data-postgresql.sql -------------------------------------------------------------------------------- /SQL/4-syslog-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/SQL/4-syslog-mysql.sql -------------------------------------------------------------------------------- /SQL/4-syslog-postgreslq.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/SQL/4-syslog-postgreslq.sql -------------------------------------------------------------------------------- /SQL/sqlcounter-mysql/accessperiod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/SQL/sqlcounter-mysql/accessperiod.conf -------------------------------------------------------------------------------- /SQL/sqlcounter-mysql/quotalimit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/SQL/sqlcounter-mysql/quotalimit.conf -------------------------------------------------------------------------------- /active.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/active.html -------------------------------------------------------------------------------- /address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/address.html -------------------------------------------------------------------------------- /api/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/.htaccess -------------------------------------------------------------------------------- /api/active.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/active.php -------------------------------------------------------------------------------- /api/address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/address.php -------------------------------------------------------------------------------- /api/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/client.php -------------------------------------------------------------------------------- /api/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/config.php -------------------------------------------------------------------------------- /api/data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/data.php -------------------------------------------------------------------------------- /api/dhcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/dhcp.php -------------------------------------------------------------------------------- /api/expired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/expired.php -------------------------------------------------------------------------------- /api/forgot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/forgot.php -------------------------------------------------------------------------------- /api/history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/history.php -------------------------------------------------------------------------------- /api/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/home.php -------------------------------------------------------------------------------- /api/identity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/identity.php -------------------------------------------------------------------------------- /api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/index.php -------------------------------------------------------------------------------- /api/interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/interface.php -------------------------------------------------------------------------------- /api/level.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/level.php -------------------------------------------------------------------------------- /api/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/login.php -------------------------------------------------------------------------------- /api/logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/logs.php -------------------------------------------------------------------------------- /api/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/online.php -------------------------------------------------------------------------------- /api/packet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/packet.php -------------------------------------------------------------------------------- /api/payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/payment.php -------------------------------------------------------------------------------- /api/pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/pool.php -------------------------------------------------------------------------------- /api/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/profile.php -------------------------------------------------------------------------------- /api/profiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/profiles.php -------------------------------------------------------------------------------- /api/radius.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/radius.php -------------------------------------------------------------------------------- /api/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/route.php -------------------------------------------------------------------------------- /api/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/router.php -------------------------------------------------------------------------------- /api/shop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/shop.php -------------------------------------------------------------------------------- /api/themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/themes.php -------------------------------------------------------------------------------- /api/transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/transaction.php -------------------------------------------------------------------------------- /api/usages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/usages.php -------------------------------------------------------------------------------- /api/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/users.php -------------------------------------------------------------------------------- /api/voucher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/voucher.php -------------------------------------------------------------------------------- /api/wireless.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/api/wireless.php -------------------------------------------------------------------------------- /client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/client.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/composer.lock -------------------------------------------------------------------------------- /config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/config.html -------------------------------------------------------------------------------- /dhcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dhcp.html -------------------------------------------------------------------------------- /dist/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/animate.css -------------------------------------------------------------------------------- /dist/css/dripicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/dripicons.css -------------------------------------------------------------------------------- /dist/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/font-awesome.min.css -------------------------------------------------------------------------------- /dist/css/glyphicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/glyphicons.css -------------------------------------------------------------------------------- /dist/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/ionicons.min.css -------------------------------------------------------------------------------- /dist/css/lightgallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/lightgallery.css -------------------------------------------------------------------------------- /dist/css/linea-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/linea-icon.css -------------------------------------------------------------------------------- /dist/css/pe-icon-7-stroke.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/pe-icon-7-stroke.css -------------------------------------------------------------------------------- /dist/css/simple-line-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/simple-line-icons.css -------------------------------------------------------------------------------- /dist/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/style.css -------------------------------------------------------------------------------- /dist/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/style.css.map -------------------------------------------------------------------------------- /dist/css/themify-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/css/themify-icons.css -------------------------------------------------------------------------------- /dist/file/contact.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/file/contact.xls -------------------------------------------------------------------------------- /dist/file/estimation.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/file/estimation.xls -------------------------------------------------------------------------------- /dist/file/list.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/file/list.xls -------------------------------------------------------------------------------- /dist/file/users.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/file/users.xls -------------------------------------------------------------------------------- /dist/file/users.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/file/users.xlsx -------------------------------------------------------------------------------- /dist/fonts/dripicons/dripicons-v2.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/dripicons/dripicons-v2.eot -------------------------------------------------------------------------------- /dist/fonts/dripicons/dripicons-v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/dripicons/dripicons-v2.svg -------------------------------------------------------------------------------- /dist/fonts/dripicons/dripicons-v2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/dripicons/dripicons-v2.ttf -------------------------------------------------------------------------------- /dist/fonts/dripicons/dripicons-v2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/dripicons/dripicons-v2.woff -------------------------------------------------------------------------------- /dist/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /dist/fonts/ionicons/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/ionicons/ionicons.eot -------------------------------------------------------------------------------- /dist/fonts/ionicons/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/ionicons/ionicons.svg -------------------------------------------------------------------------------- /dist/fonts/ionicons/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/ionicons/ionicons.ttf -------------------------------------------------------------------------------- /dist/fonts/ionicons/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/ionicons/ionicons.woff -------------------------------------------------------------------------------- /dist/fonts/ionicons/ionicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/ionicons/ionicons.woff2 -------------------------------------------------------------------------------- /dist/fonts/lg/lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/lg/lg.svg -------------------------------------------------------------------------------- /dist/fonts/lg/lg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/lg/lg.ttf -------------------------------------------------------------------------------- /dist/fonts/lg/lg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/lg/lg.woff -------------------------------------------------------------------------------- /dist/fonts/themify-icons/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/themify-icons/themify.eot -------------------------------------------------------------------------------- /dist/fonts/themify-icons/themify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/themify-icons/themify.svg -------------------------------------------------------------------------------- /dist/fonts/themify-icons/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/themify-icons/themify.ttf -------------------------------------------------------------------------------- /dist/fonts/themify-icons/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/fonts/themify-icons/themify.woff -------------------------------------------------------------------------------- /dist/img/bg/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/bg/bg1.png -------------------------------------------------------------------------------- /dist/img/bg/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/bg/bg2.jpg -------------------------------------------------------------------------------- /dist/img/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/blank.png -------------------------------------------------------------------------------- /dist/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/favicon.png -------------------------------------------------------------------------------- /dist/img/file-add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/file-add.jpg -------------------------------------------------------------------------------- /dist/img/img-add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/img-add.jpg -------------------------------------------------------------------------------- /dist/img/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/load.gif -------------------------------------------------------------------------------- /dist/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/loader.gif -------------------------------------------------------------------------------- /dist/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/loading.gif -------------------------------------------------------------------------------- /dist/img/loads.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/loads.gif -------------------------------------------------------------------------------- /dist/img/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/logo-dark.png -------------------------------------------------------------------------------- /dist/img/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/logo-light.png -------------------------------------------------------------------------------- /dist/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/logo.png -------------------------------------------------------------------------------- /dist/img/users/no_foto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/img/users/no_foto.jpg -------------------------------------------------------------------------------- /dist/js/active.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/active.js -------------------------------------------------------------------------------- /dist/js/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/address.js -------------------------------------------------------------------------------- /dist/js/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/client.js -------------------------------------------------------------------------------- /dist/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/config.js -------------------------------------------------------------------------------- /dist/js/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/controls.js -------------------------------------------------------------------------------- /dist/js/dhcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/dhcp.js -------------------------------------------------------------------------------- /dist/js/expired.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/expired.js -------------------------------------------------------------------------------- /dist/js/feather.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/feather.min.js -------------------------------------------------------------------------------- /dist/js/forgot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/forgot.js -------------------------------------------------------------------------------- /dist/js/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/history.js -------------------------------------------------------------------------------- /dist/js/identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/identity.js -------------------------------------------------------------------------------- /dist/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/index.js -------------------------------------------------------------------------------- /dist/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/init.js -------------------------------------------------------------------------------- /dist/js/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/interface.js -------------------------------------------------------------------------------- /dist/js/level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/level.js -------------------------------------------------------------------------------- /dist/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/login.js -------------------------------------------------------------------------------- /dist/js/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/logs.js -------------------------------------------------------------------------------- /dist/js/online.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/online.js -------------------------------------------------------------------------------- /dist/js/packet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/packet.js -------------------------------------------------------------------------------- /dist/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/payment.js -------------------------------------------------------------------------------- /dist/js/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/pool.js -------------------------------------------------------------------------------- /dist/js/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/profile.js -------------------------------------------------------------------------------- /dist/js/profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/profiles.js -------------------------------------------------------------------------------- /dist/js/radius.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/radius.js -------------------------------------------------------------------------------- /dist/js/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/route.js -------------------------------------------------------------------------------- /dist/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/router.js -------------------------------------------------------------------------------- /dist/js/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/shop.js -------------------------------------------------------------------------------- /dist/js/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/themes.js -------------------------------------------------------------------------------- /dist/js/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/transaction.js -------------------------------------------------------------------------------- /dist/js/usages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/usages.js -------------------------------------------------------------------------------- /dist/js/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/users.js -------------------------------------------------------------------------------- /dist/js/voucher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/voucher.js -------------------------------------------------------------------------------- /dist/js/wireless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/dist/js/wireless.js -------------------------------------------------------------------------------- /expired.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/expired.html -------------------------------------------------------------------------------- /forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/forgot.html -------------------------------------------------------------------------------- /history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/history.html -------------------------------------------------------------------------------- /identity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/identity.html -------------------------------------------------------------------------------- /include/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/include/.htaccess -------------------------------------------------------------------------------- /include/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/include/autoload.php -------------------------------------------------------------------------------- /include/cipher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/include/cipher.php -------------------------------------------------------------------------------- /include/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/include/config.php -------------------------------------------------------------------------------- /include/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/include/connect.php -------------------------------------------------------------------------------- /include/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/include/function.php -------------------------------------------------------------------------------- /include/mikrotik.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/include/mikrotik.php -------------------------------------------------------------------------------- /include/monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/include/monitor.php -------------------------------------------------------------------------------- /include/ssh2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/include/ssh2.php -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/index.html -------------------------------------------------------------------------------- /info.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/interface.html -------------------------------------------------------------------------------- /level.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/level.html -------------------------------------------------------------------------------- /login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/login.html -------------------------------------------------------------------------------- /logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/logs.html -------------------------------------------------------------------------------- /media/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/.htaccess -------------------------------------------------------------------------------- /media/adapters/jquery-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/adapters/jquery-example.html -------------------------------------------------------------------------------- /media/adapters/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/adapters/jquery-min.js -------------------------------------------------------------------------------- /media/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/adapters/jquery.js -------------------------------------------------------------------------------- /media/barcode/1802200434387.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/barcode/1802200434387.png -------------------------------------------------------------------------------- /media/barcode/payment_1802200450178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/barcode/payment_1802200450178.png -------------------------------------------------------------------------------- /media/barcode/payment_1816310321252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/barcode/payment_1816310321252.png -------------------------------------------------------------------------------- /media/barcode/payout_180610090443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/barcode/payout_180610090443.png -------------------------------------------------------------------------------- /media/barcode/payout_180707091024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/barcode/payout_180707091024.png -------------------------------------------------------------------------------- /media/barcode/payout_182531090134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/barcode/payout_182531090134.png -------------------------------------------------------------------------------- /media/barcode/payout_182531090135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/barcode/payout_182531090135.png -------------------------------------------------------------------------------- /media/barcode/payout_182702090646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/barcode/payout_182702090646.png -------------------------------------------------------------------------------- /media/browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/browse.php -------------------------------------------------------------------------------- /media/cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/cache/.htaccess -------------------------------------------------------------------------------- /media/cache/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/cache/base.css -------------------------------------------------------------------------------- /media/cache/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/cache/base.js -------------------------------------------------------------------------------- /media/cache/theme_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/cache/theme_dark.css -------------------------------------------------------------------------------- /media/cache/theme_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/cache/theme_dark.js -------------------------------------------------------------------------------- /media/cache/theme_default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/cache/theme_default.css -------------------------------------------------------------------------------- /media/cache/theme_default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/cache/theme_default.js -------------------------------------------------------------------------------- /media/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/composer.json -------------------------------------------------------------------------------- /media/conf/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/conf/.htaccess -------------------------------------------------------------------------------- /media/conf/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/conf/config.php -------------------------------------------------------------------------------- /media/conf/upload.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/conf/upload.htaccess -------------------------------------------------------------------------------- /media/core/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/core/.htaccess -------------------------------------------------------------------------------- /media/core/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/core/autoload.php -------------------------------------------------------------------------------- /media/core/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/core/bootstrap.php -------------------------------------------------------------------------------- /media/core/class/browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/core/class/browser.php -------------------------------------------------------------------------------- /media/core/class/minifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/core/class/minifier.php -------------------------------------------------------------------------------- /media/core/class/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/core/class/session.php -------------------------------------------------------------------------------- /media/core/class/uploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/core/class/uploader.php -------------------------------------------------------------------------------- /media/core/types/type_img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/core/types/type_img.php -------------------------------------------------------------------------------- /media/core/types/type_mime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/core/types/type_mime.php -------------------------------------------------------------------------------- /media/css/000.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/css/000.base.css -------------------------------------------------------------------------------- /media/css/001.transForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/css/001.transForm.css -------------------------------------------------------------------------------- /media/css/999.agent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/css/999.agent.css -------------------------------------------------------------------------------- /media/css/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/css/index.php -------------------------------------------------------------------------------- /media/doc/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/doc/.htaccess -------------------------------------------------------------------------------- /media/doc/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/doc/Changelog -------------------------------------------------------------------------------- /media/doc/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/doc/Changelog.md -------------------------------------------------------------------------------- /media/doc/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/doc/LICENSE.GPL -------------------------------------------------------------------------------- /media/doc/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/doc/LICENSE.LGPL -------------------------------------------------------------------------------- /media/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangospot-net/MangoSpot/HEAD/media/favicon.ico -------------------------------------------------------------------------------- /media/index.php: -------------------------------------------------------------------------------- 1 |