├── .editorconfig
├── .gitignore
├── .htaccess
├── application
├── .htaccess
├── cache
│ └── index.html
├── config
│ ├── 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
│ ├── Banner.php
│ ├── Cart.php
│ ├── Checkout.php
│ ├── Home.php
│ ├── Login.php
│ ├── Logout.php
│ ├── Myorder.php
│ ├── Order.php
│ ├── Product.php
│ ├── Profile.php
│ ├── Register.php
│ ├── User.php
│ └── index.html
├── core
│ └── index.html
├── helpers
│ ├── ci_helper.php
│ └── index.html
├── hooks
│ └── index.html
├── index.html
├── language
│ ├── english
│ │ └── index.html
│ └── index.html
├── libraries
│ └── index.html
├── logs
│ └── index.html
├── models
│ ├── Banner_model.php
│ ├── Cart_model.php
│ ├── Checkout_model.php
│ ├── Home_model.php
│ ├── Login_model.php
│ ├── Myorder_model.php
│ ├── Order_model.php
│ ├── Product_model.php
│ ├── Profile_model.php
│ ├── Register_model.php
│ ├── User_model.php
│ └── index.html
├── third_party
│ └── index.html
└── views
│ ├── 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
│ ├── index.html
│ ├── layouts
│ ├── _alert.php
│ ├── _footer.php
│ ├── _navbar.php
│ └── app.php
│ ├── pages
│ ├── auth
│ │ ├── login.php
│ │ └── register.php
│ ├── banner
│ │ ├── add.php
│ │ ├── edit.php
│ │ └── index.php
│ ├── cart
│ │ └── index.php
│ ├── checkout
│ │ ├── index.php
│ │ └── success.php
│ ├── home
│ │ ├── detail.php
│ │ └── index.php
│ ├── myorder
│ │ ├── confirm.php
│ │ ├── detail.php
│ │ └── index.php
│ ├── order
│ │ ├── detail.php
│ │ └── index.php
│ ├── product
│ │ ├── add.php
│ │ ├── edit.php
│ │ └── index.php
│ ├── profile
│ │ ├── index.php
│ │ └── password.php
│ └── users
│ │ └── index.php
│ └── welcome_message.php
├── assets
├── css
│ └── style.css
└── vendors
│ ├── bootstrap
│ ├── css
│ │ └── bootstrap.min.css
│ └── js
│ │ └── bootstrap.min.js
│ ├── fontawesome
│ ├── 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
│ ├── jquery
│ └── jquery.min.js
│ ├── popper
│ └── popper.min.js
│ └── summernote
│ ├── .agignore
│ ├── .editorconfig
│ ├── .eslintrc
│ ├── .github
│ ├── CODE_OF_CONDUCT.md
│ ├── CONTRIBUTING.md
│ ├── FUNDING.yml
│ ├── ISSUE_TEMPLATE.md
│ └── PULL_REQUEST_TEMPLATE.md
│ ├── .gitignore
│ ├── .npmignore
│ ├── .travis.yml
│ ├── LICENSE
│ ├── MAINTAIN.md
│ ├── README.md
│ ├── config
│ ├── build-fonts.js
│ ├── common
│ │ ├── dev.common.config.js
│ │ ├── lang.config.js
│ │ ├── production.common.config.js
│ │ └── scss.config.js
│ ├── webpack.config.dev.js
│ └── webpack.config.production.js
│ ├── examples
│ ├── airmode.html
│ ├── bs2.html
│ ├── bs3.html
│ ├── bs4.html
│ ├── codemirror.html
│ ├── codeview-filter.html
│ ├── custom-style.html
│ ├── example.css
│ ├── external-api.html
│ ├── hint-emoji.html
│ ├── hint-symbols_mathematical-symbols_Greek-letters.html
│ ├── hint-userdefine.html
│ ├── hint-words.html
│ ├── ie8.html
│ ├── index.html
│ ├── jquery-custom-event.html
│ ├── lang.html
│ ├── link-blank.html
│ ├── lite.html
│ ├── ondialog-multitab.html
│ ├── ondialog.html
│ ├── placeholder.html
│ ├── plugin-hello.html
│ ├── symbols_mathematical-symbols_Greek-letters.json
│ ├── textarea.html
│ ├── toolbar-container.html
│ └── with-google-font.html
│ ├── index.html
│ ├── karma.ci.conf.js
│ ├── karma.conf.js
│ ├── karma.saucelabs.conf.js
│ ├── lang
│ ├── summernote-ar-AR.js
│ ├── summernote-bg-BG.js
│ ├── summernote-ca-ES.js
│ ├── summernote-cs-CZ.js
│ ├── summernote-da-DK.js
│ ├── summernote-de-DE.js
│ ├── summernote-el-GR.js
│ ├── summernote-es-ES.js
│ ├── summernote-es-EU.js
│ ├── summernote-fa-IR.js
│ ├── summernote-fi-FI.js
│ ├── summernote-fr-FR.js
│ ├── summernote-gl-ES.js
│ ├── summernote-he-IL.js
│ ├── summernote-hr-HR.js
│ ├── summernote-hu-HU.js
│ ├── summernote-id-ID.js
│ ├── summernote-it-IT.js
│ ├── summernote-ja-JP.js
│ ├── summernote-ko-KR.js
│ ├── summernote-lt-LT.js
│ ├── summernote-lt-LV.js
│ ├── summernote-mn-MN.js
│ ├── summernote-nb-NO.js
│ ├── summernote-nl-NL.js
│ ├── summernote-pl-PL.js
│ ├── summernote-pt-BR.js
│ ├── summernote-pt-PT.js
│ ├── summernote-ro-RO.js
│ ├── summernote-ru-RU.js
│ ├── summernote-sk-SK.js
│ ├── summernote-sl-SI.js
│ ├── summernote-sr-RS-Latin.js
│ ├── summernote-sr-RS.js
│ ├── summernote-sv-SE.js
│ ├── summernote-ta-IN.js
│ ├── summernote-th-TH.js
│ ├── summernote-tr-TR.js
│ ├── summernote-uk-UA.js
│ ├── summernote-uz-UZ.js
│ ├── summernote-vi-VN.js
│ ├── summernote-zh-CN.js
│ └── summernote-zh-TW.js
│ ├── package.json
│ ├── plugin
│ ├── databasic
│ │ ├── summernote-ext-databasic.css
│ │ └── summernote-ext-databasic.js
│ ├── hello
│ │ └── summernote-ext-hello.js
│ └── specialchars
│ │ └── summernote-ext-specialchars.js
│ ├── postcss.config.js
│ ├── src
│ ├── icons
│ │ ├── align-center.svg
│ │ ├── align-indent.svg
│ │ ├── align-justify.svg
│ │ ├── align-left.svg
│ │ ├── align-outdent.svg
│ │ ├── align-right.svg
│ │ ├── align.svg
│ │ ├── arrow-circle-down.svg
│ │ ├── arrow-circle-left.svg
│ │ ├── arrow-circle-right.svg
│ │ ├── arrow-circle-up.svg
│ │ ├── arrows-alt.svg
│ │ ├── arrows-h.svg
│ │ ├── arrows-v.svg
│ │ ├── bold.svg
│ │ ├── caret.svg
│ │ ├── chain-broken.svg
│ │ ├── circle.svg
│ │ ├── close.svg
│ │ ├── code.svg
│ │ ├── col-after.svg
│ │ ├── col-before.svg
│ │ ├── col-remove.svg
│ │ ├── eraser.svg
│ │ ├── float-left.svg
│ │ ├── float-none.svg
│ │ ├── float-right.svg
│ │ ├── font.svg
│ │ ├── frame.svg
│ │ ├── italic.svg
│ │ ├── link.svg
│ │ ├── magic.svg
│ │ ├── menu-check.svg
│ │ ├── minus.svg
│ │ ├── orderedlist.svg
│ │ ├── pencil.svg
│ │ ├── picture.svg
│ │ ├── question.svg
│ │ ├── redo.svg
│ │ ├── rollback.svg
│ │ ├── row-above.svg
│ │ ├── row-below.svg
│ │ ├── row-remove.svg
│ │ ├── special-character.svg
│ │ ├── square.svg
│ │ ├── strikethrough.svg
│ │ ├── subscript.svg
│ │ ├── summernote.svg
│ │ ├── superscript.svg
│ │ ├── table.svg
│ │ ├── templates
│ │ │ └── summernote-icons.css
│ │ ├── text-height.svg
│ │ ├── trash.svg
│ │ ├── underline.svg
│ │ ├── undo.svg
│ │ ├── unorderedlist.svg
│ │ └── video.svg
│ ├── js
│ │ ├── base
│ │ │ ├── Context.js
│ │ │ ├── core
│ │ │ │ ├── async.js
│ │ │ │ ├── dom.js
│ │ │ │ ├── env.js
│ │ │ │ ├── func.js
│ │ │ │ ├── key.js
│ │ │ │ ├── lists.js
│ │ │ │ └── range.js
│ │ │ ├── editing
│ │ │ │ ├── Bullet.js
│ │ │ │ ├── History.js
│ │ │ │ ├── Style.js
│ │ │ │ ├── Table.js
│ │ │ │ └── Typing.js
│ │ │ ├── module
│ │ │ │ ├── AirPopover.js
│ │ │ │ ├── AutoLink.js
│ │ │ │ ├── AutoReplace.js
│ │ │ │ ├── AutoSync.js
│ │ │ │ ├── Buttons.js
│ │ │ │ ├── Clipboard.js
│ │ │ │ ├── Codeview.js
│ │ │ │ ├── Dropzone.js
│ │ │ │ ├── Editor.js
│ │ │ │ ├── Fullscreen.js
│ │ │ │ ├── Handle.js
│ │ │ │ ├── HelpDialog.js
│ │ │ │ ├── HintPopover.js
│ │ │ │ ├── ImageDialog.js
│ │ │ │ ├── ImagePopover.js
│ │ │ │ ├── LinkDialog.js
│ │ │ │ ├── LinkPopover.js
│ │ │ │ ├── Placeholder.js
│ │ │ │ ├── Statusbar.js
│ │ │ │ ├── TablePopover.js
│ │ │ │ ├── Toolbar.js
│ │ │ │ └── VideoDialog.js
│ │ │ ├── renderer.js
│ │ │ ├── settings.js
│ │ │ └── summernote-en-US.js
│ │ ├── bs3
│ │ │ ├── settings.js
│ │ │ └── ui.js
│ │ ├── bs4
│ │ │ ├── settings.js
│ │ │ └── ui.js
│ │ ├── lite
│ │ │ ├── settings.js
│ │ │ ├── ui.js
│ │ │ └── ui
│ │ │ │ ├── DropdownUI.js
│ │ │ │ ├── ModalUI.js
│ │ │ │ └── TooltipUI.js
│ │ └── summernote.js
│ ├── styles
│ │ ├── elements.scss
│ │ ├── font
│ │ │ ├── summernote.eot
│ │ │ ├── summernote.ttf
│ │ │ ├── summernote.woff
│ │ │ └── summernote.woff2
│ │ ├── lite
│ │ │ ├── btn-group.scss
│ │ │ ├── buttons.scss
│ │ │ ├── common.scss
│ │ │ ├── dropdown.scss
│ │ │ ├── form.scss
│ │ │ ├── mixins.scss
│ │ │ ├── mixins
│ │ │ │ └── buttons.scss
│ │ │ ├── modal.scss
│ │ │ ├── popover.scss
│ │ │ ├── toolbar.scss
│ │ │ ├── tooltip.scss
│ │ │ └── variables.scss
│ │ ├── summernote-bs3.scss
│ │ ├── summernote-bs4.scss
│ │ ├── summernote-common.scss
│ │ ├── summernote-icons.css
│ │ └── summernote-lite.scss
│ ├── summernote-bs3.html
│ ├── summernote-bs4.html
│ └── summernote-lite.html
│ ├── test
│ ├── base
│ │ ├── Context.spec.js
│ │ ├── core
│ │ │ ├── dom.spec.js
│ │ │ ├── func.spec.js
│ │ │ ├── key.spec.js
│ │ │ ├── lists.spec.js
│ │ │ └── range.spec.js
│ │ ├── editing
│ │ │ ├── Table.spec.js
│ │ │ ├── Typing.spec.js
│ │ │ └── style.spec.js
│ │ └── module
│ │ │ ├── Buttons.spec.js
│ │ │ ├── Codeview.spec.js
│ │ │ ├── Editor.spec.js
│ │ │ ├── Fullscreen.spec.js
│ │ │ ├── HintPopover.spec.js
│ │ │ ├── LinkDialog.spec.js
│ │ │ ├── Placeholder.spec.js
│ │ │ └── VideoDialog.spec.js
│ └── chaidom.js
│ └── tsconfig.json
├── capture-1.png
├── capture-2.png
├── composer.json
├── contributing.md
├── database
└── db_gstore (1).sql
├── images
├── banner
│ ├── 7f835b7235cd45661cac8a6c3de3f000.jpg
│ └── f2ea03a2f9af29c035d12d14bcc0dc48.jpg
├── game
│ ├── 6d593e0b9fe86690a49fd1fd32d26983.jpg
│ ├── a15512528a86ac45c1ee4c9c47e4cb3c.jpg
│ ├── anno.jpg
│ ├── assasincreedorigins.jpg
│ └── watchdogs2.jpg
├── logo
│ └── logo.png
└── payments
│ ├── 100286f87c59da115af072e0bc62af55.jpg
│ └── 23c839ec129597ed7735de78e515120a.jpg
├── index.php
├── license.txt
├── readme.md
├── 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
└── user_guide
├── .buildinfo
├── DCO.html
├── _downloads
└── ELDocs.tmbundle.zip
├── _images
├── appflowchart.gif
└── smile.gif
├── _static
├── ajax-loader.gif
├── basic.css
├── ci-icon.ico
├── comment-bright.png
├── comment-close.png
├── comment.png
├── css
│ ├── badge_only.css
│ ├── citheme.css
│ └── theme.css
├── doctools.js
├── down-pressed.png
├── down.png
├── file.png
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── images
│ └── ci-icon.ico
├── jquery-3.1.0.js
├── jquery.js
├── js
│ ├── oldtheme.js
│ └── theme.js
├── minus.png
├── plus.png
├── pygments.css
├── searchtools.js
├── underscore-1.3.1.js
├── underscore.js
├── up-pressed.png
├── up.png
└── websupport.js
├── changelog.html
├── contributing
└── index.html
├── database
├── caching.html
├── call_function.html
├── configuration.html
├── connecting.html
├── db_driver_reference.html
├── examples.html
├── forge.html
├── helpers.html
├── index.html
├── metadata.html
├── queries.html
├── query_builder.html
├── results.html
├── transactions.html
└── utilities.html
├── documentation
└── index.html
├── general
├── alternative_php.html
├── ancillary_classes.html
├── autoloader.html
├── caching.html
├── cli.html
├── common_functions.html
├── compatibility_functions.html
├── controllers.html
├── core_classes.html
├── creating_drivers.html
├── creating_libraries.html
├── credits.html
├── drivers.html
├── environments.html
├── errors.html
├── helpers.html
├── hooks.html
├── index.html
├── libraries.html
├── managing_apps.html
├── models.html
├── profiling.html
├── requirements.html
├── reserved_names.html
├── routing.html
├── security.html
├── styleguide.html
├── urls.html
├── views.html
└── welcome.html
├── genindex.html
├── helpers
├── array_helper.html
├── captcha_helper.html
├── cookie_helper.html
├── date_helper.html
├── directory_helper.html
├── download_helper.html
├── email_helper.html
├── file_helper.html
├── form_helper.html
├── html_helper.html
├── index.html
├── inflector_helper.html
├── language_helper.html
├── number_helper.html
├── path_helper.html
├── security_helper.html
├── smiley_helper.html
├── string_helper.html
├── text_helper.html
├── typography_helper.html
├── url_helper.html
└── xml_helper.html
├── index.html
├── installation
├── downloads.html
├── index.html
├── troubleshooting.html
├── upgrade_120.html
├── upgrade_130.html
├── upgrade_131.html
├── upgrade_132.html
├── upgrade_133.html
├── upgrade_140.html
├── upgrade_141.html
├── upgrade_150.html
├── upgrade_152.html
├── upgrade_153.html
├── upgrade_154.html
├── upgrade_160.html
├── upgrade_161.html
├── upgrade_162.html
├── upgrade_163.html
├── upgrade_170.html
├── upgrade_171.html
├── upgrade_172.html
├── upgrade_200.html
├── upgrade_201.html
├── upgrade_202.html
├── upgrade_203.html
├── upgrade_210.html
├── upgrade_211.html
├── upgrade_212.html
├── upgrade_213.html
├── upgrade_214.html
├── upgrade_220.html
├── upgrade_221.html
├── upgrade_222.html
├── upgrade_223.html
├── upgrade_300.html
├── upgrade_301.html
├── upgrade_302.html
├── upgrade_303.html
├── upgrade_304.html
├── upgrade_305.html
├── upgrade_306.html
├── upgrade_310.html
├── upgrade_311.html
├── upgrade_3110.html
├── upgrade_3111.html
├── upgrade_312.html
├── upgrade_313.html
├── upgrade_314.html
├── upgrade_315.html
├── upgrade_316.html
├── upgrade_317.html
├── upgrade_318.html
├── upgrade_319.html
├── upgrade_b11.html
└── upgrading.html
├── libraries
├── benchmark.html
├── caching.html
├── calendar.html
├── cart.html
├── config.html
├── email.html
├── encrypt.html
├── encryption.html
├── file_uploading.html
├── form_validation.html
├── ftp.html
├── image_lib.html
├── index.html
├── input.html
├── javascript.html
├── language.html
├── loader.html
├── migration.html
├── output.html
├── pagination.html
├── parser.html
├── security.html
├── sessions.html
├── table.html
├── trackback.html
├── typography.html
├── unit_testing.html
├── uri.html
├── user_agent.html
├── xmlrpc.html
└── zip.html
├── license.html
├── objects.inv
├── overview
├── appflow.html
├── at_a_glance.html
├── features.html
├── getting_started.html
├── goals.html
├── index.html
└── mvc.html
├── search.html
├── searchindex.js
└── tutorial
├── conclusion.html
├── create_news_items.html
├── index.html
├── news_section.html
└── static_pages.html
/.editorconfig:
--------------------------------------------------------------------------------
1 | # top-most EditorConfig file
2 | root = true
3 |
4 | # Unix-style newlines with a newline ending every file
5 | [*]
6 | end_of_line = lf
7 | insert_final_newline = true
8 |
9 | # Matches multiple files with brace expansion notation
10 | # Set default charset
11 | [*]
12 | charset = utf-8
13 |
14 | # Tab indentation (no size specified)
15 | indent_style = tab
16 |
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 | RewriteEngine On
2 | RewriteCond %{REQUEST_FILENAME} !-f
3 | RewriteCond %{REQUEST_FILENAME} !-d
4 | RewriteRule ^(.*)$ index.php/$1 [L]
5 |
--------------------------------------------------------------------------------
/application/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/controllers/Logout.php: -------------------------------------------------------------------------------- 1 | session->sess_destroy(); 14 | redirect('home'); 15 | } 16 | 17 | } 18 | 19 | /* End of file Logout.php */ 20 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/Login_model.php: -------------------------------------------------------------------------------- 1 | db->get_where('users', ['email' => $email])->row_array(); 9 | } 10 | 11 | } 12 | 13 | /* End of file Login_model.php */ 14 | -------------------------------------------------------------------------------- /application/models/Register_model.php: -------------------------------------------------------------------------------- 1 | db->insert('users', $data); 9 | } 10 | 11 | } 12 | 13 | /* End of file Register_model.php */ 14 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/layouts/_footer.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/less/_animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .@{fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 100% { 17 | transform: rotate(360deg); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fad, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/less/_list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: (@fa-li-width * 5/4); 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: -@fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: @fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/less/v4-shims.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.10.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import '_variables.less'; 6 | @import '_shims.less'; 7 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: $fa-fw-width; 6 | } 7 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: $fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: -$fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: $fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/scss/v4-shims.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.10.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'shims'; 7 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/adobe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/affiliatetheme.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/atlassian.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/bluetooth-b.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/bluetooth.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/creative-commons-nd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/css3-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/cuttlefish.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/dashcube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/digg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/digital-ocean.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/discourse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/dropbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/elementor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/envira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/facebook-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/figma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/flickr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/fulcrum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/gg-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/gg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/gitlab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/google-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/google.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/gratipay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/hacker-news-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/hotjar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/kaggle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/kickstarter-k.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/korvue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/linkedin-in.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/markdown.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/medium-m.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/medium.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/openid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/pied-piper.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/product-hunt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/quinscape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/renren.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/rockrms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/sistrix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/sketch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/sourcetree.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/stack-exchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/stripe-s.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/superpowers.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/telegram-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/telegram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/typo3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/arrow-alt-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/arrow-alt-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/arrow-alt-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/arrow-alt-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/caret-square-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/caret-square-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/caret-square-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/caret-square-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/folder-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/regular/window-restore.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/archive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/archway.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-alt-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-alt-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-alt-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-alt-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrows-alt-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/arrows-alt-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/ban.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/bars.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/battery-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/battery-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/battery-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/battery-quarter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/battery-three-quarters.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/bed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/bold.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/bowling-ball.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/briefcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/brush.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/burn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/calendar-day.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/calendar-week.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/camera.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/caret-square-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/caret-square-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/caret-square-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/caret-square-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/chalkboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/chart-area.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/chess-king.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/chevron-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/chevron-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/chevron-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/chevron-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/chevron-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/chevron-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/clipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/clone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/cloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/coffee.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/comment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/compact-disc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/concierge-bell.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/credit-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/crop-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/cross.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/cube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/dice-two.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/divide.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/door-closed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/door-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/eject.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/ellipsis-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/ellipsis-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/equals.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/eraser.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/ethernet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/exclamation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/eye.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/fast-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/fast-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/fire.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/first-aid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/fish.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/flask.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/folder-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/folder-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/font.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/gem.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/glass-martini-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/glass-martini.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/glass-whiskey.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/greater-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/grip-lines-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/grip-lines.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/hand-holding.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/hard-hat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/heart-broken.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/heart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/hospital-symbol.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/icicles.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/image.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/inbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/industry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/laptop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/laugh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/less-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/level-down-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/level-up-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/lock-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/long-arrow-alt-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/long-arrow-alt-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/long-arrow-alt-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/long-arrow-alt-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/male.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/map-marker-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/map-marker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/map-pin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/map.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/mars.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/meh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/minus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/mitten.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/mobile-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/moon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/mountain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/mouse-pointer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/music.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/neuter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/pager.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/paper-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/parking.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/pause-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/pen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/phone-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/plug.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/plus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/plus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/prescription-bottle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/qrcode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/redo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/reply.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/ruler-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/screwdriver.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/scroll.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/seedling.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/shapes.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/share.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/shield-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/sim-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/sort.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/step-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/step-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/store-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/stream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/suitcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/surprise.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/tablet-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/tag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/tape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/tenge.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/tint.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/trash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/tshirt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/unlock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/user-alt-slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/user-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/user-slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/user-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/utensil-spoon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/venus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/vial.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/voicemail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/wallet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/wave-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/window-restore.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/wine-glass-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/svgs/solid/wine-glass.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/vendors/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /assets/vendors/summernote/.agignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /assets/vendors/summernote/.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # Unix-style newlines with a newline ending every file 7 | [*] 8 | end_of_line = lf 9 | insert_final_newline = true 10 | charset = utf-8 11 | indent_style = space 12 | indent_size = 2 13 | -------------------------------------------------------------------------------- /assets/vendors/summernote/.npmignore: -------------------------------------------------------------------------------- 1 | # dot files 2 | .agignore 3 | .jshintignore 4 | .jshintrc 5 | .travis.yml 6 | 7 | Gruntfile.js 8 | MAINTAIN.md 9 | grunts/ 10 | test/ 11 | coverage/ 12 | -------------------------------------------------------------------------------- /assets/vendors/summernote/config/common/lang.config.js: -------------------------------------------------------------------------------- 1 | const testFolder = './lang/'; 2 | const fs = require('fs'); 3 | 4 | const files = fs.readdirSync(testFolder); 5 | 6 | let entries = {}; 7 | 8 | files.forEach(file => { 9 | const key = file.split('.')[0]; 10 | 11 | entries[key] = `./lang/${file}`; 12 | }); 13 | 14 | module.exports = entries; 15 | -------------------------------------------------------------------------------- /assets/vendors/summernote/examples/example.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin-top: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /assets/vendors/summernote/plugin/databasic/summernote-ext-databasic.css: -------------------------------------------------------------------------------- 1 | .ext-databasic { 2 | position: relative; 3 | display: block; 4 | min-height: 50px; 5 | background-color: cyan; 6 | text-align: center; 7 | padding: 20px; 8 | border: 1px solid white; 9 | border-radius: 10px; 10 | } 11 | 12 | .ext-databasic p { 13 | color: white; 14 | font-size: 1.2em; 15 | margin: 0; 16 | } 17 | -------------------------------------------------------------------------------- /assets/vendors/summernote/postcss.config.js: -------------------------------------------------------------------------------- 1 | // It is handy to not have those transformations while we developing 2 | if (process.env.NODE_ENV === "production") { 3 | module.exports = { 4 | plugins: [require("autoprefixer"), require("cssnano")] 5 | }; 6 | } else if (process.env.NODE_ENV === "development") { 7 | module.exports = { 8 | plugins: [require("autoprefixer")] 9 | }; 10 | } 11 | -------------------------------------------------------------------------------- /assets/vendors/summernote/src/icons/arrows-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/summernote/src/icons/arrows-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/summernote/src/js/bs3/settings.js: -------------------------------------------------------------------------------- 1 | import $ from 'jquery'; 2 | import ui from './ui'; 3 | import '../base/settings.js'; 4 | 5 | import '../../styles/summernote-bs3.scss'; 6 | 7 | $.summernote = $.extend($.summernote, { 8 | ui_template: ui, 9 | interface: 'bs3', 10 | }); 11 | -------------------------------------------------------------------------------- /assets/vendors/summernote/src/js/lite/settings.js: -------------------------------------------------------------------------------- 1 | import $ from 'jquery'; 2 | import ui from './ui'; 3 | import '../base/settings.js'; 4 | 5 | import '../../styles/summernote-lite.scss'; 6 | 7 | $.summernote = $.extend($.summernote, { 8 | ui_template: ui, 9 | interface: 'lite', 10 | }); 11 | -------------------------------------------------------------------------------- /assets/vendors/summernote/src/styles/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/summernote/src/styles/font/summernote.eot -------------------------------------------------------------------------------- /assets/vendors/summernote/src/styles/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/summernote/src/styles/font/summernote.ttf -------------------------------------------------------------------------------- /assets/vendors/summernote/src/styles/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/summernote/src/styles/font/summernote.woff -------------------------------------------------------------------------------- /assets/vendors/summernote/src/styles/font/summernote.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/assets/vendors/summernote/src/styles/font/summernote.woff2 -------------------------------------------------------------------------------- /assets/vendors/summernote/src/styles/lite/common.scss: -------------------------------------------------------------------------------- 1 | .note-frame { 2 | @include box-sizing(border-box); 3 | color: #000; 4 | font-family: $font-family; 5 | border-radius: 4px; 6 | } 7 | -------------------------------------------------------------------------------- /assets/vendors/summernote/src/styles/lite/mixins.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/buttons.scss"; 2 | -------------------------------------------------------------------------------- /assets/vendors/summernote/src/styles/lite/toolbar.scss: -------------------------------------------------------------------------------- 1 | .note-toolbar { 2 | padding: 10px 5px; 3 | border-bottom: 1px solid #e2e2e2; 4 | color: #333; 5 | background-color: #f5f5f5; 6 | border-color: #ddd; 7 | border-top-left-radius: 3px; 8 | border-top-right-radius: 3px; 9 | } 10 | -------------------------------------------------------------------------------- /assets/vendors/summernote/src/styles/summernote-bs3.scss: -------------------------------------------------------------------------------- 1 | @import 'summernote-icons.css'; 2 | @import "elements.scss"; 3 | @import 'summernote-common.scss'; 4 | -------------------------------------------------------------------------------- /assets/vendors/summernote/src/styles/summernote-bs4.scss: -------------------------------------------------------------------------------- 1 | @import 'summernote-icons.css'; 2 | @import "elements.scss"; 3 | @import 'summernote-common.scss'; 4 | 5 | .note-toolbar .note-btn { 6 | background: #fff; 7 | border-color: #dae0e5; 8 | padding: 0.28rem 0.65rem; 9 | font-size: 13px; 10 | } 11 | -------------------------------------------------------------------------------- /assets/vendors/summernote/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "outDir": "./built", 4 | "allowJs": true, 5 | "sourceMap": true, 6 | "experimentalDecorators": true 7 | }, 8 | "include": [ 9 | "./src/**/*.js", 10 | "./src/**/*.ts" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /capture-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/capture-1.png -------------------------------------------------------------------------------- /capture-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/capture-2.png -------------------------------------------------------------------------------- /images/banner/7f835b7235cd45661cac8a6c3de3f000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/images/banner/7f835b7235cd45661cac8a6c3de3f000.jpg -------------------------------------------------------------------------------- /images/banner/f2ea03a2f9af29c035d12d14bcc0dc48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/images/banner/f2ea03a2f9af29c035d12d14bcc0dc48.jpg -------------------------------------------------------------------------------- /images/game/6d593e0b9fe86690a49fd1fd32d26983.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/images/game/6d593e0b9fe86690a49fd1fd32d26983.jpg -------------------------------------------------------------------------------- /images/game/a15512528a86ac45c1ee4c9c47e4cb3c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/images/game/a15512528a86ac45c1ee4c9c47e4cb3c.jpg -------------------------------------------------------------------------------- /images/game/anno.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/images/game/anno.jpg -------------------------------------------------------------------------------- /images/game/assasincreedorigins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/images/game/assasincreedorigins.jpg -------------------------------------------------------------------------------- /images/game/watchdogs2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/images/game/watchdogs2.jpg -------------------------------------------------------------------------------- /images/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/images/logo/logo.png -------------------------------------------------------------------------------- /images/payments/100286f87c59da115af072e0bc62af55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/images/payments/100286f87c59da115af072e0bc62af55.jpg -------------------------------------------------------------------------------- /images/payments/23c839ec129597ed7735de78e515120a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/images/payments/23c839ec129597ed7735de78e515120a.jpg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Online Games Store 2 | 3 | This project built with framework Codeigniter 3 and MySql 4 | 5 | Login with admin role: 6 | 7 | 8 | email: admin@gmail.com 9 | 10 | 11 | pass : admin 12 | 13 |  14 | 15 |  16 | -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /user_guide/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 6b49d1813643817be290c380a3028e52 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /user_guide/_downloads/ELDocs.tmbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_downloads/ELDocs.tmbundle.zip -------------------------------------------------------------------------------- /user_guide/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/comment-bright.png -------------------------------------------------------------------------------- /user_guide/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/comment-close.png -------------------------------------------------------------------------------- /user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/comment.png -------------------------------------------------------------------------------- /user_guide/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/down-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/down.png -------------------------------------------------------------------------------- /user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/file.png -------------------------------------------------------------------------------- /user_guide/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /user_guide/_static/images/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/images/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/minus.png -------------------------------------------------------------------------------- /user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/plus.png -------------------------------------------------------------------------------- /user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/_static/up.png -------------------------------------------------------------------------------- /user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegarpratama/online-games-store/83cc848c1bf8f44b1518951834856fd06aace310/user_guide/objects.inv --------------------------------------------------------------------------------