├── .github └── FUNDING.yml ├── 127_0_0_1 absendigital sql.sql ├── LICENSE ├── README.md ├── absendigital ├── .editorconfig ├── .gitignore ├── application │ ├── .htaccess │ ├── cache │ │ └── index.html │ ├── config │ │ ├── aplikasi_config.php │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── foreign_chars.php │ │ ├── hooks.php │ │ ├── index.html │ │ ├── memcached.php │ │ ├── migration.php │ │ ├── mimes.php │ │ ├── profiler.php │ │ ├── routes.php │ │ ├── smileys.php │ │ └── user_agents.php │ ├── controllers │ │ ├── Admin.php │ │ ├── Ajax.php │ │ ├── Auth.php │ │ ├── Docs.php │ │ ├── Err.php │ │ ├── Home.php │ │ ├── User.php │ │ └── index.html │ ├── core │ │ └── index.html │ ├── helpers │ │ ├── absensi_helper.php │ │ └── index.html │ ├── hooks │ │ └── index.html │ ├── index.html │ ├── language │ │ ├── english │ │ │ └── index.html │ │ └── index.html │ ├── libraries │ │ ├── Ciqrcode.php │ │ ├── Datatables.php │ │ ├── index.html │ │ └── qrcode │ │ │ ├── phpqrcode.php │ │ │ ├── qrbitstream.php │ │ │ ├── qrconfig.php │ │ │ ├── qrconst.php │ │ │ ├── qrencode.php │ │ │ ├── qrimage.php │ │ │ ├── qrinput.php │ │ │ ├── qrlib.php │ │ │ ├── qrmask.php │ │ │ ├── qrrscode.php │ │ │ ├── qrspec.php │ │ │ ├── qrsplit.php │ │ │ └── qrtools.php │ ├── logs │ │ └── index.html │ ├── models │ │ ├── M_Admin.php │ │ ├── M_Auth.php │ │ ├── M_Front.php │ │ ├── M_Settings.php │ │ ├── M_User.php │ │ └── index.html │ ├── third_party │ │ └── index.html │ └── views │ │ ├── admin │ │ ├── absenpegawai.php │ │ ├── dashboard.php │ │ ├── datapegawai.php │ │ ├── exportfile.php │ │ └── settingapp.php │ │ ├── auth │ │ └── login.php │ │ ├── error │ │ ├── 404.php │ │ └── blocked.php │ │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ ├── html │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ └── index.html │ │ ├── front │ │ ├── confirminstantscan.php │ │ ├── home.php │ │ └── instantscan.php │ │ ├── index.html │ │ ├── layout │ │ ├── dataabsensi │ │ │ ├── printallabsensi.php │ │ │ ├── printselfabsensi.php │ │ │ └── viewabsensi.php │ │ ├── datapegawai │ │ │ ├── editpegawai.php │ │ │ └── viewpegawai.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── navbar.php │ │ └── sidebar.php │ │ └── user │ │ ├── absensi.php │ │ ├── profile.php │ │ └── setting.php ├── composer.json ├── contributing.md ├── public │ ├── .htaccess │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── mpdf-bootstrap.css │ │ │ ├── styles.css │ │ │ └── webcodecam.css │ │ ├── img │ │ │ ├── ajax-loader.gif │ │ │ ├── auth-image.jpg │ │ │ ├── clock-image.png │ │ │ ├── default-profile.png │ │ │ └── no-qrcode.png │ │ ├── js │ │ │ ├── sb-admin-js.js │ │ │ └── scripts.js │ │ └── vendor │ │ │ ├── bootstrap-datepicker │ │ │ ├── css │ │ │ │ ├── bootstrap-datepicker.css │ │ │ │ ├── bootstrap-datepicker.css.map │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ ├── bootstrap-datepicker.standalone.css │ │ │ │ ├── bootstrap-datepicker.standalone.css.map │ │ │ │ ├── bootstrap-datepicker.standalone.min.css │ │ │ │ ├── bootstrap-datepicker3.css │ │ │ │ ├── bootstrap-datepicker3.css.map │ │ │ │ ├── bootstrap-datepicker3.min.css │ │ │ │ ├── bootstrap-datepicker3.standalone.css │ │ │ │ ├── bootstrap-datepicker3.standalone.css.map │ │ │ │ └── bootstrap-datepicker3.standalone.min.css │ │ │ ├── js │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ └── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ ├── bootstrap-toggle-master │ │ │ ├── css │ │ │ │ ├── bootstrap-toggle.css │ │ │ │ ├── bootstrap-toggle.min.css │ │ │ │ ├── bootstrap2-toggle.css │ │ │ │ ├── bootstrap2-toggle.min.css │ │ │ │ ├── bootstrap4-toggle.css │ │ │ │ └── bootstrap4-toggle.min.css │ │ │ └── js │ │ │ │ ├── bootstrap-toggle.js │ │ │ │ ├── bootstrap-toggle.min.js │ │ │ │ ├── bootstrap-toggle.min.js.map │ │ │ │ ├── bootstrap2-toggle.js │ │ │ │ ├── bootstrap2-toggle.min.js │ │ │ │ ├── bootstrap2-toggle.min.js.map │ │ │ │ ├── bootstrap4-toggle.js │ │ │ │ ├── bootstrap4-toggle.min.js │ │ │ │ └── bootstrap4-toggle.min.js.map │ │ │ ├── bootstrap │ │ │ ├── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ └── scss │ │ │ │ ├── _alert.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _reboot.scss │ │ │ │ ├── _root.scss │ │ │ │ ├── _spinners.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _toasts.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _transitions.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-hide.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _visibility.scss │ │ │ │ ├── utilities │ │ │ │ ├── _align.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _overflow.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _screenreaders.scss │ │ │ │ ├── _shadows.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _visibility.scss │ │ │ │ └── vendor │ │ │ │ └── _rfs.scss │ │ │ ├── datatables │ │ │ ├── dataTables.bootstrap4.css │ │ │ ├── dataTables.bootstrap4.js │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ ├── jquery.dataTables.js │ │ │ └── jquery.dataTables.min.js │ │ │ ├── fontawesome-free │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ ├── js │ │ │ │ ├── all.js │ │ │ │ ├── all.min.js │ │ │ │ ├── brands.js │ │ │ │ ├── brands.min.js │ │ │ │ ├── conflict-detection.js │ │ │ │ ├── conflict-detection.min.js │ │ │ │ ├── fontawesome.js │ │ │ │ ├── fontawesome.min.js │ │ │ │ ├── regular.js │ │ │ │ ├── regular.min.js │ │ │ │ ├── solid.js │ │ │ │ ├── solid.min.js │ │ │ │ ├── v4-shims.js │ │ │ │ └── v4-shims.min.js │ │ │ ├── less │ │ │ │ ├── _animated.less │ │ │ │ ├── _bordered-pulled.less │ │ │ │ ├── _core.less │ │ │ │ ├── _fixed-width.less │ │ │ │ ├── _icons.less │ │ │ │ ├── _larger.less │ │ │ │ ├── _list.less │ │ │ │ ├── _mixins.less │ │ │ │ ├── _rotated-flipped.less │ │ │ │ ├── _screen-reader.less │ │ │ │ ├── _shims.less │ │ │ │ ├── _stacked.less │ │ │ │ ├── _variables.less │ │ │ │ ├── brands.less │ │ │ │ ├── fontawesome.less │ │ │ │ ├── regular.less │ │ │ │ ├── solid.less │ │ │ │ └── v4-shims.less │ │ │ ├── package.json │ │ │ ├── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _shims.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── brands.scss │ │ │ │ ├── fontawesome.scss │ │ │ │ ├── regular.scss │ │ │ │ ├── solid.scss │ │ │ │ └── v4-shims.scss │ │ │ ├── sprites │ │ │ │ ├── brands.svg │ │ │ │ ├── regular.svg │ │ │ │ └── solid.svg │ │ │ ├── svgs │ │ │ │ ├── brands │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ │ ├── adn.svg │ │ │ │ │ ├── adobe.svg │ │ │ │ │ ├── adversal.svg │ │ │ │ │ ├── affiliatetheme.svg │ │ │ │ │ ├── airbnb.svg │ │ │ │ │ ├── algolia.svg │ │ │ │ │ ├── alipay.svg │ │ │ │ │ ├── amazon-pay.svg │ │ │ │ │ ├── amazon.svg │ │ │ │ │ ├── amilia.svg │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── angellist.svg │ │ │ │ │ ├── angrycreative.svg │ │ │ │ │ ├── angular.svg │ │ │ │ │ ├── app-store-ios.svg │ │ │ │ │ ├── app-store.svg │ │ │ │ │ ├── apper.svg │ │ │ │ │ ├── apple-pay.svg │ │ │ │ │ ├── apple.svg │ │ │ │ │ ├── artstation.svg │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ ├── atlassian.svg │ │ │ │ │ ├── audible.svg │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ ├── avianex.svg │ │ │ │ │ ├── aviato.svg │ │ │ │ │ ├── aws.svg │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ ├── battle-net.svg │ │ │ │ │ ├── behance-square.svg │ │ │ │ │ ├── behance.svg │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ ├── bity.svg │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ ├── blogger.svg │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ ├── btc.svg │ │ │ │ │ ├── buffer.svg │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ ├── buysellads.svg │ │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ │ ├── cc-amex.svg │ │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ │ ├── cc-diners-club.svg │ │ │ │ │ ├── cc-discover.svg │ │ │ │ │ ├── cc-jcb.svg │ │ │ │ │ ├── cc-mastercard.svg │ │ │ │ │ ├── cc-paypal.svg │ │ │ │ │ ├── cc-stripe.svg │ │ │ │ │ ├── cc-visa.svg │ │ │ │ │ ├── centercode.svg │ │ │ │ │ ├── centos.svg │ │ │ │ │ ├── chrome.svg │ │ │ │ │ ├── chromecast.svg │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ ├── codepen.svg │ │ │ │ │ ├── codiepie.svg │ │ │ │ │ ├── confluence.svg │ │ │ │ │ ├── connectdevelop.svg │ │ │ │ │ ├── contao.svg │ │ │ │ │ ├── cotton-bureau.svg │ │ │ │ │ ├── cpanel.svg │ │ │ │ │ ├── creative-commons-by.svg │ │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ │ ├── creative-commons-share.svg │ │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ │ ├── creative-commons.svg │ │ │ │ │ ├── critical-role.svg │ │ │ │ │ ├── css3-alt.svg │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── cuttlefish.svg │ │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ │ ├── d-and-d.svg │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ ├── delicious.svg │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ ├── dev.svg │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ ├── dhl.svg │ │ │ │ │ ├── diaspora.svg │ │ │ │ │ ├── digg.svg │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── discourse.svg │ │ │ │ │ ├── dochub.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ ├── dribbble-square.svg │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ ├── drupal.svg │ │ │ │ │ ├── dyalog.svg │ │ │ │ │ ├── earlybirds.svg │ │ │ │ │ ├── ebay.svg │ │ │ │ │ ├── edge.svg │ │ │ │ │ ├── elementor.svg │ │ │ │ │ ├── ello.svg │ │ │ │ │ ├── ember.svg │ │ │ │ │ ├── empire.svg │ │ │ │ │ ├── envira.svg │ │ │ │ │ ├── erlang.svg │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ ├── etsy.svg │ │ │ │ │ ├── evernote.svg │ │ │ │ │ ├── expeditedssl.svg │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ ├── facebook-square.svg │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ │ ├── fedex.svg │ │ │ │ │ ├── fedora.svg │ │ │ │ │ ├── figma.svg │ │ │ │ │ ├── firefox.svg │ │ │ │ │ ├── first-order-alt.svg │ │ │ │ │ ├── first-order.svg │ │ │ │ │ ├── firstdraft.svg │ │ │ │ │ ├── flickr.svg │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ ├── fly.svg │ │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── fonticons-fi.svg │ │ │ │ │ ├── fonticons.svg │ │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ │ ├── fort-awesome.svg │ │ │ │ │ ├── forumbee.svg │ │ │ │ │ ├── foursquare.svg │ │ │ │ │ ├── free-code-camp.svg │ │ │ │ │ ├── freebsd.svg │ │ │ │ │ ├── fulcrum.svg │ │ │ │ │ ├── galactic-republic.svg │ │ │ │ │ ├── galactic-senate.svg │ │ │ │ │ ├── get-pocket.svg │ │ │ │ │ ├── gg-circle.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── git-alt.svg │ │ │ │ │ ├── git-square.svg │ │ │ │ │ ├── git.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github-square.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ ├── glide.svg │ │ │ │ │ ├── gofore.svg │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ ├── google-plus-square.svg │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ ├── grav.svg │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── hacker-news-square.svg │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ ├── hips.svg │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ ├── hooli.svg │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ ├── houzz.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ ├── imdb.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── intercom.svg │ │ │ │ │ ├── internet-explorer.svg │ │ │ │ │ ├── invision.svg │ │ │ │ │ ├── ioxhost.svg │ │ │ │ │ ├── itch-io.svg │ │ │ │ │ ├── itunes-note.svg │ │ │ │ │ ├── itunes.svg │ │ │ │ │ ├── java.svg │ │ │ │ │ ├── jedi-order.svg │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ ├── jira.svg │ │ │ │ │ ├── joget.svg │ │ │ │ │ ├── joomla.svg │ │ │ │ │ ├── js-square.svg │ │ │ │ │ ├── js.svg │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ ├── korvue.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── lastfm-square.svg │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ ├── less.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linode.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── lyft.svg │ │ │ │ │ ├── magento.svg │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ ├── markdown.svg │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ ├── medapps.svg │ │ │ │ │ ├── medium-m.svg │ │ │ │ │ ├── medium.svg │ │ │ │ │ ├── medrt.svg │ │ │ │ │ ├── meetup.svg │ │ │ │ │ ├── megaport.svg │ │ │ │ │ ├── mendeley.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ ├── modx.svg │ │ │ │ │ ├── monero.svg │ │ │ │ │ ├── napster.svg │ │ │ │ │ ├── neos.svg │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ ├── node-js.svg │ │ │ │ │ ├── node.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── ns8.svg │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ ├── opencart.svg │ │ │ │ │ ├── openid.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ ├── osi.svg │ │ │ │ │ ├── page4.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── palfed.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── penny-arcade.svg │ │ │ │ │ ├── periscope.svg │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ ├── php.svg │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ ├── pinterest-square.svg │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ ├── playstation.svg │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ ├── pushed.svg │ │ │ │ │ ├── python.svg │ │ │ │ │ ├── qq.svg │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ ├── quora.svg │ │ │ │ │ ├── r-project.svg │ │ │ │ │ ├── raspberry-pi.svg │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── reacteurope.svg │ │ │ │ │ ├── readme.svg │ │ │ │ │ ├── rebel.svg │ │ │ │ │ ├── red-river.svg │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ ├── reddit-square.svg │ │ │ │ │ ├── reddit.svg │ │ │ │ │ ├── redhat.svg │ │ │ │ │ ├── renren.svg │ │ │ │ │ ├── replyd.svg │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ ├── resolving.svg │ │ │ │ │ ├── rev.svg │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ ├── safari.svg │ │ │ │ │ ├── salesforce.svg │ │ │ │ │ ├── sass.svg │ │ │ │ │ ├── schlix.svg │ │ │ │ │ ├── scribd.svg │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ ├── shopware.svg │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ ├── sith.svg │ │ │ │ │ ├── sketch.svg │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack-hash.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ ├── sourcetree.svg │ │ │ │ │ ├── speakap.svg │ │ │ │ │ ├── speaker-deck.svg │ │ │ │ │ ├── spotify.svg │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ ├── stackpath.svg │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ ├── steam-square.svg │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ ├── steam.svg │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ ├── strava.svg │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ ├── stripe.svg │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ ├── supple.svg │ │ │ │ │ ├── suse.svg │ │ │ │ │ ├── symfony.svg │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ ├── telegram-plane.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ ├── themeco.svg │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ ├── think-peaks.svg │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ ├── trello.svg │ │ │ │ │ ├── tripadvisor.svg │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitch.svg │ │ │ │ │ ├── twitter-square.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── typo3.svg │ │ │ │ │ ├── uber.svg │ │ │ │ │ ├── ubuntu.svg │ │ │ │ │ ├── uikit.svg │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ ├── untappd.svg │ │ │ │ │ ├── ups.svg │ │ │ │ │ ├── usb.svg │ │ │ │ │ ├── usps.svg │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ ├── viadeo-square.svg │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ ├── viber.svg │ │ │ │ │ ├── vimeo-square.svg │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ ├── vine.svg │ │ │ │ │ ├── vk.svg │ │ │ │ │ ├── vnv.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── waze.svg │ │ │ │ │ ├── weebly.svg │ │ │ │ │ ├── weibo.svg │ │ │ │ │ ├── weixin.svg │ │ │ │ │ ├── whatsapp-square.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── wix.svg │ │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ ├── wpressr.svg │ │ │ │ │ ├── xbox.svg │ │ │ │ │ ├── xing-square.svg │ │ │ │ │ ├── xing.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ ├── yammer.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── yandex.svg │ │ │ │ │ ├── yarn.svg │ │ │ │ │ ├── yelp.svg │ │ │ │ │ ├── yoast.svg │ │ │ │ │ ├── youtube-square.svg │ │ │ │ │ ├── youtube.svg │ │ │ │ │ └── zhihu.svg │ │ │ │ ├── regular │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ └── window-restore.svg │ │ │ │ └── solid │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── adjust.svg │ │ │ │ │ ├── air-freshener.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── allergies.svg │ │ │ │ │ ├── ambulance.svg │ │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ │ ├── anchor.svg │ │ │ │ │ ├── angle-double-down.svg │ │ │ │ │ ├── angle-double-left.svg │ │ │ │ │ ├── angle-double-right.svg │ │ │ │ │ ├── angle-double-up.svg │ │ │ │ │ ├── angle-down.svg │ │ │ │ │ ├── angle-left.svg │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── apple-alt.svg │ │ │ │ │ ├── archive.svg │ │ │ │ │ ├── archway.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ │ ├── arrows-alt.svg │ │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── atlas.svg │ │ │ │ │ ├── atom.svg │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ ├── award.svg │ │ │ │ │ ├── baby-carriage.svg │ │ │ │ │ ├── baby.svg │ │ │ │ │ ├── backspace.svg │ │ │ │ │ ├── backward.svg │ │ │ │ │ ├── bacon.svg │ │ │ │ │ ├── balance-scale-left.svg │ │ │ │ │ ├── balance-scale-right.svg │ │ │ │ │ ├── balance-scale.svg │ │ │ │ │ ├── ban.svg │ │ │ │ │ ├── band-aid.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── baseball-ball.svg │ │ │ │ │ ├── basketball-ball.svg │ │ │ │ │ ├── bath.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ ├── bible.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── biking.svg │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ ├── biohazard.svg │ │ │ │ │ ├── birthday-cake.svg │ │ │ │ │ ├── blender-phone.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── blind.svg │ │ │ │ │ ├── blog.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── bomb.svg │ │ │ │ │ ├── bone.svg │ │ │ │ │ ├── bong.svg │ │ │ │ │ ├── book-dead.svg │ │ │ │ │ ├── book-medical.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-reader.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── border-all.svg │ │ │ │ │ ├── border-none.svg │ │ │ │ │ ├── border-style.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box-open.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── boxes.svg │ │ │ │ │ ├── braille.svg │ │ │ │ │ ├── brain.svg │ │ │ │ │ ├── bread-slice.svg │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── broadcast-tower.svg │ │ │ │ │ ├── broom.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ ├── burn.svg │ │ │ │ │ ├── bus-alt.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-time.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-day.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar-week.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── campground.svg │ │ │ │ │ ├── candy-cane.svg │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ ├── capsules.svg │ │ │ │ │ ├── car-alt.svg │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ ├── car-crash.svg │ │ │ │ │ ├── car-side.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── carrot.svg │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ ├── cash-register.svg │ │ │ │ │ ├── cat.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── chair.svg │ │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-double.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── cheese.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-board.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── chess.svg │ │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── child.svg │ │ │ │ │ ├── church.svg │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── city.svg │ │ │ │ │ ├── clinic-medical.svg │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ │ ├── cloud-meatball.svg │ │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ ├── cloud-rain.svg │ │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ │ ├── cloud-sun.svg │ │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── cocktail.svg │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── coffee.svg │ │ │ │ │ ├── cog.svg │ │ │ │ │ ├── cogs.svg │ │ │ │ │ ├── coins.svg │ │ │ │ │ ├── columns.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-medical.svg │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── concierge-bell.svg │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ ├── cookie.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── couch.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── crop-alt.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ ├── crow.svg │ │ │ │ │ ├── crown.svg │ │ │ │ │ ├── crutch.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cubes.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── deaf.svg │ │ │ │ │ ├── democrat.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ ├── diagnoses.svg │ │ │ │ │ ├── dice-d20.svg │ │ │ │ │ ├── dice-d6.svg │ │ │ │ │ ├── dice-five.svg │ │ │ │ │ ├── dice-four.svg │ │ │ │ │ ├── dice-one.svg │ │ │ │ │ ├── dice-six.svg │ │ │ │ │ ├── dice-three.svg │ │ │ │ │ ├── dice-two.svg │ │ │ │ │ ├── dice.svg │ │ │ │ │ ├── digital-tachograph.svg │ │ │ │ │ ├── directions.svg │ │ │ │ │ ├── divide.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dna.svg │ │ │ │ │ ├── dog.svg │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ │ ├── dolly.svg │ │ │ │ │ ├── donate.svg │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ ├── door-open.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── dove.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── drafting-compass.svg │ │ │ │ │ ├── dragon.svg │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ ├── drum.svg │ │ │ │ │ ├── drumstick-bite.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── dumpster-fire.svg │ │ │ │ │ ├── dumpster.svg │ │ │ │ │ ├── dungeon.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── egg.svg │ │ │ │ │ ├── eject.svg │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope-square.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── equals.svg │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── ethernet.svg │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ ├── exchange-alt.svg │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── external-link-alt.svg │ │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── fan.svg │ │ │ │ │ ├── fast-backward.svg │ │ │ │ │ ├── fast-forward.svg │ │ │ │ │ ├── fax.svg │ │ │ │ │ ├── feather-alt.svg │ │ │ │ │ ├── feather.svg │ │ │ │ │ ├── female.svg │ │ │ │ │ ├── fighter-jet.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ ├── file-csv.svg │ │ │ │ │ ├── file-download.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-export.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ ├── file-medical-alt.svg │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ ├── file-upload.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ ├── fill.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ ├── fire-alt.svg │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── first-aid.svg │ │ │ │ │ ├── fish.svg │ │ │ │ │ ├── fist-raised.svg │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ ├── flag-usa.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── football-ball.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ ├── frog.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── funnel-dollar.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ ├── gavel.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── genderless.svg │ │ │ │ │ ├── ghost.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── gifts.svg │ │ │ │ │ ├── glass-cheers.svg │ │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ │ ├── glass-martini.svg │ │ │ │ │ ├── glass-whiskey.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe-africa.svg │ │ │ │ │ ├── globe-americas.svg │ │ │ │ │ ├── globe-asia.svg │ │ │ │ │ ├── globe-europe.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-ball.svg │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── grip-horizontal.svg │ │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ │ ├── grip-lines.svg │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ ├── guitar.svg │ │ │ │ │ ├── h-square.svg │ │ │ │ │ ├── hamburger.svg │ │ │ │ │ ├── hammer.svg │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hands-helping.svg │ │ │ │ │ ├── hands.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hanukiah.svg │ │ │ │ │ ├── hard-hat.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── hat-wizard.svg │ │ │ │ │ ├── haykal.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heading.svg │ │ │ │ │ ├── headphones-alt.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart-broken.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── heartbeat.svg │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ ├── hiking.svg │ │ │ │ │ ├── hippo.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ ├── holly-berry.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── horse-head.svg │ │ │ │ │ ├── horse.svg │ │ │ │ │ ├── hospital-alt.svg │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hot-tub.svg │ │ │ │ │ ├── hotdog.svg │ │ │ │ │ ├── hotel.svg │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── house-damage.svg │ │ │ │ │ ├── hryvnia.svg │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ ├── ice-cream.svg │ │ │ │ │ ├── icicles.svg │ │ │ │ │ ├── icons.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card-alt.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── igloo.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── industry.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── jedi.svg │ │ │ │ │ ├── joint.svg │ │ │ │ │ ├── journal-whills.svg │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── khanda.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ ├── landmark.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ ├── laptop-medical.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ ├── less-than.svg │ │ │ │ │ ├── level-down-alt.svg │ │ │ │ │ ├── level-up-alt.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ │ ├── low-vision.svg │ │ │ │ │ ├── luggage-cart.svg │ │ │ │ │ ├── magic.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── mail-bulk.svg │ │ │ │ │ ├── male.svg │ │ │ │ │ ├── map-marked-alt.svg │ │ │ │ │ ├── map-marked.svg │ │ │ │ │ ├── map-marker-alt.svg │ │ │ │ │ ├── map-marker.svg │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ ├── map-signs.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ ├── mars.svg │ │ │ │ │ ├── mask.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── medkit.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menorah.svg │ │ │ │ │ ├── mercury.svg │ │ │ │ │ ├── meteor.svg │ │ │ │ │ ├── microchip.svg │ │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ │ ├── microphone-alt.svg │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ ├── microphone.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── minus-circle.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── mitten.svg │ │ │ │ │ ├── mobile-alt.svg │ │ │ │ │ ├── mobile.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ ├── money-check-alt.svg │ │ │ │ │ ├── money-check.svg │ │ │ │ │ ├── monument.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ ├── mosque.svg │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ ├── mountain.svg │ │ │ │ │ ├── mouse-pointer.svg │ │ │ │ │ ├── mug-hot.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── network-wired.svg │ │ │ │ │ ├── neuter.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── otter.svg │ │ │ │ │ ├── outdent.svg │ │ │ │ │ ├── pager.svg │ │ │ │ │ ├── paint-brush.svg │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ ├── palette.svg │ │ │ │ │ ├── pallet.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── parking.svg │ │ │ │ │ ├── passport.svg │ │ │ │ │ ├── pastafarianism.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── peace.svg │ │ │ │ │ ├── pen-alt.svg │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ ├── pen-square.svg │ │ │ │ │ ├── pen.svg │ │ │ │ │ ├── pencil-alt.svg │ │ │ │ │ ├── pencil-ruler.svg │ │ │ │ │ ├── people-carry.svg │ │ │ │ │ ├── pepper-hot.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── percentage.svg │ │ │ │ │ ├── person-booth.svg │ │ │ │ │ ├── phone-alt.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-square-alt.svg │ │ │ │ │ ├── phone-square.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── photo-video.svg │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ ├── pills.svg │ │ │ │ │ ├── pizza-slice.svg │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ ├── plane.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── plug.svg │ │ │ │ │ ├── plus-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── podcast.svg │ │ │ │ │ ├── poll-h.svg │ │ │ │ │ ├── poll.svg │ │ │ │ │ ├── poo-storm.svg │ │ │ │ │ ├── poo.svg │ │ │ │ │ ├── poop.svg │ │ │ │ │ ├── portrait.svg │ │ │ │ │ ├── pound-sign.svg │ │ │ │ │ ├── power-off.svg │ │ │ │ │ ├── pray.svg │ │ │ │ │ ├── praying-hands.svg │ │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ ├── prescription.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── procedures.svg │ │ │ │ │ ├── project-diagram.svg │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── quidditch.svg │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ ├── quran.svg │ │ │ │ │ ├── radiation-alt.svg │ │ │ │ │ ├── radiation.svg │ │ │ │ │ ├── rainbow.svg │ │ │ │ │ ├── random.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── recycle.svg │ │ │ │ │ ├── redo-alt.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── remove-format.svg │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ ├── reply.svg │ │ │ │ │ ├── republican.svg │ │ │ │ │ ├── restroom.svg │ │ │ │ │ ├── retweet.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── ring.svg │ │ │ │ │ ├── road.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── route.svg │ │ │ │ │ ├── rss-square.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── running.svg │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── satellite-dish.svg │ │ │ │ │ ├── satellite.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ ├── scroll.svg │ │ │ │ │ ├── sd-card.svg │ │ │ │ │ ├── search-dollar.svg │ │ │ │ │ ├── search-location.svg │ │ │ │ │ ├── search-minus.svg │ │ │ │ │ ├── search-plus.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── seedling.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-alt-square.svg │ │ │ │ │ ├── share-alt.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ ├── shield-alt.svg │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shipping-fast.svg │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ ├── shopping-bag.svg │ │ │ │ │ ├── shopping-basket.svg │ │ │ │ │ ├── shopping-cart.svg │ │ │ │ │ ├── shower.svg │ │ │ │ │ ├── shuttle-van.svg │ │ │ │ │ ├── sign-in-alt.svg │ │ │ │ │ ├── sign-language.svg │ │ │ │ │ ├── sign-out-alt.svg │ │ │ │ │ ├── sign.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signature.svg │ │ │ │ │ ├── sim-card.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skating.svg │ │ │ │ │ ├── skiing-nordic.svg │ │ │ │ │ ├── skiing.svg │ │ │ │ │ ├── skull-crossbones.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── slash.svg │ │ │ │ │ ├── sleigh.svg │ │ │ │ │ ├── sliders-h.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── smog.svg │ │ │ │ │ ├── smoking-ban.svg │ │ │ │ │ ├── smoking.svg │ │ │ │ │ ├── sms.svg │ │ │ │ │ ├── snowboarding.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── snowman.svg │ │ │ │ │ ├── snowplow.svg │ │ │ │ │ ├── socks.svg │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ │ ├── sort-amount-down.svg │ │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ │ ├── sort-amount-up.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── spa.svg │ │ │ │ │ ├── space-shuttle.svg │ │ │ │ │ ├── spell-check.svg │ │ │ │ │ ├── spider.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── splotch.svg │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-root-alt.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── stamp.svg │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── step-backward.svg │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-alt.svg │ │ │ │ │ ├── store.svg │ │ │ │ │ ├── stream.svg │ │ │ │ │ ├── street-view.svg │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── subway.svg │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ ├── swimmer.svg │ │ │ │ │ ├── swimming-pool.svg │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ ├── sync-alt.svg │ │ │ │ │ ├── sync.svg │ │ │ │ │ ├── syringe.svg │ │ │ │ │ ├── table-tennis.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tablet-alt.svg │ │ │ │ │ ├── tablet.svg │ │ │ │ │ ├── tablets.svg │ │ │ │ │ ├── tachometer-alt.svg │ │ │ │ │ ├── tag.svg │ │ │ │ │ ├── tags.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── tasks.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ ├── teeth.svg │ │ │ │ │ ├── temperature-high.svg │ │ │ │ │ ├── temperature-low.svg │ │ │ │ │ ├── tenge.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-height.svg │ │ │ │ │ ├── text-width.svg │ │ │ │ │ ├── th-large.svg │ │ │ │ │ ├── th-list.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── theater-masks.svg │ │ │ │ │ ├── thermometer-empty.svg │ │ │ │ │ ├── thermometer-full.svg │ │ │ │ │ ├── thermometer-half.svg │ │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ ├── ticket-alt.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── times.svg │ │ │ │ │ ├── tint-slash.svg │ │ │ │ │ ├── tint.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ ├── toilet.svg │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ ├── tools.svg │ │ │ │ │ ├── tooth.svg │ │ │ │ │ ├── torah.svg │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ ├── tractor.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── tram.svg │ │ │ │ │ ├── transgender-alt.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ │ ├── trash-restore.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── tree.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── truck-loading.svg │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ ├── truck.svg │ │ │ │ │ ├── tshirt.svg │ │ │ │ │ ├── tty.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── undo-alt.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ ├── university.svg │ │ │ │ │ ├── unlink.svg │ │ │ │ │ ├── unlock-alt.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── user-alt-slash.svg │ │ │ │ │ ├── user-alt.svg │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ ├── user-check.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ ├── user-cog.svg │ │ │ │ │ ├── user-edit.svg │ │ │ │ │ ├── user-friends.svg │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ ├── user-injured.svg │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ ├── user-md.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ ├── user-nurse.svg │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ ├── user-times.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users-cog.svg │ │ │ │ │ ├── users.svg │ │ │ │ │ ├── utensil-spoon.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vial.svg │ │ │ │ │ ├── vials.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── vihara.svg │ │ │ │ │ ├── voicemail.svg │ │ │ │ │ ├── volleyball-ball.svg │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ ├── volume-mute.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ ├── vote-yea.svg │ │ │ │ │ ├── vr-cardboard.svg │ │ │ │ │ ├── walking.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ ├── water.svg │ │ │ │ │ ├── wave-square.svg │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ ├── weight.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── wind.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ ├── wine-bottle.svg │ │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ ├── wrench.svg │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ └── yin-yang.svg │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── jonthornton-jquery-timepicker │ │ │ ├── jquery.timepicker.css │ │ │ ├── jquery.timepicker.js │ │ │ ├── jquery.timepicker.min.css │ │ │ ├── jquery.timepicker.min.js │ │ │ ├── jt.timepicker.jquery.json │ │ │ └── rollup.config.js │ │ │ ├── jquery-easing │ │ │ ├── jquery.easing.compatibility.js │ │ │ ├── jquery.easing.js │ │ │ └── jquery.easing.min.js │ │ │ ├── jquery │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ │ ├── leaflet │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-src.esm.js │ │ │ ├── leaflet-src.esm.js.map │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet-src.js.map │ │ │ ├── leaflet.css │ │ │ ├── leaflet.js │ │ │ └── leaflet.js.map │ │ │ └── sweetalert2 │ │ │ ├── sweetalert2.all.js │ │ │ ├── sweetalert2.all.min.js │ │ │ ├── sweetalert2.css │ │ │ ├── sweetalert2.js │ │ │ ├── sweetalert2.min.css │ │ │ └── sweetalert2.min.js │ ├── index.php │ └── storage │ │ ├── pdf_cache │ │ └── index.html │ │ ├── profile │ │ └── index.html │ │ ├── qrcode_pegawai │ │ └── index.html │ │ ├── setting │ │ └── index.html │ │ └── sys │ │ └── index.html ├── system │ ├── .htaccess │ ├── core │ │ ├── Benchmark.php │ │ ├── CodeIgniter.php │ │ ├── Common.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Exceptions.php │ │ ├── Hooks.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Log.php │ │ ├── Model.php │ │ ├── Output.php │ │ ├── Router.php │ │ ├── Security.php │ │ ├── URI.php │ │ ├── Utf8.php │ │ ├── compat │ │ │ ├── hash.php │ │ │ ├── index.html │ │ │ ├── mbstring.php │ │ │ ├── password.php │ │ │ └── standard.php │ │ └── index.html │ ├── database │ │ ├── DB.php │ │ ├── DB_cache.php │ │ ├── DB_driver.php │ │ ├── DB_forge.php │ │ ├── DB_query_builder.php │ │ ├── DB_result.php │ │ ├── DB_utility.php │ │ ├── drivers │ │ │ ├── cubrid │ │ │ │ ├── cubrid_driver.php │ │ │ │ ├── cubrid_forge.php │ │ │ │ ├── cubrid_result.php │ │ │ │ ├── cubrid_utility.php │ │ │ │ └── index.html │ │ │ ├── ibase │ │ │ │ ├── ibase_driver.php │ │ │ │ ├── ibase_forge.php │ │ │ │ ├── ibase_result.php │ │ │ │ ├── ibase_utility.php │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── mssql │ │ │ │ ├── index.html │ │ │ │ ├── mssql_driver.php │ │ │ │ ├── mssql_forge.php │ │ │ │ ├── mssql_result.php │ │ │ │ └── mssql_utility.php │ │ │ ├── mysql │ │ │ │ ├── index.html │ │ │ │ ├── mysql_driver.php │ │ │ │ ├── mysql_forge.php │ │ │ │ ├── mysql_result.php │ │ │ │ └── mysql_utility.php │ │ │ ├── mysqli │ │ │ │ ├── index.html │ │ │ │ ├── mysqli_driver.php │ │ │ │ ├── mysqli_forge.php │ │ │ │ ├── mysqli_result.php │ │ │ │ └── mysqli_utility.php │ │ │ ├── oci8 │ │ │ │ ├── index.html │ │ │ │ ├── oci8_driver.php │ │ │ │ ├── oci8_forge.php │ │ │ │ ├── oci8_result.php │ │ │ │ └── oci8_utility.php │ │ │ ├── odbc │ │ │ │ ├── index.html │ │ │ │ ├── odbc_driver.php │ │ │ │ ├── odbc_forge.php │ │ │ │ ├── odbc_result.php │ │ │ │ └── odbc_utility.php │ │ │ ├── pdo │ │ │ │ ├── index.html │ │ │ │ ├── pdo_driver.php │ │ │ │ ├── pdo_forge.php │ │ │ │ ├── pdo_result.php │ │ │ │ ├── pdo_utility.php │ │ │ │ └── subdrivers │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ │ └── pdo_sqlsrv_forge.php │ │ │ ├── postgre │ │ │ │ ├── index.html │ │ │ │ ├── postgre_driver.php │ │ │ │ ├── postgre_forge.php │ │ │ │ ├── postgre_result.php │ │ │ │ └── postgre_utility.php │ │ │ ├── sqlite │ │ │ │ ├── index.html │ │ │ │ ├── sqlite_driver.php │ │ │ │ ├── sqlite_forge.php │ │ │ │ ├── sqlite_result.php │ │ │ │ └── sqlite_utility.php │ │ │ ├── sqlite3 │ │ │ │ ├── index.html │ │ │ │ ├── sqlite3_driver.php │ │ │ │ ├── sqlite3_forge.php │ │ │ │ ├── sqlite3_result.php │ │ │ │ └── sqlite3_utility.php │ │ │ └── sqlsrv │ │ │ │ ├── index.html │ │ │ │ ├── sqlsrv_driver.php │ │ │ │ ├── sqlsrv_forge.php │ │ │ │ ├── sqlsrv_result.php │ │ │ │ └── sqlsrv_utility.php │ │ └── index.html │ ├── fonts │ │ ├── index.html │ │ └── texb.ttf │ ├── helpers │ │ ├── array_helper.php │ │ ├── captcha_helper.php │ │ ├── cookie_helper.php │ │ ├── date_helper.php │ │ ├── directory_helper.php │ │ ├── download_helper.php │ │ ├── email_helper.php │ │ ├── file_helper.php │ │ ├── form_helper.php │ │ ├── html_helper.php │ │ ├── index.html │ │ ├── inflector_helper.php │ │ ├── language_helper.php │ │ ├── number_helper.php │ │ ├── path_helper.php │ │ ├── security_helper.php │ │ ├── smiley_helper.php │ │ ├── string_helper.php │ │ ├── text_helper.php │ │ ├── typography_helper.php │ │ ├── url_helper.php │ │ └── xml_helper.php │ ├── index.html │ ├── language │ │ ├── english │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ └── index.html │ └── libraries │ │ ├── Cache │ │ ├── Cache.php │ │ ├── drivers │ │ │ ├── Cache_apc.php │ │ │ ├── Cache_dummy.php │ │ │ ├── Cache_file.php │ │ │ ├── Cache_memcached.php │ │ │ ├── Cache_redis.php │ │ │ ├── Cache_wincache.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Calendar.php │ │ ├── Cart.php │ │ ├── Driver.php │ │ ├── Email.php │ │ ├── Encrypt.php │ │ ├── Encryption.php │ │ ├── Form_validation.php │ │ ├── Ftp.php │ │ ├── Image_lib.php │ │ ├── Javascript.php │ │ ├── Javascript │ │ ├── Jquery.php │ │ └── index.html │ │ ├── Migration.php │ │ ├── Pagination.php │ │ ├── Parser.php │ │ ├── Profiler.php │ │ ├── Session │ │ ├── Session.php │ │ ├── SessionHandlerInterface.php │ │ ├── Session_driver.php │ │ ├── drivers │ │ │ ├── Session_database_driver.php │ │ │ ├── Session_files_driver.php │ │ │ ├── Session_memcached_driver.php │ │ │ ├── Session_redis_driver.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Table.php │ │ ├── Trackback.php │ │ ├── Typography.php │ │ ├── Unit_test.php │ │ ├── Upload.php │ │ ├── User_agent.php │ │ ├── Xmlrpc.php │ │ ├── Xmlrpcs.php │ │ ├── Zip.php │ │ └── index.html └── vendor │ ├── autoload.php │ ├── bin │ ├── phpunit │ └── phpunit.bat │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ ├── doctrine │ └── instantiator │ │ ├── .doctrine-project.json │ │ ├── .github │ │ └── FUNDING.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ └── en │ │ │ ├── index.rst │ │ │ └── sidebar.rst │ │ ├── phpbench.json │ │ ├── phpcs.xml.dist │ │ ├── phpstan.neon.dist │ │ └── src │ │ └── Doctrine │ │ └── Instantiator │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── UnexpectedValueException.php │ │ ├── Instantiator.php │ │ └── InstantiatorInterface.php │ ├── maennchen │ └── zipstream-php │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── psalm.xml │ │ ├── src │ │ ├── Bigint.php │ │ ├── DeflateStream.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── EncodingException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── FileNotReadableException.php │ │ │ ├── IncompatibleOptionsException.php │ │ │ ├── OverflowException.php │ │ │ └── StreamNotReadableException.php │ │ ├── File.php │ │ ├── Option │ │ │ ├── Archive.php │ │ │ ├── File.php │ │ │ ├── Method.php │ │ │ └── Version.php │ │ ├── Stream.php │ │ └── ZipStream.php │ │ └── test │ │ ├── BigintTest.php │ │ ├── ZipStreamTest.php │ │ ├── bootstrap.php │ │ └── bug │ │ └── BugHonorFileTimeTest.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.json │ │ ├── examples │ │ └── test.php │ │ ├── infection.json.dist │ │ ├── license.md │ │ └── phpstan.neon │ ├── mikey179 │ └── vfsstream │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── examples │ │ ├── Example.php │ │ ├── ExampleTestCaseOldWay.php │ │ ├── ExampleTestCaseWithVfsStream.php │ │ ├── FailureExample.php │ │ ├── FailureExampleTestCase.php │ │ ├── FileModeExampleTestCaseOldWay.php │ │ ├── FilePermissionsExample.php │ │ ├── FilePermissionsExampleTestCase.php │ │ ├── FilemodeExample.php │ │ ├── FilemodeExampleTestCaseWithVfsStream.php │ │ └── bootstrap.php │ │ ├── phpdoc.dist.xml │ │ ├── phpunit.xml.dist │ │ ├── readme.md │ │ └── src │ │ ├── main │ │ └── php │ │ │ └── org │ │ │ └── bovigo │ │ │ └── vfs │ │ │ ├── Quota.php │ │ │ ├── vfsStream.php │ │ │ ├── vfsStreamAbstractContent.php │ │ │ ├── vfsStreamContainer.php │ │ │ ├── vfsStreamContainerIterator.php │ │ │ ├── vfsStreamContent.php │ │ │ ├── vfsStreamDirectory.php │ │ │ ├── vfsStreamException.php │ │ │ ├── vfsStreamFile.php │ │ │ ├── vfsStreamWrapper.php │ │ │ └── visitor │ │ │ ├── vfsStreamAbstractVisitor.php │ │ │ ├── vfsStreamPrintVisitor.php │ │ │ ├── vfsStreamStructureVisitor.php │ │ │ └── vfsStreamVisitor.php │ │ └── test │ │ ├── php │ │ └── org │ │ │ └── bovigo │ │ │ └── vfs │ │ │ ├── QuotaTestCase.php │ │ │ ├── proxy │ │ │ └── vfsStreamWrapperRecordingProxy.php │ │ │ ├── vfsStreamAbstractContentTestCase.php │ │ │ ├── vfsStreamContainerIteratorTestCase.php │ │ │ ├── vfsStreamDirectoryIssue18TestCase.php │ │ │ ├── vfsStreamDirectoryTestCase.php │ │ │ ├── vfsStreamFileTestCase.php │ │ │ ├── vfsStreamGlobTestCase.php │ │ │ ├── vfsStreamResolveIncludePathTestCase.php │ │ │ ├── vfsStreamTestCase.php │ │ │ ├── vfsStreamUmaskTestCase.php │ │ │ ├── vfsStreamWrapperAlreadyRegisteredTestCase.php │ │ │ ├── vfsStreamWrapperBaseTestCase.php │ │ │ ├── vfsStreamWrapperDirSeparatorTestCase.php │ │ │ ├── vfsStreamWrapperDirTestCase.php │ │ │ ├── vfsStreamWrapperFileTestCase.php │ │ │ ├── vfsStreamWrapperFileTimesTestCase.php │ │ │ ├── vfsStreamWrapperFlockTestCase.php │ │ │ ├── vfsStreamWrapperQuotaTestCase.php │ │ │ ├── vfsStreamWrapperSetOptionTestCase.php │ │ │ ├── vfsStreamWrapperStreamSelectTestCase.php │ │ │ ├── vfsStreamWrapperTestCase.php │ │ │ ├── vfsStreamWrapperWithoutRootTestCase.php │ │ │ ├── vfsStreamZipTestCase.php │ │ │ └── visitor │ │ │ ├── vfsStreamAbstractVisitorTestCase.php │ │ │ ├── vfsStreamPrintVisitorTestCase.php │ │ │ └── vfsStreamStructureVisitorTestCase.php │ │ └── resources │ │ └── filesystemcopy │ │ ├── emptyFolder │ │ └── .gitignore │ │ └── withSubfolders │ │ ├── aFile.txt │ │ ├── subfolder1 │ │ └── file1.txt │ │ └── subfolder2 │ │ └── .gitignore │ ├── mpdf │ └── mpdf │ │ ├── .github │ │ ├── CONTRIBUTING.md │ │ ├── FUNDING.yml │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CREDITS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── data │ │ ├── CJKdata.php │ │ ├── collations │ │ │ ├── Afrikaans_South_Africa.php │ │ │ ├── Albanian_Albania.php │ │ │ ├── Alsatian_France.php │ │ │ ├── Arabic_Algeria.php │ │ │ ├── Arabic_Bahrain.php │ │ │ ├── Arabic_Egypt.php │ │ │ ├── Arabic_Iraq.php │ │ │ ├── Arabic_Jordan.php │ │ │ ├── Arabic_Kuwait.php │ │ │ ├── Arabic_Lebanon.php │ │ │ ├── Arabic_Libya.php │ │ │ ├── Arabic_Morocco.php │ │ │ ├── Arabic_Oman.php │ │ │ ├── Arabic_Pseudo_RTL.php │ │ │ ├── Arabic_Qatar.php │ │ │ ├── Arabic_Saudi_Arabia.php │ │ │ ├── Arabic_Syria.php │ │ │ ├── Arabic_Tunisia.php │ │ │ ├── Arabic_Yemen.php │ │ │ ├── Azeri_(Cyrillic)_Azerbaijan.php │ │ │ ├── Azeri_(Latin)_Azerbaijan.php │ │ │ ├── Bashkir_Russia.php │ │ │ ├── Basque_Spain.php │ │ │ ├── Belarusian_Belarus.php │ │ │ ├── Bosnian_(Cyrillic)_Bosnia_and_Herzegovina.php │ │ │ ├── Bosnian_(Latin)_Bosnia_and_Herzegovina.php │ │ │ ├── Breton_France.php │ │ │ ├── Bulgarian_Bulgaria.php │ │ │ ├── Catalan_Spain.php │ │ │ ├── Corsican_France.php │ │ │ ├── Croatian_(Latin)_Bosnia_and_Herzegovina.php │ │ │ ├── Croatian_Croatia.php │ │ │ ├── Czech_Czech_Republic.php │ │ │ ├── Danish_Denmark.php │ │ │ ├── Dari_Afghanistan.php │ │ │ ├── Dutch_Belgium.php │ │ │ ├── Dutch_Netherlands.php │ │ │ ├── English_Australia.php │ │ │ ├── English_Belize.php │ │ │ ├── English_Canada.php │ │ │ ├── English_Caribbean.php │ │ │ ├── English_India.php │ │ │ ├── English_Ireland.php │ │ │ ├── English_Jamaica.php │ │ │ ├── English_Malaysia.php │ │ │ ├── English_New_Zealand.php │ │ │ ├── English_Republic_of_the_Philippines.php │ │ │ ├── English_Singapore.php │ │ │ ├── English_South_Africa.php │ │ │ ├── English_Trinidad_and_Tobago.php │ │ │ ├── English_United_Kingdom.php │ │ │ ├── English_United_States.php │ │ │ ├── English_Zimbabwe.php │ │ │ ├── Estonian_Estonia.php │ │ │ ├── Faroese_Faroe_Islands.php │ │ │ ├── Filipino_Philippines.php │ │ │ ├── Finnish_Finland.php │ │ │ ├── French_Belgium.php │ │ │ ├── French_Canada.php │ │ │ ├── French_France.php │ │ │ ├── French_Luxembourg.php │ │ │ ├── French_Principality_of_Monaco.php │ │ │ ├── French_Switzerland.php │ │ │ ├── Frisian_Netherlands.php │ │ │ ├── Galician_Spain.php │ │ │ ├── German_Austria.php │ │ │ ├── German_Germany.php │ │ │ ├── German_Liechtenstein.php │ │ │ ├── German_Luxembourg.php │ │ │ ├── German_Switzerland.php │ │ │ ├── Greek_Greece.php │ │ │ ├── Greenlandic_Greenland.php │ │ │ ├── Hausa_(Latin)_Nigeria.php │ │ │ ├── Hebrew_Israel.php │ │ │ ├── Hungarian_Hungary.php │ │ │ ├── Icelandic_Iceland.php │ │ │ ├── Igbo_Nigeria.php │ │ │ ├── Indonesian_Indonesia.php │ │ │ ├── Inuktitut_(Latin)_Canada.php │ │ │ ├── Invariant_Language_Invariant_Country.php │ │ │ ├── Irish_Ireland.php │ │ │ ├── Italian_Italy.php │ │ │ ├── Italian_Switzerland.php │ │ │ ├── Kinyarwanda_Rwanda.php │ │ │ ├── Kiswahili_Kenya.php │ │ │ ├── Kyrgyz_Kyrgyzstan.php │ │ │ ├── Latvian_Latvia.php │ │ │ ├── Lithuanian_Lithuania.php │ │ │ ├── Lower_Sorbian_Germany.php │ │ │ ├── Luxembourgish_Luxembourg.php │ │ │ ├── Macedonian_(FYROM)_Macedonia_(FYROM).php │ │ │ ├── Malay_Brunei_Darussalam.php │ │ │ ├── Malay_Malaysia.php │ │ │ ├── Mapudungun_Chile.php │ │ │ ├── Mohawk_Canada.php │ │ │ ├── Mongolian_(Cyrillic)_Mongolia.php │ │ │ ├── Norwegian_(Nynorsk)_Norway.php │ │ │ ├── Occitan_France.php │ │ │ ├── Persian_Iran.php │ │ │ ├── Polish_Poland.php │ │ │ ├── Portuguese_Brazil.php │ │ │ ├── Portuguese_Portugal.php │ │ │ ├── Quechua_Bolivia.php │ │ │ ├── Quechua_Ecuador.php │ │ │ ├── Quechua_Peru.php │ │ │ ├── Romanian_Romania.php │ │ │ ├── Romansh_Switzerland.php │ │ │ ├── Russian_Russia.php │ │ │ ├── Sami_(Inari)_Finland.php │ │ │ ├── Sami_(Lule)_Norway.php │ │ │ ├── Sami_(Lule)_Sweden.php │ │ │ ├── Sami_(Northern)_Finland.php │ │ │ ├── Sami_(Northern)_Norway.php │ │ │ ├── Sami_(Northern)_Sweden.php │ │ │ ├── Sami_(Skolt)_Finland.php │ │ │ ├── Sami_(Southern)_Norway.php │ │ │ ├── Sami_(Southern)_Sweden.php │ │ │ ├── Serbian_(Cyrillic)_Bosnia_and_Herzegovina.php │ │ │ ├── Serbian_(Cyrillic)_Serbia.php │ │ │ ├── Serbian_(Latin)_Bosnia_and_Herzegovina.php │ │ │ ├── Serbian_(Latin)_Serbia.php │ │ │ ├── Sesotho_sa_Leboa_South_Africa.php │ │ │ ├── Setswana_South_Africa.php │ │ │ ├── Slovak_Slovakia.php │ │ │ ├── Slovenian_Slovenia.php │ │ │ ├── Spanish_Argentina.php │ │ │ ├── Spanish_Bolivia.php │ │ │ ├── Spanish_Chile.php │ │ │ ├── Spanish_Colombia.php │ │ │ ├── Spanish_Costa_Rica.php │ │ │ ├── Spanish_Dominican_Republic.php │ │ │ ├── Spanish_Ecuador.php │ │ │ ├── Spanish_El_Salvador.php │ │ │ ├── Spanish_Guatemala.php │ │ │ ├── Spanish_Honduras.php │ │ │ ├── Spanish_Mexico.php │ │ │ ├── Spanish_Nicaragua.php │ │ │ ├── Spanish_Panama.php │ │ │ ├── Spanish_Paraguay.php │ │ │ ├── Spanish_Peru.php │ │ │ ├── Spanish_Puerto_Rico.php │ │ │ ├── Spanish_Spain.php │ │ │ ├── Spanish_United_States.php │ │ │ ├── Spanish_Uruguay.php │ │ │ ├── Spanish_Venezuela.php │ │ │ ├── Swedish_Finland.php │ │ │ ├── Swedish_Sweden.php │ │ │ ├── Tajik_(Cyrillic)_Tajikistan.php │ │ │ ├── Tamazight_(Latin)_Algeria.php │ │ │ ├── Tatar_Russia.php │ │ │ ├── Turkish_Turkey.php │ │ │ ├── Turkmen_Turkmenistan.php │ │ │ ├── Ukrainian_Ukraine.php │ │ │ ├── Upper_Sorbian_Germany.php │ │ │ ├── Urdu_Islamic_Republic_of_Pakistan.php │ │ │ ├── Uzbek_(Cyrillic)_Uzbekistan.php │ │ │ ├── Uzbek_(Latin)_Uzbekistan.php │ │ │ ├── Vietnamese_Vietnam.php │ │ │ ├── Welsh_United_Kingdom.php │ │ │ ├── Wolof_Senegal.php │ │ │ ├── Yakut_Russia.php │ │ │ ├── Yoruba_Nigeria.php │ │ │ ├── isiXhosa_South_Africa.php │ │ │ └── isiZulu_South_Africa.php │ │ ├── entity_substitutions.php │ │ ├── font │ │ │ ├── ccourier.php │ │ │ ├── ccourierb.php │ │ │ ├── ccourierbi.php │ │ │ ├── ccourieri.php │ │ │ ├── chelvetica.php │ │ │ ├── chelveticab.php │ │ │ ├── chelveticabi.php │ │ │ ├── chelveticai.php │ │ │ ├── csymbol.php │ │ │ ├── ctimes.php │ │ │ ├── ctimesb.php │ │ │ ├── ctimesbi.php │ │ │ ├── ctimesi.php │ │ │ └── czapfdingbats.php │ │ ├── iccprofiles │ │ │ └── sRGB_IEC61966-2-1.icc │ │ ├── lang2fonts.css │ │ ├── linebrdictK.dat │ │ ├── linebrdictL.dat │ │ ├── linebrdictT.dat │ │ ├── mpdf.css │ │ ├── no_image.jpg │ │ ├── out.php │ │ ├── patterns │ │ │ ├── NOTES.txt │ │ │ ├── de.php │ │ │ ├── dictionary.txt │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fi.php │ │ │ ├── fr.php │ │ │ ├── it.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── ru.php │ │ │ └── sv.php │ │ ├── subs_core.php │ │ ├── subs_win-1252.php │ │ └── upperCase.php │ │ ├── phpunit.xml │ │ ├── ruleset.xml │ │ ├── src │ │ ├── Barcode.php │ │ ├── Barcode │ │ │ ├── AbstractBarcode.php │ │ │ ├── BarcodeException.php │ │ │ ├── BarcodeInterface.php │ │ │ ├── Codabar.php │ │ │ ├── Code11.php │ │ │ ├── Code128.php │ │ │ ├── Code39.php │ │ │ ├── Code93.php │ │ │ ├── EanExt.php │ │ │ ├── EanUpc.php │ │ │ ├── I25.php │ │ │ ├── Imb.php │ │ │ ├── Msi.php │ │ │ ├── Postnet.php │ │ │ ├── Rm4Scc.php │ │ │ └── S25.php │ │ ├── Cache.php │ │ ├── Color │ │ │ ├── ColorConverter.php │ │ │ ├── ColorModeConverter.php │ │ │ ├── ColorSpaceRestrictor.php │ │ │ └── NamedColors.php │ │ ├── Config │ │ │ ├── ConfigVariables.php │ │ │ └── FontVariables.php │ │ ├── Conversion │ │ │ ├── DecToAlpha.php │ │ │ ├── DecToCjk.php │ │ │ ├── DecToHebrew.php │ │ │ ├── DecToOther.php │ │ │ └── DecToRoman.php │ │ ├── Css │ │ │ ├── Border.php │ │ │ ├── DefaultCss.php │ │ │ └── TextVars.php │ │ ├── CssManager.php │ │ ├── DirectWrite.php │ │ ├── Exception │ │ │ ├── FontException.php │ │ │ └── InvalidArgumentException.php │ │ ├── File │ │ │ └── StreamWrapperChecker.php │ │ ├── Fonts │ │ │ ├── FontCache.php │ │ │ ├── FontFileFinder.php │ │ │ ├── GlyphOperator.php │ │ │ └── MetricsGenerator.php │ │ ├── Form.php │ │ ├── FpdiTrait.php │ │ ├── Gif │ │ │ ├── ColorTable.php │ │ │ ├── FileHeader.php │ │ │ ├── Gif.php │ │ │ ├── Image.php │ │ │ ├── ImageHeader.php │ │ │ └── Lzw.php │ │ ├── Gradient.php │ │ ├── HTMLParserMode.php │ │ ├── Hyphenator.php │ │ ├── Image │ │ │ ├── Bmp.php │ │ │ ├── ImageProcessor.php │ │ │ ├── ImageTypeGuesser.php │ │ │ ├── Svg.php │ │ │ └── Wmf.php │ │ ├── Language │ │ │ ├── LanguageToFont.php │ │ │ ├── LanguageToFontInterface.php │ │ │ ├── ScriptToLanguage.php │ │ │ └── ScriptToLanguageInterface.php │ │ ├── Log │ │ │ └── Context.php │ │ ├── Mpdf.php │ │ ├── MpdfException.php │ │ ├── MpdfImageException.php │ │ ├── Otl.php │ │ ├── OtlDump.php │ │ ├── Output │ │ │ └── Destination.php │ │ ├── PageFormat.php │ │ ├── Pdf │ │ │ ├── Protection.php │ │ │ └── Protection │ │ │ │ └── UniqidGenerator.php │ │ ├── RemoteContentFetcher.php │ │ ├── ServiceFactory.php │ │ ├── Shaper │ │ │ ├── Indic.php │ │ │ ├── Myanmar.php │ │ │ └── Sea.php │ │ ├── SizeConverter.php │ │ ├── Strict.php │ │ ├── TTFontFile.php │ │ ├── TTFontFileAnalysis.php │ │ ├── TableOfContents.php │ │ ├── Tag.php │ │ ├── Tag │ │ │ ├── A.php │ │ │ ├── Acronym.php │ │ │ ├── Address.php │ │ │ ├── Annotation.php │ │ │ ├── Article.php │ │ │ ├── Aside.php │ │ │ ├── B.php │ │ │ ├── BarCode.php │ │ │ ├── Bdi.php │ │ │ ├── Bdo.php │ │ │ ├── Big.php │ │ │ ├── BlockQuote.php │ │ │ ├── BlockTag.php │ │ │ ├── Bookmark.php │ │ │ ├── Br.php │ │ │ ├── Caption.php │ │ │ ├── Center.php │ │ │ ├── Cite.php │ │ │ ├── Code.php │ │ │ ├── ColumnBreak.php │ │ │ ├── Columns.php │ │ │ ├── Dd.php │ │ │ ├── Del.php │ │ │ ├── Details.php │ │ │ ├── Div.php │ │ │ ├── Dl.php │ │ │ ├── DotTab.php │ │ │ ├── Dt.php │ │ │ ├── Em.php │ │ │ ├── FieldSet.php │ │ │ ├── FigCaption.php │ │ │ ├── Figure.php │ │ │ ├── Font.php │ │ │ ├── Footer.php │ │ │ ├── Form.php │ │ │ ├── FormFeed.php │ │ │ ├── H1.php │ │ │ ├── H2.php │ │ │ ├── H3.php │ │ │ ├── H4.php │ │ │ ├── H5.php │ │ │ ├── H6.php │ │ │ ├── HGroup.php │ │ │ ├── Header.php │ │ │ ├── Hr.php │ │ │ ├── I.php │ │ │ ├── Img.php │ │ │ ├── IndexEntry.php │ │ │ ├── IndexInsert.php │ │ │ ├── InlineTag.php │ │ │ ├── Input.php │ │ │ ├── Ins.php │ │ │ ├── Kbd.php │ │ │ ├── Legend.php │ │ │ ├── Li.php │ │ │ ├── Main.php │ │ │ ├── Mark.php │ │ │ ├── Meter.php │ │ │ ├── Nav.php │ │ │ ├── NewColumn.php │ │ │ ├── NewPage.php │ │ │ ├── Ol.php │ │ │ ├── Option.php │ │ │ ├── P.php │ │ │ ├── PageBreak.php │ │ │ ├── PageFooter.php │ │ │ ├── PageHeader.php │ │ │ ├── Pre.php │ │ │ ├── Progress.php │ │ │ ├── Q.php │ │ │ ├── S.php │ │ │ ├── Samp.php │ │ │ ├── Section.php │ │ │ ├── Select.php │ │ │ ├── SetHtmlPageFooter.php │ │ │ ├── SetHtmlPageHeader.php │ │ │ ├── SetPageFooter.php │ │ │ ├── SetPageHeader.php │ │ │ ├── Small.php │ │ │ ├── Span.php │ │ │ ├── Strike.php │ │ │ ├── Strong.php │ │ │ ├── Sub.php │ │ │ ├── SubstituteTag.php │ │ │ ├── Summary.php │ │ │ ├── Sup.php │ │ │ ├── TBody.php │ │ │ ├── TFoot.php │ │ │ ├── THead.php │ │ │ ├── Table.php │ │ │ ├── Tag.php │ │ │ ├── Td.php │ │ │ ├── TextArea.php │ │ │ ├── TextCircle.php │ │ │ ├── Th.php │ │ │ ├── Time.php │ │ │ ├── Toc.php │ │ │ ├── TocEntry.php │ │ │ ├── TocPageBreak.php │ │ │ ├── Tr.php │ │ │ ├── Tt.php │ │ │ ├── Tta.php │ │ │ ├── Tts.php │ │ │ ├── Ttz.php │ │ │ ├── U.php │ │ │ ├── Ul.php │ │ │ ├── VarTag.php │ │ │ ├── WatermarkImage.php │ │ │ └── WatermarkText.php │ │ ├── Ucdn.php │ │ ├── Utils │ │ │ ├── Arrays.php │ │ │ ├── NumericString.php │ │ │ ├── PdfDate.php │ │ │ └── UtfString.php │ │ ├── Writer │ │ │ ├── BackgroundWriter.php │ │ │ ├── BaseWriter.php │ │ │ ├── BookmarkWriter.php │ │ │ ├── ColorWriter.php │ │ │ ├── FontWriter.php │ │ │ ├── FormWriter.php │ │ │ ├── ImageWriter.php │ │ │ ├── JavaScriptWriter.php │ │ │ ├── MetadataWriter.php │ │ │ ├── ObjectWriter.php │ │ │ ├── OptionalContentWriter.php │ │ │ ├── PageWriter.php │ │ │ └── ResourceWriter.php │ │ └── functions-dev.php │ │ ├── tmp │ │ └── .gitignore │ │ └── ttfonts │ │ ├── AboriginalSansREGULAR.ttf │ │ ├── Abyssinica_SIL.ttf │ │ ├── Aegean.otf │ │ ├── Aegyptus.otf │ │ ├── Akkadian.otf │ │ ├── DBSILBR.ttf │ │ ├── DejaVuSans-Bold.ttf │ │ ├── DejaVuSans-BoldOblique.ttf │ │ ├── DejaVuSans-Oblique.ttf │ │ ├── DejaVuSans.ttf │ │ ├── DejaVuSansCondensed-Bold.ttf │ │ ├── DejaVuSansCondensed-BoldOblique.ttf │ │ ├── DejaVuSansCondensed-Oblique.ttf │ │ ├── DejaVuSansCondensed.ttf │ │ ├── DejaVuSansMono-Bold.ttf │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ ├── DejaVuSansMono-Oblique.ttf │ │ ├── DejaVuSansMono.ttf │ │ ├── DejaVuSerif-Bold.ttf │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ ├── DejaVuSerif-Italic.ttf │ │ ├── DejaVuSerif.ttf │ │ ├── DejaVuSerifCondensed-Bold.ttf │ │ ├── DejaVuSerifCondensed-BoldItalic.ttf │ │ ├── DejaVuSerifCondensed-Italic.ttf │ │ ├── DejaVuSerifCondensed.ttf │ │ ├── DejaVuinfo.txt │ │ ├── Dhyana-Bold.ttf │ │ ├── Dhyana-Regular.ttf │ │ ├── DhyanaOFL.txt │ │ ├── FreeMono.ttf │ │ ├── FreeMonoBold.ttf │ │ ├── FreeMonoBoldOblique.ttf │ │ ├── FreeMonoOblique.ttf │ │ ├── FreeSans.ttf │ │ ├── FreeSansBold.ttf │ │ ├── FreeSansBoldOblique.ttf │ │ ├── FreeSansOblique.ttf │ │ ├── FreeSerif.ttf │ │ ├── FreeSerifBold.ttf │ │ ├── FreeSerifBoldItalic.ttf │ │ ├── FreeSerifItalic.ttf │ │ ├── GNUFreeFontinfo.txt │ │ ├── Garuda-Bold.ttf │ │ ├── Garuda-BoldOblique.ttf │ │ ├── Garuda-Oblique.ttf │ │ ├── Garuda.ttf │ │ ├── Jomolhari-OFL.txt │ │ ├── Jomolhari.ttf │ │ ├── KhmerOFL.txt │ │ ├── KhmerOS.ttf │ │ ├── Lateef font OFL.txt │ │ ├── LateefRegOT.ttf │ │ ├── Lohit-Kannada.ttf │ │ ├── LohitKannadaOFL.txt │ │ ├── Padauk-book.ttf │ │ ├── Pothana2000.ttf │ │ ├── Quivira.otf │ │ ├── Sun-ExtA.ttf │ │ ├── Sun-ExtB.ttf │ │ ├── SundaneseUnicode-1.0.5.ttf │ │ ├── SyrCOMEdessa.otf │ │ ├── SyrCOMEdessa_license.txt │ │ ├── TaameyDavidCLM-LICENSE.txt │ │ ├── TaameyDavidCLM-Medium.ttf │ │ ├── TaiHeritagePro.ttf │ │ ├── Tharlon-Regular.ttf │ │ ├── TharlonOFL.txt │ │ ├── UnBatang_0613.ttf │ │ ├── Uthman.otf │ │ ├── XB Riyaz.ttf │ │ ├── XB RiyazBd.ttf │ │ ├── XB RiyazBdIt.ttf │ │ ├── XB RiyazIt.ttf │ │ ├── XW Zar Font Info.txt │ │ ├── ZawgyiOne.ttf │ │ ├── ayar.ttf │ │ ├── damase_v.2.ttf │ │ ├── kaputaunicode.ttf │ │ ├── lannaalif-v1-03.ttf │ │ ├── ocrb10.ttf │ │ └── ocrbinfo.txt │ ├── myclabs │ ├── deep-copy │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── DeepCopy │ │ │ ├── DeepCopy.php │ │ │ ├── Exception │ │ │ ├── CloneException.php │ │ │ └── PropertyException.php │ │ │ ├── Filter │ │ │ ├── Doctrine │ │ │ │ ├── DoctrineCollectionFilter.php │ │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ │ └── DoctrineProxyFilter.php │ │ │ ├── Filter.php │ │ │ ├── KeepFilter.php │ │ │ ├── ReplaceFilter.php │ │ │ └── SetNullFilter.php │ │ │ ├── Matcher │ │ │ ├── Doctrine │ │ │ │ └── DoctrineProxyMatcher.php │ │ │ ├── Matcher.php │ │ │ ├── PropertyMatcher.php │ │ │ ├── PropertyNameMatcher.php │ │ │ └── PropertyTypeMatcher.php │ │ │ ├── Reflection │ │ │ └── ReflectionHelper.php │ │ │ ├── TypeFilter │ │ │ ├── Date │ │ │ │ └── DateIntervalFilter.php │ │ │ ├── ReplaceFilter.php │ │ │ ├── ShallowCopyFilter.php │ │ │ ├── Spl │ │ │ │ ├── ArrayObjectFilter.php │ │ │ │ ├── SplDoublyLinkedList.php │ │ │ │ └── SplDoublyLinkedListFilter.php │ │ │ └── TypeFilter.php │ │ │ ├── TypeMatcher │ │ │ └── TypeMatcher.php │ │ │ └── deep_copy.php │ └── php-enum │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── psalm.xml │ │ └── src │ │ ├── Enum.php │ │ └── PHPUnit │ │ └── Comparator.php │ ├── paragonie │ └── random_compat │ │ ├── LICENSE │ │ ├── build-phar.sh │ │ ├── composer.json │ │ ├── dist │ │ ├── random_compat.phar.pubkey │ │ └── random_compat.phar.pubkey.asc │ │ ├── lib │ │ └── random.php │ │ ├── other │ │ └── build_phar.php │ │ ├── psalm-autoload.php │ │ └── psalm.xml │ ├── phpdocumentor │ ├── reflection-common │ │ ├── .github │ │ │ ├── dependabot.yml │ │ │ └── workflows │ │ │ │ └── push.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Element.php │ │ │ ├── File.php │ │ │ ├── Fqsen.php │ │ │ ├── Location.php │ │ │ ├── Project.php │ │ │ └── ProjectFactory.php │ ├── reflection-docblock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── DocBlock.php │ │ │ ├── DocBlock │ │ │ ├── Description.php │ │ │ ├── DescriptionFactory.php │ │ │ ├── ExampleFinder.php │ │ │ ├── Serializer.php │ │ │ ├── StandardTagFactory.php │ │ │ ├── Tag.php │ │ │ ├── TagFactory.php │ │ │ └── Tags │ │ │ │ ├── Author.php │ │ │ │ ├── BaseTag.php │ │ │ │ ├── Covers.php │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Example.php │ │ │ │ ├── Factory │ │ │ │ └── StaticMethod.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Formatter │ │ │ │ ├── AlignFormatter.php │ │ │ │ └── PassthroughFormatter.php │ │ │ │ ├── Generic.php │ │ │ │ ├── InvalidTag.php │ │ │ │ ├── Link.php │ │ │ │ ├── Method.php │ │ │ │ ├── Param.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyRead.php │ │ │ │ ├── PropertyWrite.php │ │ │ │ ├── Reference │ │ │ │ ├── Fqsen.php │ │ │ │ ├── Reference.php │ │ │ │ └── Url.php │ │ │ │ ├── Return_.php │ │ │ │ ├── See.php │ │ │ │ ├── Since.php │ │ │ │ ├── Source.php │ │ │ │ ├── TagWithType.php │ │ │ │ ├── Throws.php │ │ │ │ ├── Uses.php │ │ │ │ ├── Var_.php │ │ │ │ └── Version.php │ │ │ ├── DocBlockFactory.php │ │ │ └── DocBlockFactoryInterface.php │ └── type-resolver │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpbench.json │ │ └── src │ │ ├── FqsenResolver.php │ │ ├── Type.php │ │ ├── TypeResolver.php │ │ └── Types │ │ ├── AbstractList.php │ │ ├── AggregatedType.php │ │ ├── Array_.php │ │ ├── Boolean.php │ │ ├── Callable_.php │ │ ├── ClassString.php │ │ ├── Collection.php │ │ ├── Compound.php │ │ ├── Context.php │ │ ├── ContextFactory.php │ │ ├── Expression.php │ │ ├── False_.php │ │ ├── Float_.php │ │ ├── Integer.php │ │ ├── Intersection.php │ │ ├── Iterable_.php │ │ ├── Mixed_.php │ │ ├── Null_.php │ │ ├── Nullable.php │ │ ├── Object_.php │ │ ├── Parent_.php │ │ ├── Resource_.php │ │ ├── Scalar.php │ │ ├── Self_.php │ │ ├── Static_.php │ │ ├── String_.php │ │ ├── This.php │ │ ├── True_.php │ │ └── Void_.php │ ├── phpoffice │ └── phpspreadsheet │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── 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 │ │ ├── Web.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 │ │ ├── AddressHelper.php │ │ ├── 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 │ │ └── Title.php │ │ ├── Collection │ │ ├── Cells.php │ │ ├── CellsFactory.php │ │ └── Memory.php │ │ ├── Comment.php │ │ ├── Document │ │ ├── Properties.php │ │ └── Security.php │ │ ├── DocumentGenerator.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── Helper │ │ ├── Html.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 │ │ └── Xlfn.php │ ├── phpspec │ └── prophecy │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Prophecy │ │ ├── Argument.php │ │ ├── Argument │ │ ├── ArgumentsWildcard.php │ │ └── Token │ │ │ ├── AnyValueToken.php │ │ │ ├── AnyValuesToken.php │ │ │ ├── ApproximateValueToken.php │ │ │ ├── ArrayCountToken.php │ │ │ ├── ArrayEntryToken.php │ │ │ ├── ArrayEveryEntryToken.php │ │ │ ├── CallbackToken.php │ │ │ ├── ExactValueToken.php │ │ │ ├── IdenticalValueToken.php │ │ │ ├── LogicalAndToken.php │ │ │ ├── LogicalNotToken.php │ │ │ ├── ObjectStateToken.php │ │ │ ├── StringContainsToken.php │ │ │ ├── TokenInterface.php │ │ │ └── TypeToken.php │ │ ├── Call │ │ ├── Call.php │ │ └── CallCenter.php │ │ ├── Comparator │ │ ├── ClosureComparator.php │ │ ├── Factory.php │ │ └── ProphecyComparator.php │ │ ├── Doubler │ │ ├── CachedDoubler.php │ │ ├── ClassPatch │ │ │ ├── ClassPatchInterface.php │ │ │ ├── DisableConstructorPatch.php │ │ │ ├── HhvmExceptionPatch.php │ │ │ ├── KeywordPatch.php │ │ │ ├── MagicCallPatch.php │ │ │ ├── ProphecySubjectPatch.php │ │ │ ├── ReflectionClassNewInstancePatch.php │ │ │ ├── SplFileInfoPatch.php │ │ │ ├── ThrowablePatch.php │ │ │ └── TraversablePatch.php │ │ ├── DoubleInterface.php │ │ ├── Doubler.php │ │ ├── Generator │ │ │ ├── ClassCodeGenerator.php │ │ │ ├── ClassCreator.php │ │ │ ├── ClassMirror.php │ │ │ ├── Node │ │ │ │ ├── ArgumentNode.php │ │ │ │ ├── ClassNode.php │ │ │ │ └── MethodNode.php │ │ │ ├── ReflectionInterface.php │ │ │ └── TypeHintReference.php │ │ ├── LazyDouble.php │ │ └── NameGenerator.php │ │ ├── Exception │ │ ├── Call │ │ │ └── UnexpectedCallException.php │ │ ├── Doubler │ │ │ ├── ClassCreatorException.php │ │ │ ├── ClassMirrorException.php │ │ │ ├── ClassNotFoundException.php │ │ │ ├── DoubleException.php │ │ │ ├── DoublerException.php │ │ │ ├── InterfaceNotFoundException.php │ │ │ ├── MethodNotExtendableException.php │ │ │ ├── MethodNotFoundException.php │ │ │ └── ReturnByReferenceException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── Prediction │ │ │ ├── AggregateException.php │ │ │ ├── FailedPredictionException.php │ │ │ ├── NoCallsException.php │ │ │ ├── PredictionException.php │ │ │ ├── UnexpectedCallsCountException.php │ │ │ └── UnexpectedCallsException.php │ │ └── Prophecy │ │ │ ├── MethodProphecyException.php │ │ │ ├── ObjectProphecyException.php │ │ │ └── ProphecyException.php │ │ ├── PhpDocumentor │ │ ├── ClassAndInterfaceTagRetriever.php │ │ ├── ClassTagRetriever.php │ │ ├── LegacyClassTagRetriever.php │ │ └── MethodTagRetrieverInterface.php │ │ ├── Prediction │ │ ├── CallPrediction.php │ │ ├── CallTimesPrediction.php │ │ ├── CallbackPrediction.php │ │ ├── NoCallsPrediction.php │ │ └── PredictionInterface.php │ │ ├── Promise │ │ ├── CallbackPromise.php │ │ ├── PromiseInterface.php │ │ ├── ReturnArgumentPromise.php │ │ ├── ReturnPromise.php │ │ └── ThrowPromise.php │ │ ├── Prophecy │ │ ├── MethodProphecy.php │ │ ├── ObjectProphecy.php │ │ ├── ProphecyInterface.php │ │ ├── ProphecySubjectInterface.php │ │ ├── Revealer.php │ │ └── RevealerInterface.php │ │ ├── Prophet.php │ │ └── Util │ │ ├── ExportUtil.php │ │ └── StringUtil.php │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog-2.2.md │ │ ├── ChangeLog-3.0.md │ │ ├── ChangeLog-3.1.md │ │ ├── ChangeLog-3.2.md │ │ ├── ChangeLog-3.3.md │ │ ├── ChangeLog-4.0.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Driver │ │ │ │ ├── Driver.php │ │ │ │ ├── HHVM.php │ │ │ │ ├── PHPDBG.php │ │ │ │ └── Xdebug.php │ │ │ ├── Exception │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── UnintentionallyCoveredCodeException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ ├── holder.min.js │ │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ │ └── respond.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── PHP.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml │ │ │ │ │ ├── Coverage.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Node.php │ │ │ │ │ ├── Project.php │ │ │ │ │ ├── Report.php │ │ │ │ │ ├── Tests.php │ │ │ │ │ ├── Totals.php │ │ │ │ │ └── Unit.php │ │ │ └── Util.php │ │ └── tests │ │ │ ├── TestCase.php │ │ │ ├── _files │ │ │ ├── BankAccount-clover.xml │ │ │ ├── BankAccount-crap4j.xml │ │ │ ├── BankAccount-text.txt │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── CoverageClassExtendedTest.php │ │ │ ├── CoverageClassTest.php │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ ├── CoverageFunctionTest.php │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ ├── CoverageMethodTest.php │ │ │ ├── CoverageNoneTest.php │ │ │ ├── CoverageNotPrivateTest.php │ │ │ ├── CoverageNotProtectedTest.php │ │ │ ├── CoverageNotPublicTest.php │ │ │ ├── CoverageNothingTest.php │ │ │ ├── CoveragePrivateTest.php │ │ │ ├── CoverageProtectedTest.php │ │ │ ├── CoveragePublicTest.php │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ ├── CoveredClass.php │ │ │ ├── CoveredFunction.php │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ ├── NamespaceCoverageCoversClassTest.php │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ ├── NamespaceCoveredClass.php │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ ├── Report │ │ │ │ ├── HTML │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ │ ├── BankAccount.php.html │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── source_with_class_and_anonymous_function.php.html │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── source_with_ignore.php.html │ │ │ │ └── XML │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ ├── BankAccount.php.xml │ │ │ │ │ └── index.xml │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ ├── index.xml │ │ │ │ │ └── source_with_class_and_anonymous_function.php.xml │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ ├── index.xml │ │ │ │ │ └── source_with_ignore.php.xml │ │ │ ├── class-with-anonymous-function-clover.xml │ │ │ ├── class-with-anonymous-function-crap4j.xml │ │ │ ├── class-with-anonymous-function-text.txt │ │ │ ├── ignored-lines-clover.xml │ │ │ ├── ignored-lines-crap4j.xml │ │ │ ├── ignored-lines-text.txt │ │ │ ├── source_with_class_and_anonymous_function.php │ │ │ ├── source_with_ignore.php │ │ │ ├── source_with_namespace.php │ │ │ ├── source_with_oneline_annotations.php │ │ │ ├── source_without_ignore.php │ │ │ └── source_without_namespace.php │ │ │ ├── bootstrap.php │ │ │ └── tests │ │ │ ├── BuilderTest.php │ │ │ ├── CloverTest.php │ │ │ ├── CodeCoverageTest.php │ │ │ ├── Crap4jTest.php │ │ │ ├── FilterTest.php │ │ │ ├── HTMLTest.php │ │ │ ├── TextTest.php │ │ │ ├── UtilTest.php │ │ │ └── XMLTest.php │ ├── php-file-iterator │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Template.php │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Timer.php │ │ └── tests │ │ │ └── TimerTest.php │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ └── CachingFactory.php │ │ └── tests │ │ │ ├── Token │ │ │ ├── ClassTest.php │ │ │ ├── ClosureTest.php │ │ │ ├── FunctionTest.php │ │ │ ├── IncludeTest.php │ │ │ ├── InterfaceTest.php │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ ├── _fixture │ │ │ ├── classExtendsNamespacedClass.php │ │ │ ├── classInNamespace.php │ │ │ ├── classInScopedNamespace.php │ │ │ ├── classUsesNamespacedFunction.php │ │ │ ├── class_with_method_named_empty.php │ │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ │ ├── class_with_multiple_anonymous_classes_and_functions.php │ │ │ ├── closure.php │ │ │ ├── issue19.php │ │ │ ├── issue30.php │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ ├── php-code-coverage-issue-424.php │ │ │ ├── source.php │ │ │ ├── source2.php │ │ │ ├── source3.php │ │ │ ├── source4.php │ │ │ └── source5.php │ │ │ └── bootstrap.php │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── deprecation.tpl.dist │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_class_method.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_method.tpl.dist │ │ │ │ ├── mocked_method_void.tpl.dist │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ ├── proxied_method.tpl.dist │ │ │ │ ├── proxied_method_void.tpl.dist │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ └── wsdl_method.tpl.dist │ │ │ │ ├── Invocation.php │ │ │ │ ├── Invocation │ │ │ │ ├── Object.php │ │ │ │ └── Static.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Invokable.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── Matcher │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ ├── Invocation.php │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── InvokedRecorder.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── StatelessInvocation.php │ │ │ │ ├── MockBuilder.php │ │ │ │ ├── MockObject.php │ │ │ │ ├── Stub.php │ │ │ │ ├── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── MatcherCollection.php │ │ │ │ ├── Return.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ └── ReturnValueMap.php │ │ │ │ └── Verifiable.php │ │ └── tests │ │ │ ├── GeneratorTest.php │ │ │ ├── MockBuilderTest.php │ │ │ ├── MockObject │ │ │ ├── Builder │ │ │ │ └── InvocationMockerTest.php │ │ │ ├── Generator │ │ │ │ ├── 232.phpt │ │ │ │ ├── abstract_class.phpt │ │ │ │ ├── class.phpt │ │ │ │ ├── class_call_parent_clone.phpt │ │ │ │ ├── class_call_parent_constructor.phpt │ │ │ │ ├── class_dont_call_parent_clone.phpt │ │ │ │ ├── class_dont_call_parent_constructor.phpt │ │ │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ ├── class_partial.phpt │ │ │ │ ├── class_with_method_named_method.phpt │ │ │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── namespaced_class.phpt │ │ │ │ ├── namespaced_class_call_parent_clone.phpt │ │ │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_partial.phpt │ │ │ │ ├── namespaced_interface.phpt │ │ │ │ ├── nonexistent_class.phpt │ │ │ │ ├── nonexistent_class_with_namespace.phpt │ │ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ │ │ ├── nullable_types.phpt │ │ │ │ ├── proxy.phpt │ │ │ │ ├── return_type_declarations_nullable.phpt │ │ │ │ ├── return_type_declarations_object_method.phpt │ │ │ │ ├── return_type_declarations_self.phpt │ │ │ │ ├── return_type_declarations_static_method.phpt │ │ │ │ ├── return_type_declarations_void.phpt │ │ │ │ ├── scalar_type_declarations.phpt │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── Invocation │ │ │ │ ├── ObjectTest.php │ │ │ │ └── StaticTest.php │ │ │ ├── Matcher │ │ │ │ └── ConsecutiveParametersTest.php │ │ │ └── class_with_deprecated_method.phpt │ │ │ ├── MockObjectTest.php │ │ │ ├── ProxyObjectTest.php │ │ │ ├── _fixture │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── AbstractTrait.php │ │ │ ├── AnInterface.php │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ ├── AnotherInterface.php │ │ │ ├── Bar.php │ │ │ ├── ClassThatImplementsSerializable.php │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── Foo.php │ │ │ ├── FunctionCallback.php │ │ │ ├── GoogleSearch.wsdl │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── MethodCallback.php │ │ │ ├── MethodCallbackByReference.php │ │ │ ├── MockTestInterface.php │ │ │ ├── Mockable.php │ │ │ ├── PartialMockTestClass.php │ │ │ ├── SingletonClass.php │ │ │ ├── SomeClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ ├── StringableClass.php │ │ │ └── TraversableMockTestInterface.php │ │ │ └── bootstrap.php │ └── phpunit │ │ ├── .gitattributes │ │ ├── .github │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .stickler.yml │ │ ├── .travis.yml │ │ ├── ChangeLog-5.7.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit │ │ ├── phpunit.xml │ │ ├── phpunit.xsd │ │ ├── src │ │ ├── Exception.php │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── ForwardCompatibility │ │ │ ├── Assert.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── BaseTestListener.php │ │ │ ├── Test.php │ │ │ ├── TestCase.php │ │ │ ├── TestListener.php │ │ │ └── TestSuite.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ └── Functions.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── BaseTestListener.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── Constraint.php │ │ │ ├── Constraint │ │ │ │ ├── And.php │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── ArraySubset.php │ │ │ │ ├── Attribute.php │ │ │ │ ├── Callback.php │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ ├── Composite.php │ │ │ │ ├── Count.php │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessage.php │ │ │ │ ├── ExceptionMessageRegExp.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsAnything.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsFalse.php │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsIdentical.php │ │ │ │ ├── IsInfinite.php │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsJson.php │ │ │ │ ├── IsNan.php │ │ │ │ ├── IsNull.php │ │ │ │ ├── IsReadable.php │ │ │ │ ├── IsTrue.php │ │ │ │ ├── IsType.php │ │ │ │ ├── IsWritable.php │ │ │ │ ├── JsonMatches.php │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProvider.php │ │ │ │ ├── LessThan.php │ │ │ │ ├── Not.php │ │ │ │ ├── ObjectHasAttribute.php │ │ │ │ ├── Or.php │ │ │ │ ├── PCREMatch.php │ │ │ │ ├── SameSize.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringMatches.php │ │ │ │ ├── StringStartsWith.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsOnly.php │ │ │ │ └── Xor.php │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ ├── Error.php │ │ │ ├── Error │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Notice.php │ │ │ │ └── Warning.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionWrapper.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── IncompleteTest.php │ │ │ ├── IncompleteTestCase.php │ │ │ ├── IncompleteTestError.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── MissingCoversAnnotationException.php │ │ │ ├── OutputError.php │ │ │ ├── RiskyTest.php │ │ │ ├── RiskyTestError.php │ │ │ ├── SelfDescribing.php │ │ │ ├── SkippedTest.php │ │ │ ├── SkippedTestCase.php │ │ │ ├── SkippedTestError.php │ │ │ ├── SkippedTestSuiteError.php │ │ │ ├── SyntheticError.php │ │ │ ├── Test.php │ │ │ ├── TestCase.php │ │ │ ├── TestFailure.php │ │ │ ├── TestListener.php │ │ │ ├── TestResult.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuite │ │ │ │ └── DataProvider.php │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ ├── Warning.php │ │ │ └── WarningTestCase.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── Exception.php │ │ │ ├── Filter │ │ │ │ ├── Factory.php │ │ │ │ ├── Group.php │ │ │ │ ├── Group │ │ │ │ │ ├── Exclude.php │ │ │ │ │ └── Include.php │ │ │ │ └── Test.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Blacklist.php │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationGenerator.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Fileloader.php │ │ │ ├── Filesystem.php │ │ │ ├── Filter.php │ │ │ ├── Getopt.php │ │ │ ├── GlobalState.php │ │ │ ├── InvalidArgumentHelper.php │ │ │ ├── Log │ │ │ ├── JSON.php │ │ │ ├── JUnit.php │ │ │ ├── TAP.php │ │ │ └── TeamCity.php │ │ │ ├── PHP.php │ │ │ ├── PHP │ │ │ ├── Default.php │ │ │ ├── Template │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── Windows.php │ │ │ └── eval-stdin.php │ │ │ ├── Printer.php │ │ │ ├── Regex.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ ├── Text.php │ │ │ │ └── XML.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ └── tests │ │ ├── Extensions │ │ ├── PhptTestCaseTest.php │ │ └── RepeatedTestTest.php │ │ ├── Fail │ │ └── fail.phpt │ │ ├── Framework │ │ ├── AssertTest.php │ │ ├── BaseTestListenerTest.php │ │ ├── Constraint │ │ │ ├── ArraySubsetTest.php │ │ │ ├── CountTest.php │ │ │ ├── ExceptionMessageRegExpTest.php │ │ │ ├── ExceptionMessageTest.php │ │ │ ├── IsJsonTest.php │ │ │ ├── JsonMatches │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ └── JsonMatchesTest.php │ │ ├── ConstraintTest.php │ │ ├── SuiteTest.php │ │ ├── TestCaseTest.php │ │ ├── TestFailureTest.php │ │ ├── TestImplementorTest.php │ │ └── TestListenerTest.php │ │ ├── Regression │ │ ├── GitHub │ │ │ ├── 74 │ │ │ │ ├── Issue74Test.php │ │ │ │ └── NewException.php │ │ │ ├── 244 │ │ │ │ └── Issue244Test.php │ │ │ ├── 322 │ │ │ │ ├── Issue322Test.php │ │ │ │ └── phpunit322.xml │ │ │ ├── 433 │ │ │ │ └── Issue433Test.php │ │ │ ├── 445 │ │ │ │ └── Issue445Test.php │ │ │ ├── 498 │ │ │ │ └── Issue498Test.php │ │ │ ├── 503 │ │ │ │ └── Issue503Test.php │ │ │ ├── 581 │ │ │ │ └── Issue581Test.php │ │ │ ├── 765 │ │ │ │ └── Issue765Test.php │ │ │ ├── 797 │ │ │ │ ├── Issue797Test.php │ │ │ │ └── bootstrap797.php │ │ │ ├── 873 │ │ │ │ └── Issue873Test.php │ │ │ ├── 1149 │ │ │ │ └── Issue1149Test.php │ │ │ ├── 1216 │ │ │ │ ├── Issue1216Test.php │ │ │ │ ├── bootstrap1216.php │ │ │ │ └── phpunit1216.xml │ │ │ ├── 1265 │ │ │ │ ├── Issue1265Test.php │ │ │ │ └── phpunit1265.xml │ │ │ ├── 1330 │ │ │ │ ├── Issue1330Test.php │ │ │ │ └── phpunit1330.xml │ │ │ ├── 1335 │ │ │ │ ├── Issue1335Test.php │ │ │ │ └── bootstrap1335.php │ │ │ ├── 1337 │ │ │ │ └── Issue1337Test.php │ │ │ ├── 1348 │ │ │ │ └── Issue1348Test.php │ │ │ ├── 1351 │ │ │ │ ├── ChildProcessClass1351.php │ │ │ │ └── Issue1351Test.php │ │ │ ├── 1374 │ │ │ │ └── Issue1374Test.php │ │ │ ├── 1437 │ │ │ │ └── Issue1437Test.php │ │ │ ├── 1468 │ │ │ │ └── Issue1468Test.php │ │ │ ├── 1471 │ │ │ │ └── Issue1471Test.php │ │ │ ├── 1472 │ │ │ │ └── Issue1472Test.php │ │ │ ├── 1570 │ │ │ │ └── Issue1570Test.php │ │ │ ├── 2137 │ │ │ │ └── Issue2137Test.php │ │ │ ├── 2145 │ │ │ │ └── Issue2145Test.php │ │ │ ├── 2158 │ │ │ │ ├── Issue2158Test.php │ │ │ │ └── constant.inc │ │ │ ├── 2299 │ │ │ │ └── Issue2299Test.php │ │ │ ├── 2366 │ │ │ │ └── Issue2366Test.php │ │ │ ├── 2380 │ │ │ │ └── Issue2380Test.php │ │ │ ├── 2382 │ │ │ │ └── Issue2382Test.php │ │ │ ├── 2435 │ │ │ │ └── Issue2435Test.php │ │ │ ├── 2731 │ │ │ │ └── Issue2731Test.php │ │ │ ├── 2758 │ │ │ │ ├── Issue2758Test.php │ │ │ │ ├── Issue2758TestListener.php │ │ │ │ └── phpunit.xml │ │ │ ├── 2811 │ │ │ │ └── Issue2811Test.php │ │ │ ├── 2972 │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ ├── 1149.phpt │ │ │ ├── 1216.phpt │ │ │ ├── 1265.phpt │ │ │ ├── 1330.phpt │ │ │ ├── 1335.phpt │ │ │ ├── 1337.phpt │ │ │ ├── 1348.phpt │ │ │ ├── 1351.phpt │ │ │ ├── 1374.phpt │ │ │ ├── 1437.phpt │ │ │ ├── 1468.phpt │ │ │ ├── 1471.phpt │ │ │ ├── 1472.phpt │ │ │ ├── 1570.phpt │ │ │ ├── 2137-filter.phpt │ │ │ ├── 2137-no_filter.phpt │ │ │ ├── 2145.phpt │ │ │ ├── 2158.phpt │ │ │ ├── 2366.phpt │ │ │ ├── 2380.phpt │ │ │ ├── 2382.phpt │ │ │ ├── 2435.phpt │ │ │ ├── 244.phpt │ │ │ ├── 2731.phpt │ │ │ ├── 2758.phpt │ │ │ ├── 2811.phpt │ │ │ ├── 2972.phpt │ │ │ ├── 322.phpt │ │ │ ├── 433.phpt │ │ │ ├── 445.phpt │ │ │ ├── 498.phpt │ │ │ ├── 503.phpt │ │ │ ├── 581.phpt │ │ │ ├── 74.phpt │ │ │ ├── 765.phpt │ │ │ ├── 797.phpt │ │ │ ├── 863.phpt │ │ │ ├── 873-php5.phpt │ │ │ └── 873-php7.phpt │ │ └── Trac │ │ │ ├── 523 │ │ │ └── Issue523Test.php │ │ │ ├── 578 │ │ │ └── Issue578Test.php │ │ │ ├── 684 │ │ │ └── Issue684Test.php │ │ │ ├── 783 │ │ │ ├── ChildSuite.php │ │ │ ├── OneTest.php │ │ │ ├── ParentSuite.php │ │ │ └── TwoTest.php │ │ │ ├── 1021 │ │ │ └── Issue1021Test.php │ │ │ ├── 1021.phpt │ │ │ ├── 523.phpt │ │ │ ├── 578.phpt │ │ │ ├── 684.phpt │ │ │ └── 783.phpt │ │ ├── Runner │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ ├── _files │ │ │ ├── expect_external.txt │ │ │ ├── phpt-env.expected.txt │ │ │ └── phpt_external.php │ │ ├── abstract-test-class.phpt │ │ ├── assertion.phpt │ │ ├── code-coverage-ignore.phpt │ │ ├── colors-always.phpt │ │ ├── concrete-test-class.phpt │ │ ├── custom-printer-debug.phpt │ │ ├── custom-printer-verbose.phpt │ │ ├── dataprovider-debug.phpt │ │ ├── dataprovider-issue-2833.phpt │ │ ├── dataprovider-issue-2859.phpt │ │ ├── dataprovider-issue-2922.phpt │ │ ├── dataprovider-log-xml-isolation.phpt │ │ ├── dataprovider-log-xml.phpt │ │ ├── dataprovider-testdox.phpt │ │ ├── debug.phpt │ │ ├── default-isolation.phpt │ │ ├── default.phpt │ │ ├── dependencies-clone.phpt │ │ ├── dependencies-isolation.phpt │ │ ├── dependencies.phpt │ │ ├── dependencies2-isolation.phpt │ │ ├── dependencies2.phpt │ │ ├── dependencies3-isolation.phpt │ │ ├── dependencies3.phpt │ │ ├── disable-code-coverage-ignore.phpt │ │ ├── empty-testcase.phpt │ │ ├── exception-stack.phpt │ │ ├── exclude-group-isolation.phpt │ │ ├── exclude-group.phpt │ │ ├── failure-isolation.phpt │ │ ├── failure-reverse-list.phpt │ │ ├── failure.phpt │ │ ├── fatal-isolation.phpt │ │ ├── filter-class-isolation.phpt │ │ ├── filter-class.phpt │ │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ │ ├── filter-dataprovider-by-classname-and-range.phpt │ │ ├── filter-dataprovider-by-number-isolation.phpt │ │ ├── filter-dataprovider-by-number.phpt │ │ ├── filter-dataprovider-by-only-range-isolation.phpt │ │ ├── filter-dataprovider-by-only-range.phpt │ │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ │ ├── filter-dataprovider-by-only-regexp.phpt │ │ ├── filter-dataprovider-by-only-string-isolation.phpt │ │ ├── filter-dataprovider-by-only-string.phpt │ │ ├── filter-dataprovider-by-range-isolation.phpt │ │ ├── filter-dataprovider-by-range.phpt │ │ ├── filter-dataprovider-by-regexp-isolation.phpt │ │ ├── filter-dataprovider-by-regexp.phpt │ │ ├── filter-dataprovider-by-string-isolation.phpt │ │ ├── filter-dataprovider-by-string.phpt │ │ ├── filter-method-case-insensitive.phpt │ │ ├── filter-method-case-sensitive-no-result.phpt │ │ ├── filter-method-isolation.phpt │ │ ├── filter-method.phpt │ │ ├── filter-no-results.phpt │ │ ├── forward-compatibility.phpt │ │ ├── group-isolation.phpt │ │ ├── group.phpt │ │ ├── help.phpt │ │ ├── help2.phpt │ │ ├── ini-isolation.phpt │ │ ├── list-groups.phpt │ │ ├── list-suites.phpt │ │ ├── log-json-post-66021.phpt │ │ ├── log-junit.phpt │ │ ├── log-tap.phpt │ │ ├── log-teamcity.phpt │ │ ├── mycommand.phpt │ │ ├── options-after-arguments.phpt │ │ ├── output-isolation.phpt │ │ ├── phar-extension-suppressed.phpt │ │ ├── phar-extension.phpt │ │ ├── phpt-args.phpt │ │ ├── phpt-env.phpt │ │ ├── phpt-external.phpt │ │ ├── phpt-stderr.phpt │ │ ├── phpt-stdin.phpt │ │ ├── phpt-xfail.phpt │ │ ├── repeat.phpt │ │ ├── report-useless-tests-incomplete.phpt │ │ ├── report-useless-tests-isolation.phpt │ │ ├── report-useless-tests.phpt │ │ ├── stop-on-warning-via-cli.phpt │ │ ├── stop-on-warning-via-config.phpt │ │ ├── tap.phpt │ │ ├── teamcity-inner-exceptions.phpt │ │ ├── teamcity.phpt │ │ ├── test-suffix-multiple.phpt │ │ ├── test-suffix-single.phpt │ │ ├── testdox-exclude-group.phpt │ │ ├── testdox-group.phpt │ │ ├── testdox-html.phpt │ │ ├── testdox-text.phpt │ │ ├── testdox-xml.phpt │ │ └── testdox.phpt │ │ ├── Util │ │ ├── ConfigurationTest.php │ │ ├── GetoptTest.php │ │ ├── GlobalStateTest.php │ │ ├── PHPTest.php │ │ ├── RegexTest.php │ │ ├── TestDox │ │ │ └── NamePrettifierTest.php │ │ ├── TestTest.php │ │ └── XMLTest.php │ │ ├── _files │ │ ├── AbstractTest.php │ │ ├── ArrayAccessible.php │ │ ├── AssertionExample.php │ │ ├── AssertionExampleTest.php │ │ ├── Author.php │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── BankAccountTest.test.php │ │ ├── BankAccountTest2.php │ │ ├── BaseTestListenerSample.php │ │ ├── BeforeAndAfterTest.php │ │ ├── BeforeClassAndAfterClassTest.php │ │ ├── BeforeClassWithOnlyDataProviderTest.php │ │ ├── Book.php │ │ ├── Calculator.php │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ ├── ClassWithNonPublicAttributes.php │ │ ├── ClassWithScalarTypeDeclarations.php │ │ ├── ClassWithToString.php │ │ ├── ClonedDependencyTest.php │ │ ├── ConcreteTest.my.php │ │ ├── ConcreteTest.php │ │ ├── CoverageClassExtendedTest.php │ │ ├── CoverageClassTest.php │ │ ├── CoverageFunctionParenthesesTest.php │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ ├── CoverageFunctionTest.php │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ ├── CoverageMethodParenthesesTest.php │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ ├── CoverageMethodTest.php │ │ ├── CoverageNamespacedFunctionTest.php │ │ ├── CoverageNoneTest.php │ │ ├── CoverageNotPrivateTest.php │ │ ├── CoverageNotProtectedTest.php │ │ ├── CoverageNotPublicTest.php │ │ ├── CoverageNothingTest.php │ │ ├── CoveragePrivateTest.php │ │ ├── CoverageProtectedTest.php │ │ ├── CoveragePublicTest.php │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ ├── CoveredClass.php │ │ ├── CoveredFunction.php │ │ ├── CustomPrinter.php │ │ ├── DataProviderDebugTest.php │ │ ├── DataProviderDependencyTest.php │ │ ├── DataProviderFilterTest.php │ │ ├── DataProviderIncompleteTest.php │ │ ├── DataProviderIssue2833 │ │ │ ├── FirstTest.php │ │ │ └── SecondTest.php │ │ ├── DataProviderIssue2859 │ │ │ ├── phpunit.xml │ │ │ └── tests │ │ │ │ └── another │ │ │ │ └── TestWithDataProviderTest.php │ │ ├── DataProviderIssue2922 │ │ │ ├── FirstTest.php │ │ │ └── SecondTest.php │ │ ├── DataProviderSkippedTest.php │ │ ├── DataProviderTest.php │ │ ├── DataProviderTestDoxTest.php │ │ ├── DependencyFailureTest.php │ │ ├── DependencySuccessTest.php │ │ ├── DependencyTestSuite.php │ │ ├── DoubleTestCase.php │ │ ├── DummyException.php │ │ ├── EmptyTestCaseTest.php │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ ├── ExceptionInSetUpTest.php │ │ ├── ExceptionInTearDownTest.php │ │ ├── ExceptionInTest.php │ │ ├── ExceptionNamespaceTest.php │ │ ├── ExceptionStackTest.php │ │ ├── ExceptionTest.php │ │ ├── Failure.php │ │ ├── FailureTest.php │ │ ├── FatalTest.php │ │ ├── IgnoreCodeCoverageClass.php │ │ ├── IgnoreCodeCoverageClassTest.php │ │ ├── IncompleteTest.php │ │ ├── Inheritance │ │ │ ├── InheritanceA.php │ │ │ └── InheritanceB.php │ │ ├── InheritedTestCase.php │ │ ├── IniTest.php │ │ ├── IsolationTest.php │ │ ├── JsonData │ │ │ ├── arrayObject.json │ │ │ └── simpleObject.json │ │ ├── MockRunner.php │ │ ├── Mockable.php │ │ ├── MultiDependencyTest.php │ │ ├── MultipleDataProviderTest.php │ │ ├── MyCommand.php │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ ├── NamespaceCoverageClassTest.php │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ ├── NamespaceCoverageCoversClassTest.php │ │ ├── NamespaceCoverageMethodTest.php │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ ├── NamespaceCoverageNotPublicTest.php │ │ ├── NamespaceCoveragePrivateTest.php │ │ ├── NamespaceCoverageProtectedTest.php │ │ ├── NamespaceCoveragePublicTest.php │ │ ├── NamespaceCoveredClass.php │ │ ├── NamespaceCoveredFunction.php │ │ ├── NoArgTestCaseTest.php │ │ ├── NoTestCaseClass.php │ │ ├── NoTestCases.php │ │ ├── NonStatic.php │ │ ├── NotExistingCoveredElementTest.php │ │ ├── NotPublicTestCase.php │ │ ├── NotVoidTestCase.php │ │ ├── NothingTest.php │ │ ├── OneTestCase.php │ │ ├── OutputTestCase.php │ │ ├── OverrideTestCase.php │ │ ├── RequirementsClassBeforeClassHookTest.php │ │ ├── RequirementsClassDocBlockTest.php │ │ ├── RequirementsTest.php │ │ ├── SampleArrayAccess.php │ │ ├── SampleClass.php │ │ ├── Singleton.php │ │ ├── StackTest.php │ │ ├── StatusTest.php │ │ ├── StopOnWarningTestSuite.php │ │ ├── StopsOnWarningTest.php │ │ ├── Struct.php │ │ ├── Success.php │ │ ├── TemplateMethodsTest.php │ │ ├── TestAutoreferenced.php │ │ ├── TestDoxGroupTest.php │ │ ├── TestGeneratorMaker.php │ │ ├── TestIncomplete.php │ │ ├── TestIterator.php │ │ ├── TestIterator2.php │ │ ├── TestSkipped.php │ │ ├── TestTestError.php │ │ ├── TestWithTest.php │ │ ├── ThrowExceptionTestCase.php │ │ ├── ThrowNoExceptionTestCase.php │ │ ├── WasRun.php │ │ ├── bar.xml │ │ ├── configuration.colors.empty.xml │ │ ├── configuration.colors.false.xml │ │ ├── configuration.colors.invalid.xml │ │ ├── configuration.colors.true.xml │ │ ├── configuration.custom-printer.xml │ │ ├── configuration.suites.xml │ │ ├── configuration.xml │ │ ├── configuration_empty.xml │ │ ├── configuration_stop_on_warning.xml │ │ ├── configuration_xinclude.xml │ │ ├── expectedFileFormat.txt │ │ ├── foo.xml │ │ ├── phpt-for-coverage.phpt │ │ ├── phpt-xfail.phpt │ │ ├── phpunit-example-extension │ │ │ ├── phpunit.xml │ │ │ ├── tests │ │ │ │ └── OneTest.php │ │ │ └── tools │ │ │ │ └── phpunit.d │ │ │ │ └── phpunit-example-extension-1.0.0.phar │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ ├── structureExpected.xml │ │ ├── structureIgnoreTextNodes.xml │ │ ├── structureIsSameButDataIsNot.xml │ │ ├── structureWrongNumberOfAttributes.xml │ │ └── structureWrongNumberOfNodes.xml │ │ └── bootstrap.php │ ├── psr │ ├── http-client │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ ├── http-factory │ │ ├── .gitignore │ │ ├── .pullapprove.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ ├── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ ├── log │ │ ├── LICENSE │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test │ │ │ │ ├── DummyTest.php │ │ │ │ ├── LoggerInterfaceTest.php │ │ │ │ └── TestLogger.php │ │ ├── README.md │ │ └── composer.json │ └── simple-cache │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php │ ├── sebastian │ ├── code-unit-reverse-lookup │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Wizard.php │ │ └── tests │ │ │ └── WizardTest.php │ ├── comparator │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── ArrayComparator.php │ │ │ ├── Comparator.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── DOMNodeComparator.php │ │ │ ├── DateTimeComparator.php │ │ │ ├── DoubleComparator.php │ │ │ ├── ExceptionComparator.php │ │ │ ├── Factory.php │ │ │ ├── MockObjectComparator.php │ │ │ ├── NumericComparator.php │ │ │ ├── ObjectComparator.php │ │ │ ├── ResourceComparator.php │ │ │ ├── ScalarComparator.php │ │ │ ├── SplObjectStorageComparator.php │ │ │ └── TypeComparator.php │ │ └── tests │ │ │ ├── ArrayComparatorTest.php │ │ │ ├── DOMNodeComparatorTest.php │ │ │ ├── DateTimeComparatorTest.php │ │ │ ├── DoubleComparatorTest.php │ │ │ ├── ExceptionComparatorTest.php │ │ │ ├── FactoryTest.php │ │ │ ├── MockObjectComparatorTest.php │ │ │ ├── NumericComparatorTest.php │ │ │ ├── ObjectComparatorTest.php │ │ │ ├── ResourceComparatorTest.php │ │ │ ├── ScalarComparatorTest.php │ │ │ ├── SplObjectStorageComparatorTest.php │ │ │ ├── TypeComparatorTest.php │ │ │ ├── _files │ │ │ ├── Author.php │ │ │ ├── Book.php │ │ │ ├── ClassWithToString.php │ │ │ ├── SampleClass.php │ │ │ ├── Struct.php │ │ │ ├── TestClass.php │ │ │ └── TestClassComparator.php │ │ │ ├── autoload.php │ │ │ └── bootstrap.php │ ├── diff │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Chunk.php │ │ │ ├── Diff.php │ │ │ ├── Differ.php │ │ │ ├── LCS │ │ │ │ ├── LongestCommonSubsequence.php │ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ │ ├── Line.php │ │ │ └── Parser.php │ │ └── tests │ │ │ ├── ChunkTest.php │ │ │ ├── DiffTest.php │ │ │ ├── DifferTest.php │ │ │ ├── LCS │ │ │ ├── LongestCommonSubsequenceTest.php │ │ │ ├── MemoryEfficientImplementationTest.php │ │ │ └── TimeEfficientImplementationTest.php │ │ │ ├── LineTest.php │ │ │ ├── ParserTest.php │ │ │ └── fixtures │ │ │ ├── patch.txt │ │ │ └── patch2.txt │ ├── environment │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Console.php │ │ │ └── Runtime.php │ │ └── tests │ │ │ ├── ConsoleTest.php │ │ │ └── RuntimeTest.php │ ├── exporter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ └── Exporter.php │ │ └── tests │ │ │ └── ExporterTest.php │ ├── global-state │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── Blacklist.php │ │ │ ├── CodeExporter.php │ │ │ ├── Exception.php │ │ │ ├── Restorer.php │ │ │ ├── RuntimeException.php │ │ │ └── Snapshot.php │ │ └── tests │ │ │ ├── BlacklistTest.php │ │ │ ├── SnapshotTest.php │ │ │ └── _fixture │ │ │ ├── BlacklistedChildClass.php │ │ │ ├── BlacklistedClass.php │ │ │ ├── BlacklistedImplementor.php │ │ │ ├── BlacklistedInterface.php │ │ │ ├── SnapshotClass.php │ │ │ ├── SnapshotDomDocument.php │ │ │ ├── SnapshotFunctions.php │ │ │ └── SnapshotTrait.php │ ├── object-enumerator │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Enumerator.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── tests │ │ │ ├── EnumeratorTest.php │ │ │ └── Fixtures │ │ │ └── ExceptionThrower.php │ ├── recursion-context │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── tests │ │ │ └── ContextTest.php │ ├── resource-operations │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── generate.php │ │ ├── composer.json │ │ └── src │ │ │ └── ResourceOperations.php │ └── version │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Version.php │ ├── setasign │ └── fpdi │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ ├── FpdfTpl.php │ │ ├── FpdfTplTrait.php │ │ ├── Fpdi.php │ │ ├── FpdiException.php │ │ ├── FpdiTrait.php │ │ ├── PdfParser │ │ ├── CrossReference │ │ │ ├── AbstractReader.php │ │ │ ├── CrossReference.php │ │ │ ├── CrossReferenceException.php │ │ │ ├── FixedReader.php │ │ │ ├── LineReader.php │ │ │ └── ReaderInterface.php │ │ ├── Filter │ │ │ ├── Ascii85.php │ │ │ ├── Ascii85Exception.php │ │ │ ├── AsciiHex.php │ │ │ ├── FilterException.php │ │ │ ├── FilterInterface.php │ │ │ ├── Flate.php │ │ │ ├── FlateException.php │ │ │ ├── Lzw.php │ │ │ └── LzwException.php │ │ ├── PdfParser.php │ │ ├── PdfParserException.php │ │ ├── StreamReader.php │ │ ├── Tokenizer.php │ │ └── Type │ │ │ ├── PdfArray.php │ │ │ ├── PdfBoolean.php │ │ │ ├── PdfDictionary.php │ │ │ ├── PdfHexString.php │ │ │ ├── PdfIndirectObject.php │ │ │ ├── PdfIndirectObjectReference.php │ │ │ ├── PdfName.php │ │ │ ├── PdfNull.php │ │ │ ├── PdfNumeric.php │ │ │ ├── PdfStream.php │ │ │ ├── PdfString.php │ │ │ ├── PdfToken.php │ │ │ ├── PdfType.php │ │ │ └── PdfTypeException.php │ │ ├── PdfReader │ │ ├── DataStructure │ │ │ └── Rectangle.php │ │ ├── Page.php │ │ ├── PageBoundaries.php │ │ ├── PdfReader.php │ │ └── PdfReaderException.php │ │ ├── Tcpdf │ │ └── Fpdi.php │ │ ├── TcpdfFpdi.php │ │ ├── Tfpdf │ │ ├── FpdfTpl.php │ │ └── Fpdi.php │ │ └── autoload.php │ ├── symfony │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ └── composer.json │ └── yaml │ │ ├── CHANGELOG.md │ │ ├── Command │ │ └── LintCommand.php │ │ ├── Dumper.php │ │ ├── Escaper.php │ │ ├── Exception │ │ ├── DumpException.php │ │ ├── ExceptionInterface.php │ │ ├── ParseException.php │ │ └── RuntimeException.php │ │ ├── Inline.php │ │ ├── LICENSE │ │ ├── Parser.php │ │ ├── README.md │ │ ├── Tag │ │ └── TaggedValue.php │ │ ├── Unescaper.php │ │ ├── Yaml.php │ │ └── composer.json │ └── webmozart │ └── assert │ ├── .editorconfig │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── psalm.xml │ └── src │ ├── Assert.php │ └── Mixin.php └── images-demo ├── Screenshot_2020-09-12 Absensi Online.png ├── Screenshot_2020-09-12 Dashboard Absensi.png ├── Screenshot_2020-09-12 Data Kehadiran.png ├── Screenshot_2020-09-12 Data Pegawai.png ├── Screenshot_2020-09-12 My Profile.png ├── Screenshot_2020-09-12 Setting Aplikasi.png ├── Screenshot_2020-09-12 Setting(1).png └── Screenshot_2021-02-03 Login Absensi.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /127_0_0_1 absendigital sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/127_0_0_1 absendigital sql.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/README.md -------------------------------------------------------------------------------- /absendigital/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/.editorconfig -------------------------------------------------------------------------------- /absendigital/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/.gitignore -------------------------------------------------------------------------------- /absendigital/application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/.htaccess -------------------------------------------------------------------------------- /absendigital/application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/cache/index.html -------------------------------------------------------------------------------- /absendigital/application/config/aplikasi_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/aplikasi_config.php -------------------------------------------------------------------------------- /absendigital/application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/autoload.php -------------------------------------------------------------------------------- /absendigital/application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/config.php -------------------------------------------------------------------------------- /absendigital/application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/constants.php -------------------------------------------------------------------------------- /absendigital/application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/database.php -------------------------------------------------------------------------------- /absendigital/application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/doctypes.php -------------------------------------------------------------------------------- /absendigital/application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/foreign_chars.php -------------------------------------------------------------------------------- /absendigital/application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/hooks.php -------------------------------------------------------------------------------- /absendigital/application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/index.html -------------------------------------------------------------------------------- /absendigital/application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/memcached.php -------------------------------------------------------------------------------- /absendigital/application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/migration.php -------------------------------------------------------------------------------- /absendigital/application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/mimes.php -------------------------------------------------------------------------------- /absendigital/application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/profiler.php -------------------------------------------------------------------------------- /absendigital/application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/routes.php -------------------------------------------------------------------------------- /absendigital/application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/smileys.php -------------------------------------------------------------------------------- /absendigital/application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/config/user_agents.php -------------------------------------------------------------------------------- /absendigital/application/controllers/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/controllers/Admin.php -------------------------------------------------------------------------------- /absendigital/application/controllers/Ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/controllers/Ajax.php -------------------------------------------------------------------------------- /absendigital/application/controllers/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/controllers/Auth.php -------------------------------------------------------------------------------- /absendigital/application/controllers/Docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/controllers/Docs.php -------------------------------------------------------------------------------- /absendigital/application/controllers/Err.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/controllers/Err.php -------------------------------------------------------------------------------- /absendigital/application/controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/controllers/Home.php -------------------------------------------------------------------------------- /absendigital/application/controllers/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/controllers/User.php -------------------------------------------------------------------------------- /absendigital/application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/controllers/index.html -------------------------------------------------------------------------------- /absendigital/application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/core/index.html -------------------------------------------------------------------------------- /absendigital/application/helpers/absensi_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/helpers/absensi_helper.php -------------------------------------------------------------------------------- /absendigital/application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/helpers/index.html -------------------------------------------------------------------------------- /absendigital/application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/hooks/index.html -------------------------------------------------------------------------------- /absendigital/application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/index.html -------------------------------------------------------------------------------- /absendigital/application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/language/english/index.html -------------------------------------------------------------------------------- /absendigital/application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/language/index.html -------------------------------------------------------------------------------- /absendigital/application/libraries/Ciqrcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/Ciqrcode.php -------------------------------------------------------------------------------- /absendigital/application/libraries/Datatables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/Datatables.php -------------------------------------------------------------------------------- /absendigital/application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/index.html -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/phpqrcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/phpqrcode.php -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/qrconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/qrconfig.php -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/qrconst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/qrconst.php -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/qrencode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/qrencode.php -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/qrimage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/qrimage.php -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/qrinput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/qrinput.php -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/qrlib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/qrlib.php -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/qrmask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/qrmask.php -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/qrrscode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/qrrscode.php -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/qrspec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/qrspec.php -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/qrsplit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/qrsplit.php -------------------------------------------------------------------------------- /absendigital/application/libraries/qrcode/qrtools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/libraries/qrcode/qrtools.php -------------------------------------------------------------------------------- /absendigital/application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/logs/index.html -------------------------------------------------------------------------------- /absendigital/application/models/M_Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/models/M_Admin.php -------------------------------------------------------------------------------- /absendigital/application/models/M_Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/models/M_Auth.php -------------------------------------------------------------------------------- /absendigital/application/models/M_Front.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/models/M_Front.php -------------------------------------------------------------------------------- /absendigital/application/models/M_Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/models/M_Settings.php -------------------------------------------------------------------------------- /absendigital/application/models/M_User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/models/M_User.php -------------------------------------------------------------------------------- /absendigital/application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/models/index.html -------------------------------------------------------------------------------- /absendigital/application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/third_party/index.html -------------------------------------------------------------------------------- /absendigital/application/views/admin/absenpegawai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/admin/absenpegawai.php -------------------------------------------------------------------------------- /absendigital/application/views/admin/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/admin/dashboard.php -------------------------------------------------------------------------------- /absendigital/application/views/admin/datapegawai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/admin/datapegawai.php -------------------------------------------------------------------------------- /absendigital/application/views/admin/exportfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/admin/exportfile.php -------------------------------------------------------------------------------- /absendigital/application/views/admin/settingapp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/admin/settingapp.php -------------------------------------------------------------------------------- /absendigital/application/views/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/auth/login.php -------------------------------------------------------------------------------- /absendigital/application/views/error/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/error/404.php -------------------------------------------------------------------------------- /absendigital/application/views/error/blocked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/error/blocked.php -------------------------------------------------------------------------------- /absendigital/application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/errors/cli/error_404.php -------------------------------------------------------------------------------- /absendigital/application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/errors/cli/error_db.php -------------------------------------------------------------------------------- /absendigital/application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/errors/cli/error_php.php -------------------------------------------------------------------------------- /absendigital/application/views/errors/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/errors/cli/index.html -------------------------------------------------------------------------------- /absendigital/application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/errors/html/error_404.php -------------------------------------------------------------------------------- /absendigital/application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/errors/html/error_db.php -------------------------------------------------------------------------------- /absendigital/application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/errors/html/error_php.php -------------------------------------------------------------------------------- /absendigital/application/views/errors/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/errors/html/index.html -------------------------------------------------------------------------------- /absendigital/application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/errors/index.html -------------------------------------------------------------------------------- /absendigital/application/views/front/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/front/home.php -------------------------------------------------------------------------------- /absendigital/application/views/front/instantscan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/front/instantscan.php -------------------------------------------------------------------------------- /absendigital/application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/index.html -------------------------------------------------------------------------------- /absendigital/application/views/layout/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/layout/footer.php -------------------------------------------------------------------------------- /absendigital/application/views/layout/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/layout/header.php -------------------------------------------------------------------------------- /absendigital/application/views/layout/navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/layout/navbar.php -------------------------------------------------------------------------------- /absendigital/application/views/layout/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/layout/sidebar.php -------------------------------------------------------------------------------- /absendigital/application/views/user/absensi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/user/absensi.php -------------------------------------------------------------------------------- /absendigital/application/views/user/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/user/profile.php -------------------------------------------------------------------------------- /absendigital/application/views/user/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/application/views/user/setting.php -------------------------------------------------------------------------------- /absendigital/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/composer.json -------------------------------------------------------------------------------- /absendigital/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/contributing.md -------------------------------------------------------------------------------- /absendigital/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/.htaccess -------------------------------------------------------------------------------- /absendigital/public/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/css/bootstrap.css -------------------------------------------------------------------------------- /absendigital/public/assets/css/mpdf-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/css/mpdf-bootstrap.css -------------------------------------------------------------------------------- /absendigital/public/assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/css/styles.css -------------------------------------------------------------------------------- /absendigital/public/assets/css/webcodecam.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/css/webcodecam.css -------------------------------------------------------------------------------- /absendigital/public/assets/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/img/ajax-loader.gif -------------------------------------------------------------------------------- /absendigital/public/assets/img/auth-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/img/auth-image.jpg -------------------------------------------------------------------------------- /absendigital/public/assets/img/clock-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/img/clock-image.png -------------------------------------------------------------------------------- /absendigital/public/assets/img/default-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/img/default-profile.png -------------------------------------------------------------------------------- /absendigital/public/assets/img/no-qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/img/no-qrcode.png -------------------------------------------------------------------------------- /absendigital/public/assets/js/sb-admin-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/js/sb-admin-js.js -------------------------------------------------------------------------------- /absendigital/public/assets/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/js/scripts.js -------------------------------------------------------------------------------- /absendigital/public/assets/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /absendigital/public/assets/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /absendigital/public/assets/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /absendigital/public/assets/vendor/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/vendor/jquery/jquery.slim.js -------------------------------------------------------------------------------- /absendigital/public/assets/vendor/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/vendor/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /absendigital/public/assets/vendor/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/vendor/leaflet/leaflet.css -------------------------------------------------------------------------------- /absendigital/public/assets/vendor/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/vendor/leaflet/leaflet.js -------------------------------------------------------------------------------- /absendigital/public/assets/vendor/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/assets/vendor/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /absendigital/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/index.php -------------------------------------------------------------------------------- /absendigital/public/storage/pdf_cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/storage/pdf_cache/index.html -------------------------------------------------------------------------------- /absendigital/public/storage/profile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/storage/profile/index.html -------------------------------------------------------------------------------- /absendigital/public/storage/qrcode_pegawai/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/storage/qrcode_pegawai/index.html -------------------------------------------------------------------------------- /absendigital/public/storage/setting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/storage/setting/index.html -------------------------------------------------------------------------------- /absendigital/public/storage/sys/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/public/storage/sys/index.html -------------------------------------------------------------------------------- /absendigital/system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/.htaccess -------------------------------------------------------------------------------- /absendigital/system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Benchmark.php -------------------------------------------------------------------------------- /absendigital/system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /absendigital/system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Common.php -------------------------------------------------------------------------------- /absendigital/system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Config.php -------------------------------------------------------------------------------- /absendigital/system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Controller.php -------------------------------------------------------------------------------- /absendigital/system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Exceptions.php -------------------------------------------------------------------------------- /absendigital/system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Hooks.php -------------------------------------------------------------------------------- /absendigital/system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Input.php -------------------------------------------------------------------------------- /absendigital/system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Lang.php -------------------------------------------------------------------------------- /absendigital/system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Loader.php -------------------------------------------------------------------------------- /absendigital/system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Log.php -------------------------------------------------------------------------------- /absendigital/system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Model.php -------------------------------------------------------------------------------- /absendigital/system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Output.php -------------------------------------------------------------------------------- /absendigital/system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Router.php -------------------------------------------------------------------------------- /absendigital/system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Security.php -------------------------------------------------------------------------------- /absendigital/system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/URI.php -------------------------------------------------------------------------------- /absendigital/system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/Utf8.php -------------------------------------------------------------------------------- /absendigital/system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/compat/hash.php -------------------------------------------------------------------------------- /absendigital/system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/compat/index.html -------------------------------------------------------------------------------- /absendigital/system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /absendigital/system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/compat/password.php -------------------------------------------------------------------------------- /absendigital/system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/compat/standard.php -------------------------------------------------------------------------------- /absendigital/system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/core/index.html -------------------------------------------------------------------------------- /absendigital/system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/DB.php -------------------------------------------------------------------------------- /absendigital/system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/DB_cache.php -------------------------------------------------------------------------------- /absendigital/system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/DB_driver.php -------------------------------------------------------------------------------- /absendigital/system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/DB_forge.php -------------------------------------------------------------------------------- /absendigital/system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /absendigital/system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/DB_result.php -------------------------------------------------------------------------------- /absendigital/system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/DB_utility.php -------------------------------------------------------------------------------- /absendigital/system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /absendigital/system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /absendigital/system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /absendigital/system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /absendigital/system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /absendigital/system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /absendigital/system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/sqlite3/index.html -------------------------------------------------------------------------------- /absendigital/system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /absendigital/system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/database/index.html -------------------------------------------------------------------------------- /absendigital/system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/fonts/index.html -------------------------------------------------------------------------------- /absendigital/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/fonts/texb.ttf -------------------------------------------------------------------------------- /absendigital/system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/array_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/date_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/download_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/email_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/file_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/form_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/html_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/index.html -------------------------------------------------------------------------------- /absendigital/system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/language_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/number_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/path_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/security_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/string_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/text_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/url_helper.php -------------------------------------------------------------------------------- /absendigital/system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /absendigital/system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/index.html -------------------------------------------------------------------------------- /absendigital/system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/date_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/db_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/email_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/index.html -------------------------------------------------------------------------------- /absendigital/system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/number_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/english/pagination_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/pagination_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /absendigital/system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/language/index.html -------------------------------------------------------------------------------- /absendigital/system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Cache/drivers/index.html -------------------------------------------------------------------------------- /absendigital/system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /absendigital/system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Calendar.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Cart.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Driver.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Email.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Encryption.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Ftp.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Javascript.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Javascript/Jquery.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Javascript/index.html -------------------------------------------------------------------------------- /absendigital/system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Migration.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Pagination.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Parser.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Profiler.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Session/Session.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Session/Session_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Session/Session_driver.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Session/drivers/index.html -------------------------------------------------------------------------------- /absendigital/system/libraries/Session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Session/index.html -------------------------------------------------------------------------------- /absendigital/system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Table.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Trackback.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Typography.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Upload.php -------------------------------------------------------------------------------- /absendigital/system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/User_agent.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /absendigital/system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/Zip.php -------------------------------------------------------------------------------- /absendigital/system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/system/libraries/index.html -------------------------------------------------------------------------------- /absendigital/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/autoload.php -------------------------------------------------------------------------------- /absendigital/vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/bin/phpunit -------------------------------------------------------------------------------- /absendigital/vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/bin/phpunit.bat -------------------------------------------------------------------------------- /absendigital/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /absendigital/vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /absendigital/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /absendigital/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /absendigital/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /absendigital/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /absendigital/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /absendigital/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /absendigital/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/installed.json -------------------------------------------------------------------------------- /absendigital/vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/installed.php -------------------------------------------------------------------------------- /absendigital/vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /absendigital/vendor/doctrine/instantiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/doctrine/instantiator/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/doctrine/instantiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/doctrine/instantiator/README.md -------------------------------------------------------------------------------- /absendigital/vendor/doctrine/instantiator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/doctrine/instantiator/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/doctrine/instantiator/phpbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/doctrine/instantiator/phpbench.json -------------------------------------------------------------------------------- /absendigital/vendor/doctrine/instantiator/phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/doctrine/instantiator/phpcs.xml.dist -------------------------------------------------------------------------------- /absendigital/vendor/maennchen/zipstream-php/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: zipstream 2 | -------------------------------------------------------------------------------- /absendigital/vendor/maennchen/zipstream-php/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/maennchen/zipstream-php/.gitignore -------------------------------------------------------------------------------- /absendigital/vendor/maennchen/zipstream-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/maennchen/zipstream-php/.travis.yml -------------------------------------------------------------------------------- /absendigital/vendor/maennchen/zipstream-php/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/maennchen/zipstream-php/CHANGELOG.md -------------------------------------------------------------------------------- /absendigital/vendor/maennchen/zipstream-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/maennchen/zipstream-php/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/maennchen/zipstream-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/maennchen/zipstream-php/README.md -------------------------------------------------------------------------------- /absendigital/vendor/maennchen/zipstream-php/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/maennchen/zipstream-php/psalm.xml -------------------------------------------------------------------------------- /absendigital/vendor/maennchen/zipstream-php/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/maennchen/zipstream-php/src/File.php -------------------------------------------------------------------------------- /absendigital/vendor/markbaker/complex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/markbaker/complex/README.md -------------------------------------------------------------------------------- /absendigital/vendor/markbaker/complex/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/markbaker/complex/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/markbaker/complex/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/markbaker/complex/license.md -------------------------------------------------------------------------------- /absendigital/vendor/markbaker/matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/markbaker/matrix/README.md -------------------------------------------------------------------------------- /absendigital/vendor/markbaker/matrix/buildPhar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/markbaker/matrix/buildPhar.php -------------------------------------------------------------------------------- /absendigital/vendor/markbaker/matrix/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/markbaker/matrix/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/markbaker/matrix/examples/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/markbaker/matrix/examples/test.php -------------------------------------------------------------------------------- /absendigital/vendor/markbaker/matrix/infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/markbaker/matrix/infection.json.dist -------------------------------------------------------------------------------- /absendigital/vendor/markbaker/matrix/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/markbaker/matrix/license.md -------------------------------------------------------------------------------- /absendigital/vendor/markbaker/matrix/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/markbaker/matrix/phpstan.neon -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /nbproject 3 | -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mikey179/vfsstream/.travis.yml -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mikey179/vfsstream/CHANGES -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mikey179/vfsstream/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mikey179/vfsstream/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/examples/bootstrap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mikey179/vfsstream/phpdoc.dist.xml -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mikey179/vfsstream/phpunit.xml.dist -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mikey179/vfsstream/readme.md -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/emptyFolder/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/aFile.txt: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/subfolder1/file1.txt: -------------------------------------------------------------------------------- 1 | foobar -------------------------------------------------------------------------------- /absendigital/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/subfolder2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.paypal.me/mpdf 2 | -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | composer.lock 3 | -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/.travis.yml -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/CHANGELOG.md -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/CREDITS.txt -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/LICENSE.txt -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/README.md -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/CJKdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/CJKdata.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/ccourier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/ccourier.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/ccourierb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/ccourierb.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/ccourierbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/ccourierbi.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/ccourieri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/ccourieri.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/chelvetica.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/chelvetica.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/chelveticab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/chelveticab.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/chelveticabi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/chelveticabi.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/chelveticai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/chelveticai.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/csymbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/csymbol.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/ctimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/ctimes.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/ctimesb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/ctimesb.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/ctimesbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/ctimesbi.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/font/ctimesi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/font/ctimesi.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/lang2fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/lang2fonts.css -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/linebrdictK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/linebrdictK.dat -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/linebrdictL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/linebrdictL.dat -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/linebrdictT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/linebrdictT.dat -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/mpdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/mpdf.css -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/no_image.jpg -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/out.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/out.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/patterns/NOTES.txt -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/patterns/de.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/dictionary.txt: -------------------------------------------------------------------------------- 1 | dis/establish/ment/arian/ism 2 | -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/patterns/en.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/patterns/es.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/patterns/fi.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/patterns/fr.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/patterns/it.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/patterns/nl.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/patterns/pl.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/patterns/ru.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/patterns/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/patterns/sv.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/subs_core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/subs_core.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/subs_win-1252.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/subs_win-1252.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/data/upperCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/data/upperCase.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/phpunit.xml -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/ruleset.xml -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/Codabar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/Codabar.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/Code11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/Code11.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/Code128.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/Code128.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/Code39.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/Code39.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/Code93.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/Code93.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/EanExt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/EanExt.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/EanUpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/EanUpc.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/I25.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/I25.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/Imb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/Imb.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/Msi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/Msi.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/Postnet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/Postnet.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/Rm4Scc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/Rm4Scc.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Barcode/S25.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Barcode/S25.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Cache.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Color/NamedColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Color/NamedColors.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Css/Border.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Css/Border.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Css/DefaultCss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Css/DefaultCss.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Css/TextVars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Css/TextVars.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/CssManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/CssManager.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/DirectWrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/DirectWrite.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Fonts/FontCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Fonts/FontCache.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Form.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/FpdiTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/FpdiTrait.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Gif/ColorTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Gif/ColorTable.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Gif/FileHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Gif/FileHeader.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Gif/Gif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Gif/Gif.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Gif/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Gif/Image.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Gif/ImageHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Gif/ImageHeader.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Gif/Lzw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Gif/Lzw.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Gradient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Gradient.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/HTMLParserMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/HTMLParserMode.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Hyphenator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Hyphenator.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Image/Bmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Image/Bmp.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Image/Svg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Image/Svg.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Image/Wmf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Image/Wmf.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Log/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Log/Context.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Mpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Mpdf.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/MpdfException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/MpdfException.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/MpdfImageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/MpdfImageException.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Otl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Otl.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/OtlDump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/OtlDump.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Output/Destination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Output/Destination.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/PageFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/PageFormat.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Pdf/Protection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Pdf/Protection.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/ServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/ServiceFactory.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Shaper/Indic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Shaper/Indic.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Shaper/Myanmar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Shaper/Myanmar.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Shaper/Sea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Shaper/Sea.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/SizeConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/SizeConverter.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Strict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Strict.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/TTFontFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/TTFontFile.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/TTFontFileAnalysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/TTFontFileAnalysis.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/TableOfContents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/TableOfContents.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Tag.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Tag/A.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/mpdf/mpdf/src/Tag/A.php -------------------------------------------------------------------------------- /absendigital/vendor/mpdf/mpdf/src/Tag/Acronym.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /absendigital/vendor/phpunit/phpunit/tests/Regression/Trac/684/Issue684Test.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /absendigital/vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /absendigital/vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-client/CHANGELOG.md -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-client/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-client/README.md -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-client/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-client/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-factory/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor/ 3 | -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-factory/.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-factory/.pullapprove.yml -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-factory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-factory/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-factory/README.md -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-factory/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-factory/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-message/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-message/CHANGELOG.md -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /absendigital/vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/http-message/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/psr/log/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/log/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /absendigital/vendor/psr/log/Psr/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/log/Psr/Log/LoggerTrait.php -------------------------------------------------------------------------------- /absendigital/vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/log/Psr/Log/NullLogger.php -------------------------------------------------------------------------------- /absendigital/vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/log/README.md -------------------------------------------------------------------------------- /absendigital/vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/psr/simple-cache/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/simple-cache/.editorconfig -------------------------------------------------------------------------------- /absendigital/vendor/psr/simple-cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/simple-cache/LICENSE.md -------------------------------------------------------------------------------- /absendigital/vendor/psr/simple-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/simple-cache/README.md -------------------------------------------------------------------------------- /absendigital/vendor/psr/simple-cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/psr/simple-cache/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/code-unit-reverse-lookup/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | 5 | -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/comparator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/comparator/.gitignore -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/comparator/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/comparator/.travis.yml -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/comparator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/comparator/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/comparator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/comparator/README.md -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/comparator/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/comparator/build.xml -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/.php_cs -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/.travis.yml -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/README.md -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/build.xml -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/phpunit.xml -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/src/Chunk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/src/Chunk.php -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/src/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/src/Diff.php -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/src/Differ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/src/Differ.php -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/src/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/src/Line.php -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/src/Parser.php -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/tests/DiffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/tests/DiffTest.php -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/diff/tests/LineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/diff/tests/LineTest.php -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/environment/.gitignore -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/environment/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/environment/.travis.yml -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/environment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/environment/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/environment/README.md -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/environment/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/environment/build.xml -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/environment/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/environment/phpunit.xml -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/exporter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/exporter/.gitignore -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/exporter/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/exporter/.travis.yml -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/exporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/exporter/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/exporter/README.md -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/exporter/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/exporter/build.xml -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/exporter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/exporter/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/global-state/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/global-state/.gitignore -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/global-state/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/global-state/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/global-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/global-state/README.md -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/global-state/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/global-state/build.xml -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /build/arginfo.php 3 | 4 | -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/version/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/version/.php_cs -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/version/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/version/README.md -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/version/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/version/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/sebastian/version/src/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/sebastian/version/src/Version.php -------------------------------------------------------------------------------- /absendigital/vendor/setasign/fpdi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/setasign/fpdi/LICENSE.txt -------------------------------------------------------------------------------- /absendigital/vendor/setasign/fpdi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/setasign/fpdi/README.md -------------------------------------------------------------------------------- /absendigital/vendor/setasign/fpdi/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/setasign/fpdi/SECURITY.md -------------------------------------------------------------------------------- /absendigital/vendor/setasign/fpdi/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/setasign/fpdi/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/setasign/fpdi/src/FpdfTpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/setasign/fpdi/src/FpdfTpl.php -------------------------------------------------------------------------------- /absendigital/vendor/setasign/fpdi/src/Fpdi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/setasign/fpdi/src/Fpdi.php -------------------------------------------------------------------------------- /absendigital/vendor/setasign/fpdi/src/FpdiTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/setasign/fpdi/src/FpdiTrait.php -------------------------------------------------------------------------------- /absendigital/vendor/setasign/fpdi/src/Tcpdf/Fpdi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/setasign/fpdi/src/Tcpdf/Fpdi.php -------------------------------------------------------------------------------- /absendigital/vendor/setasign/fpdi/src/TcpdfFpdi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/setasign/fpdi/src/TcpdfFpdi.php -------------------------------------------------------------------------------- /absendigital/vendor/setasign/fpdi/src/Tfpdf/Fpdi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/setasign/fpdi/src/Tfpdf/Fpdi.php -------------------------------------------------------------------------------- /absendigital/vendor/setasign/fpdi/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/setasign/fpdi/src/autoload.php -------------------------------------------------------------------------------- /absendigital/vendor/symfony/polyfill-ctype/Ctype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/polyfill-ctype/Ctype.php -------------------------------------------------------------------------------- /absendigital/vendor/symfony/polyfill-ctype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/polyfill-ctype/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/symfony/polyfill-ctype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/polyfill-ctype/README.md -------------------------------------------------------------------------------- /absendigital/vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/symfony/yaml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/yaml/CHANGELOG.md -------------------------------------------------------------------------------- /absendigital/vendor/symfony/yaml/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/yaml/Dumper.php -------------------------------------------------------------------------------- /absendigital/vendor/symfony/yaml/Escaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/yaml/Escaper.php -------------------------------------------------------------------------------- /absendigital/vendor/symfony/yaml/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/yaml/Inline.php -------------------------------------------------------------------------------- /absendigital/vendor/symfony/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/yaml/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/symfony/yaml/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/yaml/Parser.php -------------------------------------------------------------------------------- /absendigital/vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/yaml/README.md -------------------------------------------------------------------------------- /absendigital/vendor/symfony/yaml/Tag/TaggedValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/yaml/Tag/TaggedValue.php -------------------------------------------------------------------------------- /absendigital/vendor/symfony/yaml/Unescaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/yaml/Unescaper.php -------------------------------------------------------------------------------- /absendigital/vendor/symfony/yaml/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/yaml/Yaml.php -------------------------------------------------------------------------------- /absendigital/vendor/symfony/yaml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/symfony/yaml/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/webmozart/assert/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/webmozart/assert/.editorconfig -------------------------------------------------------------------------------- /absendigital/vendor/webmozart/assert/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/webmozart/assert/CHANGELOG.md -------------------------------------------------------------------------------- /absendigital/vendor/webmozart/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/webmozart/assert/LICENSE -------------------------------------------------------------------------------- /absendigital/vendor/webmozart/assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/webmozart/assert/README.md -------------------------------------------------------------------------------- /absendigital/vendor/webmozart/assert/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/webmozart/assert/composer.json -------------------------------------------------------------------------------- /absendigital/vendor/webmozart/assert/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/webmozart/assert/psalm.xml -------------------------------------------------------------------------------- /absendigital/vendor/webmozart/assert/src/Assert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/webmozart/assert/src/Assert.php -------------------------------------------------------------------------------- /absendigital/vendor/webmozart/assert/src/Mixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/absendigital/vendor/webmozart/assert/src/Mixin.php -------------------------------------------------------------------------------- /images-demo/Screenshot_2020-09-12 Absensi Online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/images-demo/Screenshot_2020-09-12 Absensi Online.png -------------------------------------------------------------------------------- /images-demo/Screenshot_2020-09-12 Data Kehadiran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/images-demo/Screenshot_2020-09-12 Data Kehadiran.png -------------------------------------------------------------------------------- /images-demo/Screenshot_2020-09-12 Data Pegawai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/images-demo/Screenshot_2020-09-12 Data Pegawai.png -------------------------------------------------------------------------------- /images-demo/Screenshot_2020-09-12 My Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/images-demo/Screenshot_2020-09-12 My Profile.png -------------------------------------------------------------------------------- /images-demo/Screenshot_2020-09-12 Setting(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/images-demo/Screenshot_2020-09-12 Setting(1).png -------------------------------------------------------------------------------- /images-demo/Screenshot_2021-02-03 Login Absensi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandyh90/Codeigniter3-absen-digital/HEAD/images-demo/Screenshot_2021-02-03 Login Absensi.png --------------------------------------------------------------------------------