├── .github
└── FUNDING.yml
├── .htaccess
├── README.md
├── application
├── .htaccess
├── cache
│ ├── .htaccess
│ └── 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
│ ├── Home.php
│ ├── Loader.php
│ ├── Registration.php
│ └── index.html
├── core
│ ├── ADMIN_Controller.php
│ ├── HEAD_Controller.php
│ ├── MY_Controller.php
│ ├── MY_Loader.php
│ ├── MY_Router.php
│ ├── USER_Controller.php
│ └── index.html
├── helpers
│ ├── except_letters_helper.php
│ ├── full_document_number_helper.php
│ ├── get_client_ip_address_helper.php
│ ├── geterror_helper.php
│ ├── index.html
│ ├── lang_url_helper.php
│ ├── pagination_helper.php
│ ├── thisyeardates_helper.php
│ └── uploader_helper.php
├── hooks
│ └── index.html
├── index.html
├── language
│ ├── bulgarian
│ │ ├── db_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── index.html
│ │ ├── js
│ │ │ └── all.js
│ │ ├── pagination_lang.php
│ │ ├── profiler_lang.php
│ │ ├── public_lang.php
│ │ ├── titles_lang.php
│ │ ├── upload_lang.php
│ │ └── users_lang.php
│ ├── english
│ │ ├── db_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── index.html
│ │ ├── js
│ │ │ └── all.js
│ │ ├── pagination_lang.php
│ │ ├── profiler_lang.php
│ │ ├── public_lang.php
│ │ ├── titles_lang.php
│ │ ├── upload_lang.php
│ │ └── users_lang.php
│ ├── france
│ │ ├── db_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── index.html
│ │ ├── js
│ │ │ └── all.js
│ │ ├── pagination_lang.php
│ │ ├── profiler_lang.php
│ │ ├── public_lang.php
│ │ ├── titles_lang.php
│ │ ├── upload_lang.php
│ │ └── users_lang.php
│ └── index.html
├── libraries
│ ├── HtmlToPdf.php
│ ├── Language.php
│ ├── MailSend.php
│ ├── PHPExcel
│ │ ├── PHPExcel.php
│ │ └── PHPExcel
│ │ │ ├── Autoloader.php
│ │ │ ├── CachedObjectStorage
│ │ │ ├── APC.php
│ │ │ ├── CacheBase.php
│ │ │ ├── DiscISAM.php
│ │ │ ├── ICache.php
│ │ │ ├── Igbinary.php
│ │ │ ├── Memcache.php
│ │ │ ├── Memory.php
│ │ │ ├── MemoryGZip.php
│ │ │ ├── MemorySerialized.php
│ │ │ ├── PHPTemp.php
│ │ │ ├── SQLite.php
│ │ │ ├── SQLite3.php
│ │ │ └── Wincache.php
│ │ │ ├── CachedObjectStorageFactory.php
│ │ │ ├── CalcEngine
│ │ │ ├── CyclicReferenceStack.php
│ │ │ └── Logger.php
│ │ │ ├── Calculation.php
│ │ │ ├── Calculation
│ │ │ ├── Database.php
│ │ │ ├── DateTime.php
│ │ │ ├── Engineering.php
│ │ │ ├── Exception.php
│ │ │ ├── ExceptionHandler.php
│ │ │ ├── Financial.php
│ │ │ ├── FormulaParser.php
│ │ │ ├── FormulaToken.php
│ │ │ ├── Function.php
│ │ │ ├── Functions.php
│ │ │ ├── Logical.php
│ │ │ ├── LookupRef.php
│ │ │ ├── MathTrig.php
│ │ │ ├── Statistical.php
│ │ │ ├── TextData.php
│ │ │ ├── Token
│ │ │ │ └── Stack.php
│ │ │ └── functionlist.txt
│ │ │ ├── Cell.php
│ │ │ ├── Cell
│ │ │ ├── AdvancedValueBinder.php
│ │ │ ├── DataType.php
│ │ │ ├── DataValidation.php
│ │ │ ├── DefaultValueBinder.php
│ │ │ ├── Hyperlink.php
│ │ │ └── IValueBinder.php
│ │ │ ├── Chart.php
│ │ │ ├── Chart
│ │ │ ├── Axis.php
│ │ │ ├── DataSeries.php
│ │ │ ├── DataSeriesValues.php
│ │ │ ├── Exception.php
│ │ │ ├── GridLines.php
│ │ │ ├── Layout.php
│ │ │ ├── Legend.php
│ │ │ ├── PlotArea.php
│ │ │ ├── Properties.php
│ │ │ ├── Renderer
│ │ │ │ ├── PHP Charting Libraries.txt
│ │ │ │ └── jpgraph.php
│ │ │ └── Title.php
│ │ │ ├── Comment.php
│ │ │ ├── DocumentProperties.php
│ │ │ ├── DocumentSecurity.php
│ │ │ ├── Exception.php
│ │ │ ├── HashTable.php
│ │ │ ├── Helper
│ │ │ └── HTML.php
│ │ │ ├── IComparable.php
│ │ │ ├── IOFactory.php
│ │ │ ├── NamedRange.php
│ │ │ ├── Reader
│ │ │ ├── Abstract.php
│ │ │ ├── CSV.php
│ │ │ ├── DefaultReadFilter.php
│ │ │ ├── Excel2003XML.php
│ │ │ ├── Excel2007.php
│ │ │ ├── Excel2007
│ │ │ │ ├── Chart.php
│ │ │ │ └── Theme.php
│ │ │ ├── Excel5.php
│ │ │ ├── Excel5
│ │ │ │ ├── Color.php
│ │ │ │ ├── Color
│ │ │ │ │ ├── BIFF5.php
│ │ │ │ │ ├── BIFF8.php
│ │ │ │ │ └── BuiltIn.php
│ │ │ │ ├── ErrorCode.php
│ │ │ │ ├── Escher.php
│ │ │ │ ├── MD5.php
│ │ │ │ ├── RC4.php
│ │ │ │ └── Style
│ │ │ │ │ ├── Border.php
│ │ │ │ │ └── FillPattern.php
│ │ │ ├── Exception.php
│ │ │ ├── Gnumeric.php
│ │ │ ├── HTML.php
│ │ │ ├── IReadFilter.php
│ │ │ ├── IReader.php
│ │ │ ├── OOCalc.php
│ │ │ └── SYLK.php
│ │ │ ├── ReferenceHelper.php
│ │ │ ├── RichText.php
│ │ │ ├── RichText
│ │ │ ├── ITextElement.php
│ │ │ ├── Run.php
│ │ │ └── TextElement.php
│ │ │ ├── Settings.php
│ │ │ ├── Shared
│ │ │ ├── CodePage.php
│ │ │ ├── Date.php
│ │ │ ├── Drawing.php
│ │ │ ├── Escher.php
│ │ │ ├── Escher
│ │ │ │ ├── DgContainer.php
│ │ │ │ ├── DgContainer
│ │ │ │ │ ├── SpgrContainer.php
│ │ │ │ │ └── SpgrContainer
│ │ │ │ │ │ └── SpContainer.php
│ │ │ │ ├── DggContainer.php
│ │ │ │ └── DggContainer
│ │ │ │ │ ├── BstoreContainer.php
│ │ │ │ │ └── BstoreContainer
│ │ │ │ │ ├── BSE.php
│ │ │ │ │ └── BSE
│ │ │ │ │ └── Blip.php
│ │ │ ├── Excel5.php
│ │ │ ├── File.php
│ │ │ ├── Font.php
│ │ │ ├── JAMA
│ │ │ │ ├── CHANGELOG.TXT
│ │ │ │ ├── CholeskyDecomposition.php
│ │ │ │ ├── EigenvalueDecomposition.php
│ │ │ │ ├── LUDecomposition.php
│ │ │ │ ├── Matrix.php
│ │ │ │ ├── QRDecomposition.php
│ │ │ │ ├── SingularValueDecomposition.php
│ │ │ │ └── utils
│ │ │ │ │ ├── Error.php
│ │ │ │ │ └── Maths.php
│ │ │ ├── OLE.php
│ │ │ ├── OLE
│ │ │ │ ├── ChainedBlockStream.php
│ │ │ │ ├── PPS.php
│ │ │ │ └── PPS
│ │ │ │ │ ├── File.php
│ │ │ │ │ └── Root.php
│ │ │ ├── OLERead.php
│ │ │ ├── PCLZip
│ │ │ │ ├── gnu-lgpl.txt
│ │ │ │ ├── pclzip.lib.php
│ │ │ │ └── readme.txt
│ │ │ ├── PasswordHasher.php
│ │ │ ├── String.php
│ │ │ ├── TimeZone.php
│ │ │ ├── XMLWriter.php
│ │ │ ├── ZipArchive.php
│ │ │ ├── ZipStreamWrapper.php
│ │ │ └── trend
│ │ │ │ ├── bestFitClass.php
│ │ │ │ ├── exponentialBestFitClass.php
│ │ │ │ ├── linearBestFitClass.php
│ │ │ │ ├── logarithmicBestFitClass.php
│ │ │ │ ├── polynomialBestFitClass.php
│ │ │ │ ├── powerBestFitClass.php
│ │ │ │ └── trendClass.php
│ │ │ ├── Style.php
│ │ │ ├── Style
│ │ │ ├── Alignment.php
│ │ │ ├── Border.php
│ │ │ ├── Borders.php
│ │ │ ├── Color.php
│ │ │ ├── Conditional.php
│ │ │ ├── Fill.php
│ │ │ ├── Font.php
│ │ │ ├── NumberFormat.php
│ │ │ ├── Protection.php
│ │ │ └── Supervisor.php
│ │ │ ├── Worksheet.php
│ │ │ ├── Worksheet
│ │ │ ├── AutoFilter.php
│ │ │ ├── AutoFilter
│ │ │ │ ├── Column.php
│ │ │ │ └── Column
│ │ │ │ │ └── Rule.php
│ │ │ ├── BaseDrawing.php
│ │ │ ├── CellIterator.php
│ │ │ ├── Column.php
│ │ │ ├── ColumnCellIterator.php
│ │ │ ├── ColumnDimension.php
│ │ │ ├── ColumnIterator.php
│ │ │ ├── Dimension.php
│ │ │ ├── Drawing.php
│ │ │ ├── Drawing
│ │ │ │ └── Shadow.php
│ │ │ ├── HeaderFooter.php
│ │ │ ├── HeaderFooterDrawing.php
│ │ │ ├── MemoryDrawing.php
│ │ │ ├── PageMargins.php
│ │ │ ├── PageSetup.php
│ │ │ ├── Protection.php
│ │ │ ├── Row.php
│ │ │ ├── RowCellIterator.php
│ │ │ ├── RowDimension.php
│ │ │ ├── RowIterator.php
│ │ │ └── SheetView.php
│ │ │ ├── WorksheetIterator.php
│ │ │ ├── Writer
│ │ │ ├── Abstract.php
│ │ │ ├── CSV.php
│ │ │ ├── Excel2007.php
│ │ │ ├── Excel2007
│ │ │ │ ├── Chart.php
│ │ │ │ ├── Comments.php
│ │ │ │ ├── ContentTypes.php
│ │ │ │ ├── DocProps.php
│ │ │ │ ├── Drawing.php
│ │ │ │ ├── Rels.php
│ │ │ │ ├── RelsRibbon.php
│ │ │ │ ├── RelsVBA.php
│ │ │ │ ├── StringTable.php
│ │ │ │ ├── Style.php
│ │ │ │ ├── Theme.php
│ │ │ │ ├── Workbook.php
│ │ │ │ ├── Worksheet.php
│ │ │ │ └── WriterPart.php
│ │ │ ├── Excel5.php
│ │ │ ├── Excel5
│ │ │ │ ├── BIFFwriter.php
│ │ │ │ ├── Escher.php
│ │ │ │ ├── Font.php
│ │ │ │ ├── Parser.php
│ │ │ │ ├── Workbook.php
│ │ │ │ ├── Worksheet.php
│ │ │ │ └── Xf.php
│ │ │ ├── Exception.php
│ │ │ ├── HTML.php
│ │ │ ├── IWriter.php
│ │ │ ├── OpenDocument.php
│ │ │ ├── OpenDocument
│ │ │ │ ├── Cell
│ │ │ │ │ └── Comment.php
│ │ │ │ ├── Content.php
│ │ │ │ ├── Meta.php
│ │ │ │ ├── MetaInf.php
│ │ │ │ ├── Mimetype.php
│ │ │ │ ├── Settings.php
│ │ │ │ ├── Styles.php
│ │ │ │ ├── Thumbnails.php
│ │ │ │ └── WriterPart.php
│ │ │ ├── PDF.php
│ │ │ └── PDF
│ │ │ │ ├── Core.php
│ │ │ │ ├── DomPDF.php
│ │ │ │ ├── mPDF.php
│ │ │ │ └── tcPDF.php
│ │ │ └── locale
│ │ │ ├── bg
│ │ │ └── config
│ │ │ ├── cs
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── da
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── de
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── en
│ │ │ └── uk
│ │ │ │ └── config
│ │ │ ├── es
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── fi
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── fr
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── hu
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── it
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── nl
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── no
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── pl
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── pt
│ │ │ ├── br
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── ru
│ │ │ ├── config
│ │ │ └── functions
│ │ │ ├── sv
│ │ │ ├── config
│ │ │ └── functions
│ │ │ └── tr
│ │ │ ├── config
│ │ │ └── functions
│ ├── PHPMailer
│ │ ├── LICENSE
│ │ ├── PHPMailerAutoload.php
│ │ ├── VERSION
│ │ ├── class.phpmailer.php
│ │ ├── class.phpmaileroauth.php
│ │ ├── class.phpmaileroauthgoogle.php
│ │ ├── class.pop3.php
│ │ ├── class.smtp.php
│ │ ├── composer.json
│ │ ├── composer.lock
│ │ ├── examples
│ │ │ ├── DKIM.phps
│ │ │ ├── code_generator.phps
│ │ │ ├── contactform.phps
│ │ │ ├── contents.html
│ │ │ ├── contentsutf8.html
│ │ │ ├── exceptions.phps
│ │ │ ├── gmail.phps
│ │ │ ├── gmail_xoauth.phps
│ │ │ ├── images
│ │ │ │ ├── phpmailer.png
│ │ │ │ └── phpmailer_mini.png
│ │ │ ├── index.html
│ │ │ ├── mail.phps
│ │ │ ├── mailing_list.phps
│ │ │ ├── pop_before_smtp.phps
│ │ │ ├── scripts
│ │ │ │ ├── XRegExp.js
│ │ │ │ ├── shAutoloader.js
│ │ │ │ ├── shBrushPhp.js
│ │ │ │ ├── shCore.js
│ │ │ │ └── shLegacy.js
│ │ │ ├── send_file_upload.phps
│ │ │ ├── send_multiple_file_upload.phps
│ │ │ ├── sendmail.phps
│ │ │ ├── signed-mail.phps
│ │ │ ├── smtp.phps
│ │ │ ├── smtp_check.phps
│ │ │ ├── smtp_no_auth.phps
│ │ │ ├── ssl_options.phps
│ │ │ └── styles
│ │ │ │ ├── shCore.css
│ │ │ │ ├── shCoreDefault.css
│ │ │ │ ├── shCoreDjango.css
│ │ │ │ ├── shCoreEclipse.css
│ │ │ │ ├── shCoreEmacs.css
│ │ │ │ ├── shCoreFadeToGrey.css
│ │ │ │ ├── shCoreMDUltra.css
│ │ │ │ ├── shCoreMidnight.css
│ │ │ │ ├── shCoreRDark.css
│ │ │ │ ├── shThemeAppleScript.css
│ │ │ │ ├── shThemeDefault.css
│ │ │ │ ├── shThemeDjango.css
│ │ │ │ ├── shThemeEclipse.css
│ │ │ │ ├── shThemeEmacs.css
│ │ │ │ ├── shThemeFadeToGrey.css
│ │ │ │ ├── shThemeMDUltra.css
│ │ │ │ ├── shThemeMidnight.css
│ │ │ │ ├── shThemeRDark.css
│ │ │ │ ├── shThemeVisualStudio.css
│ │ │ │ └── wrapping.png
│ │ ├── extras
│ │ │ ├── EasyPeasyICS.php
│ │ │ ├── README.md
│ │ │ ├── htmlfilter.php
│ │ │ └── ntlm_sasl_client.php
│ │ ├── get_oauth_token.php
│ │ └── language
│ │ │ ├── phpmailer.lang-am.php
│ │ │ ├── phpmailer.lang-ar.php
│ │ │ ├── phpmailer.lang-az.php
│ │ │ ├── phpmailer.lang-be.php
│ │ │ ├── phpmailer.lang-bg.php
│ │ │ ├── phpmailer.lang-ca.php
│ │ │ ├── phpmailer.lang-ch.php
│ │ │ ├── phpmailer.lang-cs.php
│ │ │ ├── phpmailer.lang-da.php
│ │ │ ├── phpmailer.lang-de.php
│ │ │ ├── phpmailer.lang-el.php
│ │ │ ├── phpmailer.lang-eo.php
│ │ │ ├── phpmailer.lang-es.php
│ │ │ ├── phpmailer.lang-et.php
│ │ │ ├── phpmailer.lang-fa.php
│ │ │ ├── phpmailer.lang-fi.php
│ │ │ ├── phpmailer.lang-fo.php
│ │ │ ├── phpmailer.lang-fr.php
│ │ │ ├── phpmailer.lang-gl.php
│ │ │ ├── phpmailer.lang-he.php
│ │ │ ├── phpmailer.lang-hr.php
│ │ │ ├── phpmailer.lang-hu.php
│ │ │ ├── phpmailer.lang-id.php
│ │ │ ├── phpmailer.lang-it.php
│ │ │ ├── phpmailer.lang-ja.php
│ │ │ ├── phpmailer.lang-ka.php
│ │ │ ├── phpmailer.lang-ko.php
│ │ │ ├── phpmailer.lang-lt.php
│ │ │ ├── phpmailer.lang-lv.php
│ │ │ ├── phpmailer.lang-ms.php
│ │ │ ├── phpmailer.lang-nb.php
│ │ │ ├── phpmailer.lang-nl.php
│ │ │ ├── phpmailer.lang-pl.php
│ │ │ ├── phpmailer.lang-pt.php
│ │ │ ├── phpmailer.lang-pt_br.php
│ │ │ ├── phpmailer.lang-ro.php
│ │ │ ├── phpmailer.lang-rs.php
│ │ │ ├── phpmailer.lang-ru.php
│ │ │ ├── phpmailer.lang-sk.php
│ │ │ ├── phpmailer.lang-sl.php
│ │ │ ├── phpmailer.lang-sv.php
│ │ │ ├── phpmailer.lang-tr.php
│ │ │ ├── phpmailer.lang-uk.php
│ │ │ ├── phpmailer.lang-vi.php
│ │ │ ├── phpmailer.lang-zh.php
│ │ │ └── phpmailer.lang-zh_cn.php
│ ├── Permissions.php
│ ├── Plans.php
│ ├── dompdf
│ │ ├── .travis.yml
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE.LGPL
│ │ ├── README.md
│ │ ├── VERSION
│ │ ├── autoload.inc.php
│ │ ├── composer.json
│ │ ├── lib
│ │ │ ├── Cpdf.php
│ │ │ ├── fonts
│ │ │ │ ├── DejaVuSans-Bold.ttf
│ │ │ │ ├── DejaVuSans-Bold.ufm
│ │ │ │ ├── DejaVuSans-Bold.ufm.php
│ │ │ │ ├── DejaVuSans-BoldOblique.ttf
│ │ │ │ ├── DejaVuSans-BoldOblique.ufm
│ │ │ │ ├── DejaVuSans-Oblique.ttf
│ │ │ │ ├── DejaVuSans-Oblique.ufm
│ │ │ │ ├── DejaVuSans.ttf
│ │ │ │ ├── DejaVuSans.ufm
│ │ │ │ ├── DejaVuSans.ufm.php
│ │ │ │ ├── DejaVuSansMono-Bold.ttf
│ │ │ │ ├── DejaVuSansMono-Bold.ufm
│ │ │ │ ├── DejaVuSansMono-BoldOblique.ttf
│ │ │ │ ├── DejaVuSansMono-BoldOblique.ufm
│ │ │ │ ├── DejaVuSansMono-Oblique.ttf
│ │ │ │ ├── DejaVuSansMono-Oblique.ufm
│ │ │ │ ├── DejaVuSansMono.ttf
│ │ │ │ ├── DejaVuSansMono.ufm
│ │ │ │ ├── DejaVuSerif-Bold.ttf
│ │ │ │ ├── DejaVuSerif-Bold.ufm
│ │ │ │ ├── DejaVuSerif-BoldItalic.ttf
│ │ │ │ ├── DejaVuSerif-BoldItalic.ufm
│ │ │ │ ├── DejaVuSerif-Italic.ttf
│ │ │ │ ├── DejaVuSerif-Italic.ufm
│ │ │ │ ├── DejaVuSerif.ttf
│ │ │ │ ├── DejaVuSerif.ufm
│ │ │ │ ├── dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ttf
│ │ │ │ ├── dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ufm
│ │ │ │ ├── dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ufm.php
│ │ │ │ ├── dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ttf
│ │ │ │ ├── dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ufm
│ │ │ │ ├── dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ufm.php
│ │ │ │ ├── dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ttf
│ │ │ │ ├── dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ufm
│ │ │ │ ├── dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ufm.php
│ │ │ │ ├── dompdf_font_family_cache.dist.php
│ │ │ │ ├── dompdf_font_family_cache.php
│ │ │ │ └── mustRead.html
│ │ │ ├── html5lib
│ │ │ │ ├── Data.php
│ │ │ │ ├── InputStream.php
│ │ │ │ ├── Parser.php
│ │ │ │ ├── Tokenizer.php
│ │ │ │ ├── TreeBuilder.php
│ │ │ │ └── named-character-references.ser
│ │ │ ├── php-css-parser
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ │ ├── CSSList
│ │ │ │ │ ├── AtRuleBlockList.php
│ │ │ │ │ ├── CSSBlockList.php
│ │ │ │ │ ├── CSSList.php
│ │ │ │ │ ├── Document.php
│ │ │ │ │ └── KeyFrame.php
│ │ │ │ │ ├── Comment
│ │ │ │ │ ├── Comment.php
│ │ │ │ │ └── Commentable.php
│ │ │ │ │ ├── OutputFormat.php
│ │ │ │ │ ├── OutputFormatter.php
│ │ │ │ │ ├── Parser.php
│ │ │ │ │ ├── Parsing
│ │ │ │ │ ├── OutputException.php
│ │ │ │ │ ├── ParserState.php
│ │ │ │ │ ├── SourceException.php
│ │ │ │ │ ├── UnexpectedEOFException.php
│ │ │ │ │ └── UnexpectedTokenException.php
│ │ │ │ │ ├── Property
│ │ │ │ │ ├── AtRule.php
│ │ │ │ │ ├── CSSNamespace.php
│ │ │ │ │ ├── Charset.php
│ │ │ │ │ ├── Import.php
│ │ │ │ │ ├── KeyframeSelector.php
│ │ │ │ │ └── Selector.php
│ │ │ │ │ ├── Renderable.php
│ │ │ │ │ ├── Rule
│ │ │ │ │ └── Rule.php
│ │ │ │ │ ├── RuleSet
│ │ │ │ │ ├── AtRuleSet.php
│ │ │ │ │ ├── DeclarationBlock.php
│ │ │ │ │ └── RuleSet.php
│ │ │ │ │ ├── Settings.php
│ │ │ │ │ └── Value
│ │ │ │ │ ├── CSSFunction.php
│ │ │ │ │ ├── CSSString.php
│ │ │ │ │ ├── CalcFunction.php
│ │ │ │ │ ├── CalcRuleValueList.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── LineName.php
│ │ │ │ │ ├── PrimitiveValue.php
│ │ │ │ │ ├── RuleValueList.php
│ │ │ │ │ ├── Size.php
│ │ │ │ │ ├── URL.php
│ │ │ │ │ ├── Value.php
│ │ │ │ │ └── ValueList.php
│ │ │ ├── php-font-lib
│ │ │ │ ├── .htaccess
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── bower.json
│ │ │ │ ├── composer.json
│ │ │ │ ├── index.php
│ │ │ │ ├── maps
│ │ │ │ │ ├── adobe-standard-encoding.map
│ │ │ │ │ ├── cp1250.map
│ │ │ │ │ ├── cp1251.map
│ │ │ │ │ ├── cp1252.map
│ │ │ │ │ ├── cp1253.map
│ │ │ │ │ ├── cp1254.map
│ │ │ │ │ ├── cp1255.map
│ │ │ │ │ ├── cp1257.map
│ │ │ │ │ ├── cp1258.map
│ │ │ │ │ ├── cp874.map
│ │ │ │ │ ├── iso-8859-1.map
│ │ │ │ │ ├── iso-8859-11.map
│ │ │ │ │ ├── iso-8859-15.map
│ │ │ │ │ ├── iso-8859-16.map
│ │ │ │ │ ├── iso-8859-2.map
│ │ │ │ │ ├── iso-8859-4.map
│ │ │ │ │ ├── iso-8859-5.map
│ │ │ │ │ ├── iso-8859-7.map
│ │ │ │ │ ├── iso-8859-9.map
│ │ │ │ │ ├── koi8-r.map
│ │ │ │ │ └── koi8-u.map
│ │ │ │ └── src
│ │ │ │ │ └── FontLib
│ │ │ │ │ ├── AdobeFontMetrics.php
│ │ │ │ │ ├── Autoloader.php
│ │ │ │ │ ├── BinaryStream.php
│ │ │ │ │ ├── EOT
│ │ │ │ │ ├── File.php
│ │ │ │ │ └── Header.php
│ │ │ │ │ ├── EncodingMap.php
│ │ │ │ │ ├── Exception
│ │ │ │ │ └── FontNotFoundException.php
│ │ │ │ │ ├── Font.php
│ │ │ │ │ ├── Glyph
│ │ │ │ │ ├── Outline.php
│ │ │ │ │ ├── OutlineComponent.php
│ │ │ │ │ ├── OutlineComposite.php
│ │ │ │ │ └── OutlineSimple.php
│ │ │ │ │ ├── Header.php
│ │ │ │ │ ├── OpenType
│ │ │ │ │ ├── File.php
│ │ │ │ │ └── TableDirectoryEntry.php
│ │ │ │ │ ├── Table
│ │ │ │ │ ├── DirectoryEntry.php
│ │ │ │ │ ├── Table.php
│ │ │ │ │ └── Type
│ │ │ │ │ │ ├── cmap.php
│ │ │ │ │ │ ├── glyf.php
│ │ │ │ │ │ ├── head.php
│ │ │ │ │ │ ├── hhea.php
│ │ │ │ │ │ ├── hmtx.php
│ │ │ │ │ │ ├── kern.php
│ │ │ │ │ │ ├── loca.php
│ │ │ │ │ │ ├── maxp.php
│ │ │ │ │ │ ├── name.php
│ │ │ │ │ │ ├── nameRecord.php
│ │ │ │ │ │ ├── os2.php
│ │ │ │ │ │ └── post.php
│ │ │ │ │ ├── TrueType
│ │ │ │ │ ├── Collection.php
│ │ │ │ │ ├── File.php
│ │ │ │ │ ├── Header.php
│ │ │ │ │ └── TableDirectoryEntry.php
│ │ │ │ │ └── WOFF
│ │ │ │ │ ├── File.php
│ │ │ │ │ ├── Header.php
│ │ │ │ │ └── TableDirectoryEntry.php
│ │ │ ├── php-svg-lib
│ │ │ │ ├── COPYING
│ │ │ │ ├── COPYING.GPL
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ │ ├── Svg
│ │ │ │ │ ├── DefaultStyle.php
│ │ │ │ │ ├── Document.php
│ │ │ │ │ ├── Gradient
│ │ │ │ │ │ └── Stop.php
│ │ │ │ │ ├── Style.php
│ │ │ │ │ ├── Surface
│ │ │ │ │ │ ├── CPdf.php
│ │ │ │ │ │ ├── SurfaceCpdf.php
│ │ │ │ │ │ ├── SurfaceGmagick.php
│ │ │ │ │ │ ├── SurfaceInterface.php
│ │ │ │ │ │ └── SurfacePDFLib.php
│ │ │ │ │ └── Tag
│ │ │ │ │ │ ├── AbstractTag.php
│ │ │ │ │ │ ├── Anchor.php
│ │ │ │ │ │ ├── Circle.php
│ │ │ │ │ │ ├── ClipPath.php
│ │ │ │ │ │ ├── Ellipse.php
│ │ │ │ │ │ ├── Group.php
│ │ │ │ │ │ ├── Image.php
│ │ │ │ │ │ ├── Line.php
│ │ │ │ │ │ ├── LinearGradient.php
│ │ │ │ │ │ ├── Path.php
│ │ │ │ │ │ ├── Polygon.php
│ │ │ │ │ │ ├── Polyline.php
│ │ │ │ │ │ ├── RadialGradient.php
│ │ │ │ │ │ ├── Rect.php
│ │ │ │ │ │ ├── Shape.php
│ │ │ │ │ │ ├── Stop.php
│ │ │ │ │ │ ├── StyleTag.php
│ │ │ │ │ │ ├── Text.php
│ │ │ │ │ │ └── UseTag.php
│ │ │ │ │ └── autoload.php
│ │ │ └── res
│ │ │ │ ├── broken_image.png
│ │ │ │ ├── broken_image.svg
│ │ │ │ └── html.css
│ │ ├── phpcs.xml
│ │ ├── phpunit.xml.dist
│ │ └── src
│ │ │ ├── Adapter
│ │ │ ├── CPDF.php
│ │ │ ├── GD.php
│ │ │ └── PDFLib.php
│ │ │ ├── Autoloader.php
│ │ │ ├── Canvas.php
│ │ │ ├── CanvasFactory.php
│ │ │ ├── Cellmap.php
│ │ │ ├── Css
│ │ │ ├── AttributeTranslator.php
│ │ │ ├── Color.php
│ │ │ ├── Style.php
│ │ │ └── Stylesheet.php
│ │ │ ├── Dompdf.php
│ │ │ ├── Exception.php
│ │ │ ├── Exception
│ │ │ └── ImageException.php
│ │ │ ├── FontMetrics.php
│ │ │ ├── Frame.php
│ │ │ ├── Frame
│ │ │ ├── Factory.php
│ │ │ ├── FrameList.php
│ │ │ ├── FrameListIterator.php
│ │ │ ├── FrameTree.php
│ │ │ ├── FrameTreeIterator.php
│ │ │ └── FrameTreeList.php
│ │ │ ├── FrameDecorator
│ │ │ ├── AbstractFrameDecorator.php
│ │ │ ├── Block.php
│ │ │ ├── Image.php
│ │ │ ├── Inline.php
│ │ │ ├── ListBullet.php
│ │ │ ├── ListBulletImage.php
│ │ │ ├── NullFrameDecorator.php
│ │ │ ├── Page.php
│ │ │ ├── Table.php
│ │ │ ├── TableCell.php
│ │ │ ├── TableRow.php
│ │ │ ├── TableRowGroup.php
│ │ │ └── Text.php
│ │ │ ├── FrameReflower
│ │ │ ├── AbstractFrameReflower.php
│ │ │ ├── Block.php
│ │ │ ├── Image.php
│ │ │ ├── Inline.php
│ │ │ ├── ListBullet.php
│ │ │ ├── NullFrameReflower.php
│ │ │ ├── Page.php
│ │ │ ├── Table.php
│ │ │ ├── TableCell.php
│ │ │ ├── TableRow.php
│ │ │ ├── TableRowGroup.php
│ │ │ └── Text.php
│ │ │ ├── Helpers.php
│ │ │ ├── Image
│ │ │ └── Cache.php
│ │ │ ├── JavascriptEmbedder.php
│ │ │ ├── LineBox.php
│ │ │ ├── Options.php
│ │ │ ├── PhpEvaluator.php
│ │ │ ├── Positioner
│ │ │ ├── Absolute.php
│ │ │ ├── AbstractPositioner.php
│ │ │ ├── Block.php
│ │ │ ├── Fixed.php
│ │ │ ├── Inline.php
│ │ │ ├── ListBullet.php
│ │ │ ├── NullPositioner.php
│ │ │ ├── TableCell.php
│ │ │ └── TableRow.php
│ │ │ ├── Renderer.php
│ │ │ └── Renderer
│ │ │ ├── AbstractRenderer.php
│ │ │ ├── Block.php
│ │ │ ├── Image.php
│ │ │ ├── Inline.php
│ │ │ ├── ListBullet.php
│ │ │ ├── TableCell.php
│ │ │ ├── TableRowGroup.php
│ │ │ └── Text.php
│ ├── exporters
│ │ ├── ExcelExport.php
│ │ └── XmlExport.php
│ ├── importers
│ │ └── UniversalXmlImport.php
│ └── index.html
├── logs
│ ├── log-2017-07-13.php
│ ├── log-2017-07-14.php
│ ├── log-2017-07-24.php
│ ├── log-2017-07-25.php
│ ├── log-2017-07-26.php
│ ├── log-2017-07-27.php
│ ├── log-2017-07-28.php
│ ├── log-2017-07-31.php
│ ├── log-2017-08-01.php
│ ├── log-2017-08-02.php
│ ├── log-2017-08-03.php
│ ├── log-2017-08-04.php
│ ├── log-2017-08-21.php
│ ├── log-2017-08-22.php
│ ├── log-2017-08-23.php
│ ├── log-2017-08-24.php
│ ├── log-2017-08-25.php
│ ├── log-2017-08-28.php
│ ├── log-2017-08-29.php
│ ├── log-2017-08-30.php
│ ├── log-2017-08-31.php
│ ├── log-2017-09-01.php
│ ├── log-2017-09-04.php
│ ├── log-2017-09-05.php
│ ├── log-2017-09-07.php
│ ├── log-2017-09-08.php
│ ├── log-2017-09-11.php
│ ├── log-2017-09-12.php
│ └── log-2017-09-13.php
├── models
│ ├── PublicModel.php
│ └── index.html
├── modules
│ ├── admin
│ │ ├── controllers
│ │ │ ├── home
│ │ │ │ ├── Home.php
│ │ │ │ └── Login.php
│ │ │ └── plans
│ │ │ │ └── Requests.php
│ │ ├── models
│ │ │ ├── GeneralAdminModel.php
│ │ │ ├── HomeModel.php
│ │ │ ├── LanguagesModel.php
│ │ │ └── RequestsModel.php
│ │ └── views
│ │ │ ├── home
│ │ │ ├── index.php
│ │ │ └── login.php
│ │ │ ├── parts
│ │ │ ├── general
│ │ │ │ ├── footer.php
│ │ │ │ └── header.php
│ │ │ └── login
│ │ │ │ ├── footer.php
│ │ │ │ └── header.php
│ │ │ └── plans
│ │ │ ├── individual_plan_requests.php
│ │ │ └── requests.php
│ └── users
│ │ ├── controllers
│ │ ├── clients
│ │ │ └── Clients.php
│ │ ├── home
│ │ │ └── Home.php
│ │ ├── import_export
│ │ │ └── ImportExport.php
│ │ ├── invoices
│ │ │ ├── Invoices.php
│ │ │ ├── Invoiceview.php
│ │ │ └── Newinvoice.php
│ │ ├── items
│ │ │ └── Items.php
│ │ ├── managefirms
│ │ │ └── Managefirms.php
│ │ ├── plans
│ │ │ └── PlansUsers.php
│ │ ├── protocols
│ │ │ ├── Protocols.php
│ │ │ └── Protocolview.php
│ │ ├── reports
│ │ │ └── Reports.php
│ │ ├── settings
│ │ │ ├── Admin.php
│ │ │ ├── Employees.php
│ │ │ ├── GlobalSettings.php
│ │ │ ├── Invoices.php
│ │ │ ├── Protocols.php
│ │ │ ├── Settings.php
│ │ │ ├── Stores.php
│ │ │ └── Warranty.php
│ │ ├── store
│ │ │ ├── Movementview.php
│ │ │ └── Store.php
│ │ └── warranty
│ │ │ ├── Events.php
│ │ │ ├── Warranty.php
│ │ │ └── Warrantyview.php
│ │ ├── models
│ │ ├── ClientsModel.php
│ │ ├── HomeModel.php
│ │ ├── ImportExportModel.php
│ │ ├── InvoicesModel.php
│ │ ├── ItemsModel.php
│ │ ├── ManagefirmsModel.php
│ │ ├── NewInvoiceModel.php
│ │ ├── PlansModel.php
│ │ ├── ProtocolsModel.php
│ │ ├── ReportsModel.php
│ │ ├── SettingsModel.php
│ │ ├── StoreModel.php
│ │ └── WarrantyCardModel.php
│ │ └── views
│ │ ├── clients
│ │ ├── addclient.php
│ │ ├── index.php
│ │ └── viewclient.php
│ │ ├── home
│ │ ├── index.php
│ │ ├── noSearchResultsHtml.php
│ │ └── searchResultsHtml.php
│ │ ├── import_export
│ │ └── index.php
│ │ ├── invoices
│ │ ├── index.php
│ │ ├── itemTableTr.php
│ │ ├── listSelectorHtml.php
│ │ ├── modals
│ │ │ ├── add_payment_method.php
│ │ │ ├── add_quantity_type.php
│ │ │ └── selector.php
│ │ ├── newinvoice.php
│ │ ├── templates
│ │ │ ├── creative.php
│ │ │ └── toner-save.php
│ │ └── view.php
│ │ ├── items
│ │ ├── additem.php
│ │ ├── index.php
│ │ └── viewitem.php
│ │ ├── managefirms
│ │ ├── edit.php
│ │ └── index.php
│ │ ├── parts
│ │ ├── footer.php
│ │ └── header.php
│ │ ├── plans
│ │ ├── index.php
│ │ ├── period.php
│ │ └── request.php
│ │ ├── protocols
│ │ ├── addprotocol.php
│ │ ├── index.php
│ │ ├── itemTableTr.php
│ │ └── templates
│ │ │ └── default.php
│ │ ├── reports
│ │ ├── index.php
│ │ └── reportNumInvoices.php
│ │ ├── settings
│ │ ├── addEmployee.php
│ │ ├── admin.php
│ │ ├── employeeRights.php
│ │ ├── employees.php
│ │ ├── global.php
│ │ ├── index.php
│ │ ├── invoices.php
│ │ ├── protocols.php
│ │ ├── stores.php
│ │ └── warranty.php
│ │ ├── store
│ │ ├── addmovement.php
│ │ ├── index.php
│ │ ├── itemTableTr.php
│ │ ├── preview.php
│ │ ├── stocks.php
│ │ └── templates
│ │ │ └── default.php
│ │ └── warranty
│ │ ├── add_event.php
│ │ ├── addwarranty.php
│ │ ├── events.php
│ │ ├── index.php
│ │ ├── itemTableTr.php
│ │ └── templates
│ │ └── default.php
├── third_party
│ ├── MX
│ │ ├── Base.php
│ │ ├── Ci.php
│ │ ├── Config.php
│ │ ├── Controller.php
│ │ ├── Lang.php
│ │ ├── Loader.php
│ │ ├── Modules.php
│ │ └── Router.php
│ └── 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
│ ├── home
│ └── index.php
│ ├── index.html
│ ├── invoices_parts
│ ├── footer.php
│ └── invoice_accept.php
│ ├── parts
│ ├── footer.php
│ ├── header.php
│ └── invaccept
│ │ ├── footer.php
│ │ └── header.php
│ └── registration
│ ├── choosetype.php
│ ├── forgotten.php
│ ├── index.php
│ └── login.php
├── assets
├── admin
│ ├── css
│ │ ├── general.css
│ │ └── login.css
│ └── js
│ │ └── general.js
├── animate.min.css
├── bootstrap-datepicker-1.6.4-dist
│ ├── css
│ │ ├── bootstrap-datepicker.css
│ │ ├── bootstrap-datepicker.css.map
│ │ ├── bootstrap-datepicker.min.css
│ │ ├── bootstrap-datepicker.min.css.map
│ │ ├── bootstrap-datepicker.standalone.css
│ │ ├── bootstrap-datepicker.standalone.css.map
│ │ ├── bootstrap-datepicker.standalone.min.css
│ │ ├── bootstrap-datepicker.standalone.min.css.map
│ │ ├── bootstrap-datepicker3.css
│ │ ├── bootstrap-datepicker3.css.map
│ │ ├── bootstrap-datepicker3.min.css
│ │ ├── bootstrap-datepicker3.min.css.map
│ │ ├── bootstrap-datepicker3.standalone.css
│ │ ├── bootstrap-datepicker3.standalone.css.map
│ │ ├── bootstrap-datepicker3.standalone.min.css
│ │ └── bootstrap-datepicker3.standalone.min.css.map
│ ├── js
│ │ └── bootstrap-datepicker.min.js
│ └── locales
│ │ ├── bootstrap-datepicker.ar.min.js
│ │ ├── bootstrap-datepicker.az.min.js
│ │ ├── bootstrap-datepicker.bg.min.js
│ │ ├── bootstrap-datepicker.bs.min.js
│ │ ├── bootstrap-datepicker.ca.min.js
│ │ ├── bootstrap-datepicker.cs.min.js
│ │ ├── bootstrap-datepicker.cy.min.js
│ │ ├── bootstrap-datepicker.da.min.js
│ │ ├── bootstrap-datepicker.de.min.js
│ │ ├── bootstrap-datepicker.el.min.js
│ │ ├── bootstrap-datepicker.en-AU.min.js
│ │ ├── bootstrap-datepicker.en-GB.min.js
│ │ ├── bootstrap-datepicker.eo.min.js
│ │ ├── bootstrap-datepicker.es.min.js
│ │ ├── bootstrap-datepicker.et.min.js
│ │ ├── bootstrap-datepicker.eu.min.js
│ │ ├── bootstrap-datepicker.fa.min.js
│ │ ├── bootstrap-datepicker.fi.min.js
│ │ ├── bootstrap-datepicker.fo.min.js
│ │ ├── bootstrap-datepicker.fr-CH.min.js
│ │ ├── bootstrap-datepicker.fr.min.js
│ │ ├── bootstrap-datepicker.gl.min.js
│ │ ├── bootstrap-datepicker.he.min.js
│ │ ├── bootstrap-datepicker.hr.min.js
│ │ ├── bootstrap-datepicker.hu.min.js
│ │ ├── bootstrap-datepicker.hy.min.js
│ │ ├── bootstrap-datepicker.id.min.js
│ │ ├── bootstrap-datepicker.is.min.js
│ │ ├── bootstrap-datepicker.it-CH.min.js
│ │ ├── bootstrap-datepicker.it.min.js
│ │ ├── bootstrap-datepicker.ja.min.js
│ │ ├── bootstrap-datepicker.ka.min.js
│ │ ├── bootstrap-datepicker.kh.min.js
│ │ ├── bootstrap-datepicker.kk.min.js
│ │ ├── bootstrap-datepicker.ko.min.js
│ │ ├── bootstrap-datepicker.kr.min.js
│ │ ├── bootstrap-datepicker.lt.min.js
│ │ ├── bootstrap-datepicker.lv.min.js
│ │ ├── bootstrap-datepicker.me.min.js
│ │ ├── bootstrap-datepicker.mk.min.js
│ │ ├── bootstrap-datepicker.mn.min.js
│ │ ├── bootstrap-datepicker.ms.min.js
│ │ ├── bootstrap-datepicker.nb.min.js
│ │ ├── bootstrap-datepicker.nl-BE.min.js
│ │ ├── bootstrap-datepicker.nl.min.js
│ │ ├── bootstrap-datepicker.no.min.js
│ │ ├── bootstrap-datepicker.pl.min.js
│ │ ├── bootstrap-datepicker.pt-BR.min.js
│ │ ├── bootstrap-datepicker.pt.min.js
│ │ ├── bootstrap-datepicker.ro.min.js
│ │ ├── bootstrap-datepicker.rs-latin.min.js
│ │ ├── bootstrap-datepicker.rs.min.js
│ │ ├── bootstrap-datepicker.ru.min.js
│ │ ├── bootstrap-datepicker.sk.min.js
│ │ ├── bootstrap-datepicker.sl.min.js
│ │ ├── bootstrap-datepicker.sq.min.js
│ │ ├── bootstrap-datepicker.sr-latin.min.js
│ │ ├── bootstrap-datepicker.sr.min.js
│ │ ├── bootstrap-datepicker.sv.min.js
│ │ ├── bootstrap-datepicker.sw.min.js
│ │ ├── bootstrap-datepicker.th.min.js
│ │ ├── bootstrap-datepicker.tr.min.js
│ │ ├── bootstrap-datepicker.uk.min.js
│ │ ├── bootstrap-datepicker.vi.min.js
│ │ ├── bootstrap-datepicker.zh-CN.min.js
│ │ └── bootstrap-datepicker.zh-TW.min.js
├── bootstrap-select-1.12.2
│ ├── .github
│ │ └── ISSUE_TEMPLATE.md
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── CONTRIBUTING.md
│ ├── Gruntfile.js
│ ├── LICENSE
│ ├── README.md
│ ├── bower.json
│ ├── composer.json
│ ├── dist
│ │ ├── css
│ │ │ ├── bootstrap-select.css
│ │ │ ├── bootstrap-select.css.map
│ │ │ └── bootstrap-select.min.css
│ │ └── js
│ │ │ ├── bootstrap-select.js
│ │ │ ├── bootstrap-select.js.map
│ │ │ ├── bootstrap-select.min.js
│ │ │ └── i18n
│ │ │ ├── defaults-ar_AR.js
│ │ │ ├── defaults-ar_AR.min.js
│ │ │ ├── defaults-bg_BG.js
│ │ │ ├── defaults-bg_BG.min.js
│ │ │ ├── defaults-cro_CRO.js
│ │ │ ├── defaults-cro_CRO.min.js
│ │ │ ├── defaults-cs_CZ.js
│ │ │ ├── defaults-cs_CZ.min.js
│ │ │ ├── defaults-da_DK.js
│ │ │ ├── defaults-da_DK.min.js
│ │ │ ├── defaults-de_DE.js
│ │ │ ├── defaults-de_DE.min.js
│ │ │ ├── defaults-en_US.js
│ │ │ ├── defaults-en_US.min.js
│ │ │ ├── defaults-es_CL.js
│ │ │ ├── defaults-es_CL.min.js
│ │ │ ├── defaults-es_ES.js
│ │ │ ├── defaults-es_ES.min.js
│ │ │ ├── defaults-eu.js
│ │ │ ├── defaults-eu.min.js
│ │ │ ├── defaults-fa_IR.js
│ │ │ ├── defaults-fa_IR.min.js
│ │ │ ├── defaults-fi_FI.js
│ │ │ ├── defaults-fi_FI.min.js
│ │ │ ├── defaults-fr_FR.js
│ │ │ ├── defaults-fr_FR.min.js
│ │ │ ├── defaults-hu_HU.js
│ │ │ ├── defaults-hu_HU.min.js
│ │ │ ├── defaults-id_ID.js
│ │ │ ├── defaults-id_ID.min.js
│ │ │ ├── defaults-it_IT.js
│ │ │ ├── defaults-it_IT.min.js
│ │ │ ├── defaults-ko_KR.js
│ │ │ ├── defaults-ko_KR.min.js
│ │ │ ├── defaults-lt_LT.js
│ │ │ ├── defaults-lt_LT.min.js
│ │ │ ├── defaults-nb_NO.js
│ │ │ ├── defaults-nb_NO.min.js
│ │ │ ├── defaults-nl_NL.js
│ │ │ ├── defaults-nl_NL.min.js
│ │ │ ├── defaults-pl_PL.js
│ │ │ ├── defaults-pl_PL.min.js
│ │ │ ├── defaults-pt_BR.js
│ │ │ ├── defaults-pt_BR.min.js
│ │ │ ├── defaults-pt_PT.js
│ │ │ ├── defaults-pt_PT.min.js
│ │ │ ├── defaults-ro_RO.js
│ │ │ ├── defaults-ro_RO.min.js
│ │ │ ├── defaults-ru_RU.js
│ │ │ ├── defaults-ru_RU.min.js
│ │ │ ├── defaults-sk_SK.js
│ │ │ ├── defaults-sk_SK.min.js
│ │ │ ├── defaults-sl_SI.js
│ │ │ ├── defaults-sl_SI.min.js
│ │ │ ├── defaults-sv_SE.js
│ │ │ ├── defaults-sv_SE.min.js
│ │ │ ├── defaults-tr_TR.js
│ │ │ ├── defaults-tr_TR.min.js
│ │ │ ├── defaults-ua_UA.js
│ │ │ ├── defaults-ua_UA.min.js
│ │ │ ├── defaults-zh_CN.js
│ │ │ ├── defaults-zh_CN.min.js
│ │ │ ├── defaults-zh_TW.js
│ │ │ └── defaults-zh_TW.min.js
│ ├── docs
│ │ ├── custom_theme
│ │ │ ├── base.html
│ │ │ ├── css
│ │ │ │ └── base.css
│ │ │ ├── img
│ │ │ │ └── logos
│ │ │ │ │ ├── convertizer.png
│ │ │ │ │ ├── estimateit.png
│ │ │ │ │ ├── membermeister.png
│ │ │ │ │ ├── snapappointments.png
│ │ │ │ │ ├── solveforall.png
│ │ │ │ │ └── thermofisher.png
│ │ │ ├── js
│ │ │ │ └── base.js
│ │ │ ├── nav.html
│ │ │ └── toc.html
│ │ ├── docs
│ │ │ ├── css
│ │ │ │ └── custom.css
│ │ │ ├── dist
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap-select.css
│ │ │ │ │ ├── bootstrap-select.css.map
│ │ │ │ │ └── bootstrap-select.min.css
│ │ │ │ └── js
│ │ │ │ │ ├── bootstrap-select.js
│ │ │ │ │ ├── bootstrap-select.js.map
│ │ │ │ │ ├── bootstrap-select.min.js
│ │ │ │ │ └── i18n
│ │ │ │ │ ├── defaults-ar_AR.js
│ │ │ │ │ ├── defaults-ar_AR.min.js
│ │ │ │ │ ├── defaults-bg_BG.js
│ │ │ │ │ ├── defaults-bg_BG.min.js
│ │ │ │ │ ├── defaults-cro_CRO.js
│ │ │ │ │ ├── defaults-cro_CRO.min.js
│ │ │ │ │ ├── defaults-cs_CZ.js
│ │ │ │ │ ├── defaults-cs_CZ.min.js
│ │ │ │ │ ├── defaults-da_DK.js
│ │ │ │ │ ├── defaults-da_DK.min.js
│ │ │ │ │ ├── defaults-de_DE.js
│ │ │ │ │ ├── defaults-de_DE.min.js
│ │ │ │ │ ├── defaults-en_US.js
│ │ │ │ │ ├── defaults-en_US.min.js
│ │ │ │ │ ├── defaults-es_CL.js
│ │ │ │ │ ├── defaults-es_CL.min.js
│ │ │ │ │ ├── defaults-es_ES.js
│ │ │ │ │ ├── defaults-es_ES.min.js
│ │ │ │ │ ├── defaults-eu.js
│ │ │ │ │ ├── defaults-eu.min.js
│ │ │ │ │ ├── defaults-fa_IR.js
│ │ │ │ │ ├── defaults-fa_IR.min.js
│ │ │ │ │ ├── defaults-fi_FI.js
│ │ │ │ │ ├── defaults-fi_FI.min.js
│ │ │ │ │ ├── defaults-fr_FR.js
│ │ │ │ │ ├── defaults-fr_FR.min.js
│ │ │ │ │ ├── defaults-hu_HU.js
│ │ │ │ │ ├── defaults-hu_HU.min.js
│ │ │ │ │ ├── defaults-id_ID.js
│ │ │ │ │ ├── defaults-id_ID.min.js
│ │ │ │ │ ├── defaults-it_IT.js
│ │ │ │ │ ├── defaults-it_IT.min.js
│ │ │ │ │ ├── defaults-ko_KR.js
│ │ │ │ │ ├── defaults-ko_KR.min.js
│ │ │ │ │ ├── defaults-lt_LT.js
│ │ │ │ │ ├── defaults-lt_LT.min.js
│ │ │ │ │ ├── defaults-nb_NO.js
│ │ │ │ │ ├── defaults-nb_NO.min.js
│ │ │ │ │ ├── defaults-nl_NL.js
│ │ │ │ │ ├── defaults-nl_NL.min.js
│ │ │ │ │ ├── defaults-pl_PL.js
│ │ │ │ │ ├── defaults-pl_PL.min.js
│ │ │ │ │ ├── defaults-pt_BR.js
│ │ │ │ │ ├── defaults-pt_BR.min.js
│ │ │ │ │ ├── defaults-pt_PT.js
│ │ │ │ │ ├── defaults-pt_PT.min.js
│ │ │ │ │ ├── defaults-ro_RO.js
│ │ │ │ │ ├── defaults-ro_RO.min.js
│ │ │ │ │ ├── defaults-ru_RU.js
│ │ │ │ │ ├── defaults-ru_RU.min.js
│ │ │ │ │ ├── defaults-sk_SK.js
│ │ │ │ │ ├── defaults-sk_SK.min.js
│ │ │ │ │ ├── defaults-sl_SI.js
│ │ │ │ │ ├── defaults-sl_SI.min.js
│ │ │ │ │ ├── defaults-sv_SE.js
│ │ │ │ │ ├── defaults-sv_SE.min.js
│ │ │ │ │ ├── defaults-tr_TR.js
│ │ │ │ │ ├── defaults-tr_TR.min.js
│ │ │ │ │ ├── defaults-ua_UA.js
│ │ │ │ │ ├── defaults-ua_UA.min.js
│ │ │ │ │ ├── defaults-zh_CN.js
│ │ │ │ │ ├── defaults-zh_CN.min.js
│ │ │ │ │ ├── defaults-zh_TW.js
│ │ │ │ │ └── defaults-zh_TW.min.js
│ │ │ ├── examples.md
│ │ │ ├── index.md
│ │ │ ├── methods.md
│ │ │ ├── options.md
│ │ │ └── playground
│ │ │ │ ├── index.html
│ │ │ │ ├── plnkrOpener.js
│ │ │ │ └── test.html
│ │ └── mkdocs.yml
│ ├── js
│ │ ├── .jshintrc
│ │ ├── bootstrap-select.js
│ │ └── i18n
│ │ │ ├── defaults-ar_AR.js
│ │ │ ├── defaults-bg_BG.js
│ │ │ ├── defaults-cro_CRO.js
│ │ │ ├── defaults-cs_CZ.js
│ │ │ ├── defaults-da_DK.js
│ │ │ ├── defaults-de_DE.js
│ │ │ ├── defaults-en_US.js
│ │ │ ├── defaults-es_CL.js
│ │ │ ├── defaults-es_ES.js
│ │ │ ├── defaults-eu.js
│ │ │ ├── defaults-fa_IR.js
│ │ │ ├── defaults-fi_FI.js
│ │ │ ├── defaults-fr_FR.js
│ │ │ ├── defaults-hu_HU.js
│ │ │ ├── defaults-id_ID.js
│ │ │ ├── defaults-it_IT.js
│ │ │ ├── defaults-ko_KR.js
│ │ │ ├── defaults-lt_LT.js
│ │ │ ├── defaults-nb_NO.js
│ │ │ ├── defaults-nl_NL.js
│ │ │ ├── defaults-pl_PL.js
│ │ │ ├── defaults-pt_BR.js
│ │ │ ├── defaults-pt_PT.js
│ │ │ ├── defaults-ro_RO.js
│ │ │ ├── defaults-ru_RU.js
│ │ │ ├── defaults-sk_SK.js
│ │ │ ├── defaults-sl_SI.js
│ │ │ ├── defaults-sv_SE.js
│ │ │ ├── defaults-tr_TR.js
│ │ │ ├── defaults-ua_UA.js
│ │ │ ├── defaults-zh_CN.js
│ │ │ └── defaults-zh_TW.js
│ ├── less
│ │ ├── bootstrap-select.less
│ │ └── variables.less
│ ├── nuget
│ │ ├── MyGet.ps1
│ │ └── bootstrap-select.nuspec
│ ├── package.json
│ ├── sass
│ │ ├── bootstrap-select.scss
│ │ └── variables.scss
│ └── test.html
├── bootstrap
│ ├── css
│ │ └── bootstrap.min.css
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ └── js
│ │ ├── bootstrap.min.js
│ │ └── npm.js
├── ckeditor
│ ├── CHANGES.md
│ ├── LICENSE.md
│ ├── README.md
│ ├── adapters
│ │ └── jquery.js
│ ├── build-config.js
│ ├── ckeditor.js
│ ├── config.js
│ ├── contents.css
│ ├── lang
│ │ ├── af.js
│ │ ├── ar.js
│ │ ├── bg.js
│ │ ├── bn.js
│ │ ├── bs.js
│ │ ├── ca.js
│ │ ├── cs.js
│ │ ├── cy.js
│ │ ├── da.js
│ │ ├── de-ch.js
│ │ ├── de.js
│ │ ├── el.js
│ │ ├── en-au.js
│ │ ├── en-ca.js
│ │ ├── en-gb.js
│ │ ├── en.js
│ │ ├── eo.js
│ │ ├── es.js
│ │ ├── et.js
│ │ ├── eu.js
│ │ ├── fa.js
│ │ ├── fi.js
│ │ ├── fo.js
│ │ ├── fr-ca.js
│ │ ├── fr.js
│ │ ├── gl.js
│ │ ├── gu.js
│ │ ├── he.js
│ │ ├── hi.js
│ │ ├── hr.js
│ │ ├── hu.js
│ │ ├── id.js
│ │ ├── is.js
│ │ ├── it.js
│ │ ├── ja.js
│ │ ├── ka.js
│ │ ├── km.js
│ │ ├── ko.js
│ │ ├── ku.js
│ │ ├── lt.js
│ │ ├── lv.js
│ │ ├── mk.js
│ │ ├── mn.js
│ │ ├── ms.js
│ │ ├── nb.js
│ │ ├── nl.js
│ │ ├── no.js
│ │ ├── pl.js
│ │ ├── pt-br.js
│ │ ├── pt.js
│ │ ├── ro.js
│ │ ├── ru.js
│ │ ├── si.js
│ │ ├── sk.js
│ │ ├── sl.js
│ │ ├── sq.js
│ │ ├── sr-latn.js
│ │ ├── sr.js
│ │ ├── sv.js
│ │ ├── th.js
│ │ ├── tr.js
│ │ ├── tt.js
│ │ ├── ug.js
│ │ ├── uk.js
│ │ ├── vi.js
│ │ ├── zh-cn.js
│ │ └── zh.js
│ ├── plugins
│ │ ├── a11yhelp
│ │ │ └── dialogs
│ │ │ │ ├── a11yhelp.js
│ │ │ │ └── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de-ch.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── gu.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── tt.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ ├── about
│ │ │ └── dialogs
│ │ │ │ ├── about.js
│ │ │ │ ├── hidpi
│ │ │ │ └── logo_ckeditor.png
│ │ │ │ └── logo_ckeditor.png
│ │ ├── clipboard
│ │ │ └── dialogs
│ │ │ │ └── paste.js
│ │ ├── codemirror
│ │ │ ├── css
│ │ │ │ └── codemirror.min.css
│ │ │ ├── icons
│ │ │ │ ├── autocomplete.png
│ │ │ │ ├── autoformat.png
│ │ │ │ ├── commentselectedrange.png
│ │ │ │ ├── searchcode.png
│ │ │ │ └── uncommentselectedrange.png
│ │ │ ├── js
│ │ │ │ ├── beautify.min.js
│ │ │ │ ├── codemirror.addons.min.js
│ │ │ │ ├── codemirror.addons.search.min.js
│ │ │ │ ├── codemirror.min.js
│ │ │ │ ├── codemirror.mode.bbcode.min.js
│ │ │ │ ├── codemirror.mode.bbcodemixed.min.js
│ │ │ │ ├── codemirror.mode.htmlmixed.min.js
│ │ │ │ ├── codemirror.mode.javascript.min.js
│ │ │ │ └── codemirror.mode.php.min.js
│ │ │ ├── lang
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── bn.js
│ │ │ │ ├── bs.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-au.js
│ │ │ │ ├── en-ca.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── gu.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── is.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── ka.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── ms.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ ├── plugin.js
│ │ │ └── theme
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ └── zenburn.css
│ │ ├── colordialog
│ │ │ └── dialogs
│ │ │ │ └── colordialog.js
│ │ ├── dialog
│ │ │ └── dialogDefinition.js
│ │ ├── div
│ │ │ └── dialogs
│ │ │ │ └── div.js
│ │ ├── find
│ │ │ └── dialogs
│ │ │ │ └── find.js
│ │ ├── flash
│ │ │ ├── dialogs
│ │ │ │ └── flash.js
│ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ ├── forms
│ │ │ ├── dialogs
│ │ │ │ ├── button.js
│ │ │ │ ├── checkbox.js
│ │ │ │ ├── form.js
│ │ │ │ ├── hiddenfield.js
│ │ │ │ ├── radio.js
│ │ │ │ ├── select.js
│ │ │ │ ├── textarea.js
│ │ │ │ └── textfield.js
│ │ │ └── images
│ │ │ │ └── hiddenfield.gif
│ │ ├── icons.png
│ │ ├── icons_hidpi.png
│ │ ├── iframe
│ │ │ ├── dialogs
│ │ │ │ └── iframe.js
│ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ ├── image
│ │ │ ├── dialogs
│ │ │ │ └── image.js
│ │ │ └── images
│ │ │ │ └── noimage.png
│ │ ├── link
│ │ │ ├── dialogs
│ │ │ │ ├── anchor.js
│ │ │ │ └── link.js
│ │ │ └── images
│ │ │ │ ├── anchor.png
│ │ │ │ └── hidpi
│ │ │ │ └── anchor.png
│ │ ├── liststyle
│ │ │ └── dialogs
│ │ │ │ └── liststyle.js
│ │ ├── magicline
│ │ │ └── images
│ │ │ │ ├── hidpi
│ │ │ │ ├── icon-rtl.png
│ │ │ │ └── icon.png
│ │ │ │ ├── icon-rtl.png
│ │ │ │ └── icon.png
│ │ ├── pagebreak
│ │ │ └── images
│ │ │ │ └── pagebreak.gif
│ │ ├── pastefromword
│ │ │ └── filter
│ │ │ │ └── default.js
│ │ ├── preview
│ │ │ └── preview.html
│ │ ├── scayt
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ └── dialogs
│ │ │ │ ├── options.js
│ │ │ │ └── toolbar.css
│ │ ├── showblocks
│ │ │ └── images
│ │ │ │ ├── block_address.png
│ │ │ │ ├── block_blockquote.png
│ │ │ │ ├── block_div.png
│ │ │ │ ├── block_h1.png
│ │ │ │ ├── block_h2.png
│ │ │ │ ├── block_h3.png
│ │ │ │ ├── block_h4.png
│ │ │ │ ├── block_h5.png
│ │ │ │ ├── block_h6.png
│ │ │ │ ├── block_p.png
│ │ │ │ └── block_pre.png
│ │ ├── smiley
│ │ │ ├── dialogs
│ │ │ │ └── smiley.js
│ │ │ └── images
│ │ │ │ ├── angel_smile.gif
│ │ │ │ ├── angel_smile.png
│ │ │ │ ├── angry_smile.gif
│ │ │ │ ├── angry_smile.png
│ │ │ │ ├── broken_heart.gif
│ │ │ │ ├── broken_heart.png
│ │ │ │ ├── confused_smile.gif
│ │ │ │ ├── confused_smile.png
│ │ │ │ ├── cry_smile.gif
│ │ │ │ ├── cry_smile.png
│ │ │ │ ├── devil_smile.gif
│ │ │ │ ├── devil_smile.png
│ │ │ │ ├── embaressed_smile.gif
│ │ │ │ ├── embarrassed_smile.gif
│ │ │ │ ├── embarrassed_smile.png
│ │ │ │ ├── envelope.gif
│ │ │ │ ├── envelope.png
│ │ │ │ ├── heart.gif
│ │ │ │ ├── heart.png
│ │ │ │ ├── kiss.gif
│ │ │ │ ├── kiss.png
│ │ │ │ ├── lightbulb.gif
│ │ │ │ ├── lightbulb.png
│ │ │ │ ├── omg_smile.gif
│ │ │ │ ├── omg_smile.png
│ │ │ │ ├── regular_smile.gif
│ │ │ │ ├── regular_smile.png
│ │ │ │ ├── sad_smile.gif
│ │ │ │ ├── sad_smile.png
│ │ │ │ ├── shades_smile.gif
│ │ │ │ ├── shades_smile.png
│ │ │ │ ├── teeth_smile.gif
│ │ │ │ ├── teeth_smile.png
│ │ │ │ ├── thumbs_down.gif
│ │ │ │ ├── thumbs_down.png
│ │ │ │ ├── thumbs_up.gif
│ │ │ │ ├── thumbs_up.png
│ │ │ │ ├── tongue_smile.gif
│ │ │ │ ├── tongue_smile.png
│ │ │ │ ├── tounge_smile.gif
│ │ │ │ ├── whatchutalkingabout_smile.gif
│ │ │ │ ├── whatchutalkingabout_smile.png
│ │ │ │ ├── wink_smile.gif
│ │ │ │ └── wink_smile.png
│ │ ├── specialchar
│ │ │ └── dialogs
│ │ │ │ ├── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de-ch.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── tt.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ │ └── specialchar.js
│ │ ├── table
│ │ │ └── dialogs
│ │ │ │ └── table.js
│ │ ├── tabletools
│ │ │ └── dialogs
│ │ │ │ └── tableCell.js
│ │ ├── templates
│ │ │ ├── dialogs
│ │ │ │ ├── templates.css
│ │ │ │ └── templates.js
│ │ │ └── templates
│ │ │ │ ├── default.js
│ │ │ │ └── images
│ │ │ │ ├── template1.gif
│ │ │ │ ├── template2.gif
│ │ │ │ └── template3.gif
│ │ └── wsc
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ └── dialogs
│ │ │ ├── ciframe.html
│ │ │ ├── tmpFrameset.html
│ │ │ ├── wsc.css
│ │ │ ├── wsc.js
│ │ │ └── wsc_ie.js
│ ├── samples
│ │ ├── css
│ │ │ └── samples.css
│ │ ├── img
│ │ │ ├── github-top.png
│ │ │ ├── header-bg.png
│ │ │ ├── header-separator.png
│ │ │ ├── logo.png
│ │ │ └── navigation-tip.png
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── sample.js
│ │ │ └── sf.js
│ │ ├── old
│ │ │ ├── ajax.html
│ │ │ ├── api.html
│ │ │ ├── appendto.html
│ │ │ ├── assets
│ │ │ │ ├── inlineall
│ │ │ │ │ └── logo.png
│ │ │ │ ├── outputxhtml
│ │ │ │ │ └── outputxhtml.css
│ │ │ │ ├── posteddata.php
│ │ │ │ ├── sample.jpg
│ │ │ │ └── uilanguages
│ │ │ │ │ └── languages.js
│ │ │ ├── datafiltering.html
│ │ │ ├── dialog
│ │ │ │ ├── assets
│ │ │ │ │ └── my_dialog.js
│ │ │ │ └── dialog.html
│ │ │ ├── divreplace.html
│ │ │ ├── enterkey
│ │ │ │ └── enterkey.html
│ │ │ ├── htmlwriter
│ │ │ │ ├── assets
│ │ │ │ │ └── outputforflash
│ │ │ │ │ │ ├── outputforflash.fla
│ │ │ │ │ │ ├── outputforflash.swf
│ │ │ │ │ │ └── swfobject.js
│ │ │ │ ├── outputforflash.html
│ │ │ │ └── outputhtml.html
│ │ │ ├── index.html
│ │ │ ├── inlineall.html
│ │ │ ├── inlinebycode.html
│ │ │ ├── inlinetextarea.html
│ │ │ ├── jquery.html
│ │ │ ├── magicline
│ │ │ │ └── magicline.html
│ │ │ ├── readonly.html
│ │ │ ├── replacebyclass.html
│ │ │ ├── replacebycode.html
│ │ │ ├── sample.css
│ │ │ ├── sample.js
│ │ │ ├── sample_posteddata.php
│ │ │ ├── tabindex.html
│ │ │ ├── toolbar
│ │ │ │ └── toolbar.html
│ │ │ ├── uicolor.html
│ │ │ ├── uilanguages.html
│ │ │ ├── wysiwygarea
│ │ │ │ └── fullpage.html
│ │ │ └── xhtmlstyle.html
│ │ └── toolbarconfigurator
│ │ │ ├── css
│ │ │ └── fontello.css
│ │ │ ├── font
│ │ │ ├── LICENSE.txt
│ │ │ ├── config.json
│ │ │ ├── fontello.eot
│ │ │ ├── fontello.svg
│ │ │ ├── fontello.ttf
│ │ │ └── fontello.woff
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ ├── abstracttoolbarmodifier.js
│ │ │ ├── fulltoolbareditor.js
│ │ │ ├── toolbarmodifier.js
│ │ │ └── toolbartextmodifier.js
│ │ │ └── lib
│ │ │ └── codemirror
│ │ │ ├── LICENSE
│ │ │ ├── codemirror.css
│ │ │ ├── codemirror.js
│ │ │ ├── javascript.js
│ │ │ ├── neo.css
│ │ │ ├── show-hint.css
│ │ │ └── show-hint.js
│ ├── skins
│ │ ├── moono
│ │ │ ├── dialog.css
│ │ │ ├── dialog_ie.css
│ │ │ ├── dialog_ie7.css
│ │ │ ├── dialog_ie8.css
│ │ │ ├── dialog_iequirks.css
│ │ │ ├── editor.css
│ │ │ ├── editor_gecko.css
│ │ │ ├── editor_ie.css
│ │ │ ├── editor_ie7.css
│ │ │ ├── editor_ie8.css
│ │ │ ├── editor_iequirks.css
│ │ │ ├── icons.png
│ │ │ ├── icons_hidpi.png
│ │ │ ├── images
│ │ │ │ ├── arrow.png
│ │ │ │ ├── close.png
│ │ │ │ ├── hidpi
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── lock-open.png
│ │ │ │ │ ├── lock.png
│ │ │ │ │ └── refresh.png
│ │ │ │ ├── lock-open.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── refresh.png
│ │ │ │ └── spinner.gif
│ │ │ └── readme.md
│ │ └── moonocolor
│ │ │ ├── dialog.css
│ │ │ ├── dialog_ie.css
│ │ │ ├── dialog_ie7.css
│ │ │ ├── dialog_ie8.css
│ │ │ ├── dialog_iequirks.css
│ │ │ ├── editor.css
│ │ │ ├── editor_gecko.css
│ │ │ ├── editor_ie.css
│ │ │ ├── editor_ie7.css
│ │ │ ├── editor_ie8.css
│ │ │ ├── editor_iequirks.css
│ │ │ ├── icons.png
│ │ │ ├── icons_hidpi.png
│ │ │ ├── images
│ │ │ ├── arrow.png
│ │ │ ├── close.png
│ │ │ ├── hidpi
│ │ │ │ ├── close.png
│ │ │ │ ├── lock-open.png
│ │ │ │ ├── lock.png
│ │ │ │ └── refresh.png
│ │ │ ├── lock-open.png
│ │ │ ├── lock.png
│ │ │ ├── refresh.png
│ │ │ └── spinner.gif
│ │ │ └── readme.md
│ └── styles.js
├── font-awesome-4.7.0
│ ├── HELP-US-OUT.txt
│ ├── css
│ │ ├── font-awesome.css
│ │ └── font-awesome.min.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── less
│ │ ├── animated.less
│ │ ├── bordered-pulled.less
│ │ ├── core.less
│ │ ├── fixed-width.less
│ │ ├── font-awesome.less
│ │ ├── icons.less
│ │ ├── larger.less
│ │ ├── list.less
│ │ ├── mixins.less
│ │ ├── path.less
│ │ ├── rotated-flipped.less
│ │ ├── screen-reader.less
│ │ ├── stacked.less
│ │ └── variables.less
│ └── scss
│ │ ├── _animated.scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _core.scss
│ │ ├── _fixed-width.scss
│ │ ├── _icons.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── _mixins.scss
│ │ ├── _path.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _screen-reader.scss
│ │ ├── _stacked.scss
│ │ ├── _variables.scss
│ │ └── font-awesome.scss
├── font-awesome
│ ├── css
│ │ └── font-awesome.min.css
│ └── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
├── highcharts
│ ├── css
│ │ └── highcharts.css
│ ├── highcharts-3d.js
│ ├── highcharts-3d.js.map
│ ├── highcharts-3d.src.js
│ ├── highcharts-more.js
│ ├── highcharts-more.js.map
│ ├── highcharts-more.src.js
│ ├── highcharts.js
│ ├── highcharts.js.map
│ ├── highcharts.src.js
│ ├── highmaps.js.map
│ ├── highstock.js.map
│ ├── js
│ │ ├── highcharts-3d.js
│ │ ├── highcharts-3d.js.map
│ │ ├── highcharts-3d.src.js
│ │ ├── highcharts-more.js
│ │ ├── highcharts-more.js.map
│ │ ├── highcharts-more.src.js
│ │ ├── highcharts.js
│ │ ├── highcharts.js.map
│ │ ├── highcharts.src.js
│ │ ├── highmaps.js.map
│ │ ├── highstock.js.map
│ │ ├── modules
│ │ │ ├── accessibility.js
│ │ │ ├── accessibility.js.map
│ │ │ ├── accessibility.src.js
│ │ │ ├── annotations.js
│ │ │ ├── annotations.js.map
│ │ │ ├── annotations.src.js
│ │ │ ├── boost-canvas.js
│ │ │ ├── boost-canvas.js.map
│ │ │ ├── boost-canvas.src.js
│ │ │ ├── boost.js
│ │ │ ├── boost.js.map
│ │ │ ├── boost.src.js
│ │ │ ├── broken-axis.js
│ │ │ ├── broken-axis.js.map
│ │ │ ├── broken-axis.src.js
│ │ │ ├── canvasrenderer.experimental.js.map
│ │ │ ├── data.js
│ │ │ ├── data.js.map
│ │ │ ├── data.src.js
│ │ │ ├── drilldown.js
│ │ │ ├── drilldown.js.map
│ │ │ ├── drilldown.src.js
│ │ │ ├── export-data.js
│ │ │ ├── export-data.js.map
│ │ │ ├── export-data.src.js
│ │ │ ├── exporting.js
│ │ │ ├── exporting.js.map
│ │ │ ├── exporting.src.js
│ │ │ ├── funnel.js
│ │ │ ├── funnel.js.map
│ │ │ ├── funnel.src.js
│ │ │ ├── gantt.js
│ │ │ ├── gantt.js.map
│ │ │ ├── gantt.src.js
│ │ │ ├── grid-axis.js
│ │ │ ├── grid-axis.js.map
│ │ │ ├── grid-axis.src.js
│ │ │ ├── heatmap.js
│ │ │ ├── heatmap.js.map
│ │ │ ├── heatmap.src.js
│ │ │ ├── map-parser.js.map
│ │ │ ├── map.js.map
│ │ │ ├── no-data-to-display.js
│ │ │ ├── no-data-to-display.js.map
│ │ │ ├── no-data-to-display.src.js
│ │ │ ├── offline-exporting.js
│ │ │ ├── offline-exporting.js.map
│ │ │ ├── offline-exporting.src.js
│ │ │ ├── overlapping-datalabels.js
│ │ │ ├── overlapping-datalabels.js.map
│ │ │ ├── overlapping-datalabels.src.js
│ │ │ ├── series-label.js
│ │ │ ├── series-label.js.map
│ │ │ ├── series-label.src.js
│ │ │ ├── solid-gauge.js
│ │ │ ├── solid-gauge.js.map
│ │ │ ├── solid-gauge.src.js
│ │ │ ├── static-scale.js
│ │ │ ├── static-scale.js.map
│ │ │ ├── static-scale.src.js
│ │ │ ├── stock.js
│ │ │ ├── stock.js.map
│ │ │ ├── stock.src.js
│ │ │ ├── treemap.js
│ │ │ ├── treemap.js.map
│ │ │ ├── treemap.src.js
│ │ │ ├── xrange-series.js
│ │ │ ├── xrange-series.js.map
│ │ │ └── xrange-series.src.js
│ │ └── themes
│ │ │ ├── dark-blue.js
│ │ │ ├── dark-green.js
│ │ │ ├── dark-unica.js
│ │ │ ├── gray.js
│ │ │ ├── grid-light.js
│ │ │ ├── grid.js
│ │ │ ├── sand-signika.js
│ │ │ └── skies.js
│ ├── lib
│ │ ├── canvg.js
│ │ ├── canvg.src.js
│ │ ├── jspdf.js
│ │ ├── jspdf.src.js
│ │ ├── rgbcolor.js
│ │ ├── rgbcolor.src.js
│ │ ├── svg2pdf.js
│ │ └── svg2pdf.src.js
│ ├── modules
│ │ ├── accessibility.js
│ │ ├── accessibility.js.map
│ │ ├── accessibility.src.js
│ │ ├── annotations.js
│ │ ├── annotations.js.map
│ │ ├── annotations.src.js
│ │ ├── boost-canvas.js
│ │ ├── boost-canvas.js.map
│ │ ├── boost-canvas.src.js
│ │ ├── boost.js
│ │ ├── boost.js.map
│ │ ├── boost.src.js
│ │ ├── broken-axis.js
│ │ ├── broken-axis.js.map
│ │ ├── broken-axis.src.js
│ │ ├── canvasrenderer.experimental.js.map
│ │ ├── data.js
│ │ ├── data.js.map
│ │ ├── data.src.js
│ │ ├── drilldown.js
│ │ ├── drilldown.js.map
│ │ ├── drilldown.src.js
│ │ ├── export-data.js
│ │ ├── export-data.js.map
│ │ ├── export-data.src.js
│ │ ├── exporting.js
│ │ ├── exporting.js.map
│ │ ├── exporting.src.js
│ │ ├── funnel.js
│ │ ├── funnel.js.map
│ │ ├── funnel.src.js
│ │ ├── gantt.js
│ │ ├── gantt.js.map
│ │ ├── gantt.src.js
│ │ ├── grid-axis.js
│ │ ├── grid-axis.js.map
│ │ ├── grid-axis.src.js
│ │ ├── heatmap.js
│ │ ├── heatmap.js.map
│ │ ├── heatmap.src.js
│ │ ├── map-parser.js.map
│ │ ├── map.js.map
│ │ ├── no-data-to-display.js
│ │ ├── no-data-to-display.js.map
│ │ ├── no-data-to-display.src.js
│ │ ├── offline-exporting.js
│ │ ├── offline-exporting.js.map
│ │ ├── offline-exporting.src.js
│ │ ├── overlapping-datalabels.js
│ │ ├── overlapping-datalabels.js.map
│ │ ├── overlapping-datalabels.src.js
│ │ ├── series-label.js
│ │ ├── series-label.js.map
│ │ ├── series-label.src.js
│ │ ├── solid-gauge.js
│ │ ├── solid-gauge.js.map
│ │ ├── solid-gauge.src.js
│ │ ├── static-scale.js
│ │ ├── static-scale.js.map
│ │ ├── static-scale.src.js
│ │ ├── stock.js
│ │ ├── stock.js.map
│ │ ├── stock.src.js
│ │ ├── treemap.js
│ │ ├── treemap.js.map
│ │ ├── treemap.src.js
│ │ ├── xrange-series.js
│ │ ├── xrange-series.js.map
│ │ └── xrange-series.src.js
│ ├── readme.txt
│ └── themes
│ │ ├── dark-blue.js
│ │ ├── dark-green.js
│ │ ├── dark-unica.js
│ │ ├── gray.js
│ │ ├── grid-light.js
│ │ ├── grid.js
│ │ ├── sand-signika.js
│ │ └── skies.js
├── jquery
│ ├── jquery-ui-1.12.1.custom
│ │ ├── AUTHORS.txt
│ │ ├── LICENSE.txt
│ │ ├── external
│ │ │ └── jquery
│ │ │ │ └── jquery.js
│ │ ├── images
│ │ │ ├── ui-icons_444444_256x240.png
│ │ │ ├── ui-icons_555555_256x240.png
│ │ │ ├── ui-icons_777620_256x240.png
│ │ │ ├── ui-icons_777777_256x240.png
│ │ │ ├── ui-icons_cc0000_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── index.html
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.js
│ │ ├── jquery-ui.min.css
│ │ ├── jquery-ui.min.js
│ │ ├── jquery-ui.structure.css
│ │ ├── jquery-ui.structure.min.css
│ │ ├── jquery-ui.theme.css
│ │ ├── jquery-ui.theme.min.css
│ │ └── package.json
│ └── jquery.min.js
├── plugins
│ ├── bootbox.min.js
│ ├── jquery.eqheight.js
│ ├── math.min.js
│ └── placeholders.min.js
├── psd
│ ├── customers-label.psd
│ ├── fbCover.psd
│ ├── fbLogo.psd
│ ├── first-mac.psd
│ ├── home_steps.psd
│ ├── pm-subpages.psd
│ ├── pmInvoice-Logo.psd
│ ├── responsive.psd
│ └── support-image.psd
├── public
│ ├── css
│ │ ├── general.css
│ │ ├── stabilizator_bg.css
│ │ ├── stabilizator_en.css
│ │ └── stabilizator_fr.css
│ └── js
│ │ └── general.js
├── tagsinput
│ ├── bootstrap-tagsinput.css
│ └── bootstrap-tagsinput.js
└── users
│ ├── css
│ ├── bill-of-lading-templates.css
│ ├── general.css
│ ├── invoices-templates.css
│ ├── protocols-templates.css
│ └── warranty-cards-templates.css
│ ├── imgs
│ ├── notok.png
│ ├── pages-delivery.png
│ ├── paypal-pay-now.png
│ └── sprite-icons.png
│ └── js
│ └── general.js
├── attachments
└── featuresimages
│ ├── Warranty-Certificate-Template.png
│ ├── inventory-management-software.png
│ ├── inventory-management-software1.png
│ ├── inventory-management-software2.png
│ └── priemo-predavatelen-protokol.gif
├── database.sql
├── design
├── public
│ ├── card_icons.psd
│ └── first-mac.psd
└── user
│ ├── CMS.jpg
│ ├── CMS.psd
│ ├── Fonts
│ └── OpenSans-Regular_A.ttf
│ ├── create_invoice_page.png
│ ├── design_of_invoice.png
│ ├── design_of_invoices_list.png
│ ├── sprite-icons.psd
│ └── stats.png
├── index.php
├── pdfs.log
└── 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
├── CI_Session_driver_interface.php
├── OldSessionWrapper.php
├── PHP8SessionWrapper.php
├── Session.php
├── SessionHandlerInterface.php
├── SessionUpdateTimestampHandlerInterface.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
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: kirilkirkov
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 | RewriteEngine on
2 |
3 | RewriteCond %{REQUEST_FILENAME} !-f
4 | RewriteCond %{REQUEST_FILENAME} !-d
5 | RewriteRule ^(.*)$ index.php?/$1 [L]
6 |
7 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/HEAD_Controller.php: -------------------------------------------------------------------------------- 1 | output->enable_profiler(ENVIRONMENT == 'development'); 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/except_letters_helper.php: -------------------------------------------------------------------------------- 1 | ', $input); 13 | } else { 14 | $output = $input; 15 | } 16 | ?> 17 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/lang_url_helper.php: -------------------------------------------------------------------------------- 1 | modify('first day of January ' . date('Y')); 16 | $array['from'] = $date->format('d.m.Y'); 17 | 18 | $date = new DateTime('now'); 19 | $date->modify('last day of December ' . date('Y')); 20 | $array['to'] = $date->format('d.m.Y'); 21 | return $array; 22 | } 23 | -------------------------------------------------------------------------------- /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/bulgarian/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/bulgarian/db_lang.php -------------------------------------------------------------------------------- /application/language/bulgarian/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/bulgarian/email_lang.php -------------------------------------------------------------------------------- /application/language/bulgarian/form_validation_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/bulgarian/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /application/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/english/db_lang.php -------------------------------------------------------------------------------- /application/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/english/email_lang.php -------------------------------------------------------------------------------- /application/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /application/language/france/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/france/db_lang.php -------------------------------------------------------------------------------- /application/language/france/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/language/france/email_lang.php -------------------------------------------------------------------------------- /application/language/france/form_validation_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/france/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/PHPExcel/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt: -------------------------------------------------------------------------------- 1 | ChartDirector 2 | http://www.advsofteng.com/cdphp.html 3 | 4 | GraPHPite 5 | http://graphpite.sourceforge.net/ 6 | 7 | JpGraph 8 | http://www.aditus.nu/jpgraph/ 9 | 10 | LibChart 11 | http://naku.dohcrew.com/libchart/pages/introduction/ 12 | 13 | pChart 14 | http://pchart.sourceforge.net/ 15 | 16 | TeeChart 17 | http://www.steema.com/products/teechart/overview.html 18 | 19 | PHPGraphLib 20 | http://www.ebrueggeman.com/phpgraphlib -------------------------------------------------------------------------------- /application/libraries/PHPExcel/PHPExcel/Shared/JAMA/CHANGELOG.TXT: -------------------------------------------------------------------------------- 1 | Mar 1, 2005 11:15 AST by PM 2 | 3 | + For consistency, renamed Math.php to Maths.java, utils to util, 4 | tests to test, docs to doc - 5 | 6 | + Removed conditional logic from top of Matrix class. 7 | 8 | + Switched to using hypo function in Maths.php for all php-hypot calls. 9 | NOTE TO SELF: Need to make sure that all decompositions have been 10 | switched over to using the bundled hypo. 11 | 12 | Feb 25, 2005 at 10:00 AST by PM 13 | 14 | + Recommend using simpler Error.php instead of JAMA_Error.php but 15 | can be persuaded otherwise. 16 | 17 | -------------------------------------------------------------------------------- /application/libraries/PHPMailer/VERSION: -------------------------------------------------------------------------------- 1 | 5.2.24 2 | -------------------------------------------------------------------------------- /application/libraries/PHPMailer/examples/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/PHPMailer/examples/contents.html -------------------------------------------------------------------------------- /application/libraries/PHPMailer/examples/images/phpmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/PHPMailer/examples/images/phpmailer.png -------------------------------------------------------------------------------- /application/libraries/PHPMailer/examples/images/phpmailer_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/PHPMailer/examples/images/phpmailer_mini.png -------------------------------------------------------------------------------- /application/libraries/PHPMailer/examples/styles/wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/PHPMailer/examples/styles/wrapping.png -------------------------------------------------------------------------------- /application/libraries/dompdf/VERSION: -------------------------------------------------------------------------------- 1 | $Format:<%h>$ 2 | -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSans-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSans-BoldOblique.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSansMono-Bold.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSansMono-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSansMono-BoldOblique.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSansMono-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSansMono-Oblique.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSerif-Bold.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSerif-Italic.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/DejaVuSerif.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/fonts/dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/libraries/dompdf/lib/fonts/dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ttf -------------------------------------------------------------------------------- /application/libraries/dompdf/lib/php-css-parser/src/Comment/Commentable.php: -------------------------------------------------------------------------------- 1 | $aComments 9 | * 10 | * @return void 11 | */ 12 | public function addComments(array $aComments); 13 | 14 | /** 15 | * @return arrayDirectory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/log-2017-08-25.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | ERROR - 2017-08-25 10:11:01 --> 404 Page Not Found: /index 4 | ERROR - 2017-08-25 10:11:01 --> 404 Page Not Found: /index 5 | -------------------------------------------------------------------------------- /application/logs/log-2017-08-28.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | ERROR - 2017-08-28 12:24:43 --> 404 Page Not Found: /index 4 | ERROR - 2017-08-28 12:24:43 --> Severity: Core Warning --> PHP Startup: Unable to load dynamic library '/usr/lib/php/20131226/php_intl.dll' - /usr/lib/php/20131226/php_intl.dll: cannot open shared object file: No such file or directory Unknown 0 5 | -------------------------------------------------------------------------------- /application/logs/log-2017-09-12.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | ERROR - 2017-09-12 17:56:38 --> Severity: Core Warning --> PHP Startup: Unable to load dynamic library '/usr/lib/php/20131226/php_intl.dll' - /usr/lib/php/20131226/php_intl.dll: cannot open shared object file: No such file or directory Unknown 0 4 | ERROR - 2017-09-12 17:56:39 --> 404 Page Not Found: /index 5 | ERROR - 2017-09-12 17:56:39 --> 404 Page Not Found: /index 6 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/admin/models/HomeModel.php: -------------------------------------------------------------------------------- 1 | db->query('SELECT * FROM languages'); 14 | return $query; 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /application/modules/admin/views/home/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System/aacb81aad3502ea255bdc4daedc8bddf26391518/application/modules/admin/views/home/index.php -------------------------------------------------------------------------------- /application/modules/admin/views/parts/general/footer.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 |