File Structure for: tool.zip Generated on: 2025-10-27 08:04:55 Total Files: 1217 Total Folders: 197 ================================================== └── tool/ ├── assets/ │ ├── fonts/ │ │ ├── feather.woff │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Medium.ttf │ │ └── Roboto-Regular.ttf │ ├── images/ │ │ ├── logo.png │ │ └── scene-1.jpg │ └── sets/ │ └── iimages ├── css/ │ ├── 10.css │ ├── 200.css │ ├── 249.css │ ├── 338.css │ ├── 370.css │ ├── 371.css │ ├── 415.css │ ├── 428.css │ ├── 46.css │ ├── 495.css │ ├── 587.css │ ├── 59.css │ ├── 600.css │ ├── 608.css │ ├── 635.css │ ├── 640.css │ ├── 717.css │ ├── 786.css │ ├── 89.css │ ├── 931.css │ └── 98.css ├── external-survey/ │ ├── apis/ │ │ ├── auth/ │ │ │ ├── error_log │ │ │ ├── login.php │ │ │ └── validate.php │ │ ├── clients/ │ │ │ ├── create.php │ │ │ ├── edit.php │ │ │ ├── list.php │ │ │ └── read.php │ │ ├── dashboard/ │ │ │ └── recent-projects.php │ │ ├── projects/ │ │ │ ├── addVendor.php │ │ │ ├── create.php │ │ │ ├── detail.php │ │ │ ├── download.php │ │ │ ├── edit.php │ │ │ ├── error_log │ │ │ ├── list.php │ │ │ ├── read.php │ │ │ ├── removeVendor.php │ │ │ ├── updateStatus.php │ │ │ ├── updateVendor.php │ │ │ ├── upload.php │ │ │ ├── vendorDetails.php │ │ │ └── vendorStats.php │ │ ├── reports/ │ │ │ ├── download.php │ │ │ └── error_log │ │ ├── surveys/ │ │ │ ├── deleteIndividual.php │ │ │ ├── deleteOpenURLs.php │ │ │ ├── error_log │ │ │ ├── getVendorUrls.php │ │ │ └── vendorsByProject.php │ │ └── users/ │ │ ├── create.php │ │ ├── edit.php │ │ ├── list.php │ │ ├── read.php │ │ └── ternal-suurvey/ │ │ └── apis │ ├── controllers/ │ │ ├── auth.php │ │ ├── capture.php │ │ ├── client.php │ │ ├── dashboard.php │ │ ├── project.php │ │ ├── report.php │ │ ├── surveys.php │ │ └── user.php │ ├── core/ │ │ ├── configs.php │ │ ├── db.php │ │ ├── functions.php │ │ ├── headers.php │ │ └── initialize.php │ ├── pages/ │ │ ├── 404.html │ │ ├── closed.html │ │ ├── complete.html │ │ ├── css/ │ │ │ └── main.css │ │ ├── error.html │ │ ├── fonts/ │ │ │ ├── feather.woff │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ └── Roboto-Regular.ttf │ │ ├── hello.php │ │ ├── images/ │ │ │ ├── logo.png │ │ │ └── logo.svg │ │ ├── no-open.html │ │ ├── quotafull.html │ │ ├── screenout.html │ │ └── taken.html │ ├── redirects/ │ │ ├── complete.php │ │ ├── error_log │ │ ├── quotafull.php │ │ └── screenout.php │ ├── surveys/ │ │ ├── error_log │ │ └── start.php │ └── vendor/ │ ├── autoload.php │ ├── composer/ │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── ClassLoader.php │ │ ├── installed.json │ │ ├── installed.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ └── platform_check.php │ ├── ezyang/ │ │ └── htmlpurifier/ │ │ ├── CHANGELOG.md │ │ ├── composer.json │ │ ├── CREDITS │ │ ├── library/ │ │ │ ├── HTMLPurifier/ │ │ │ │ ├── Arborize.php │ │ │ │ ├── AttrCollections.php │ │ │ │ ├── AttrDef/ │ │ │ │ │ ├── Clone.php │ │ │ │ │ ├── CSS/ │ │ │ │ │ │ ├── AlphaValue.php │ │ │ │ │ │ ├── Background.php │ │ │ │ │ │ ├── BackgroundPosition.php │ │ │ │ │ │ ├── Border.php │ │ │ │ │ │ ├── Color.php │ │ │ │ │ │ ├── Composite.php │ │ │ │ │ │ ├── DenyElementDecorator.php │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ ├── Font.php │ │ │ │ │ │ ├── FontFamily.php │ │ │ │ │ │ ├── Ident.php │ │ │ │ │ │ ├── ImportantDecorator.php │ │ │ │ │ │ ├── Length.php │ │ │ │ │ │ ├── ListStyle.php │ │ │ │ │ │ ├── Multiple.php │ │ │ │ │ │ ├── Number.php │ │ │ │ │ │ ├── Percentage.php │ │ │ │ │ │ ├── TextDecoration.php │ │ │ │ │ │ └── URI.php │ │ │ │ │ ├── CSS.php │ │ │ │ │ ├── Enum.php │ │ │ │ │ ├── HTML/ │ │ │ │ │ │ ├── Bool.php │ │ │ │ │ │ ├── Class.php │ │ │ │ │ │ ├── Color.php │ │ │ │ │ │ ├── ContentEditable.php │ │ │ │ │ │ ├── FrameTarget.php │ │ │ │ │ │ ├── ID.php │ │ │ │ │ │ ├── Length.php │ │ │ │ │ │ ├── LinkTypes.php │ │ │ │ │ │ ├── MultiLength.php │ │ │ │ │ │ ├── Nmtokens.php │ │ │ │ │ │ └── Pixels.php │ │ │ │ │ ├── Integer.php │ │ │ │ │ ├── Lang.php │ │ │ │ │ ├── Switch.php │ │ │ │ │ ├── Text.php │ │ │ │ │ ├── URI/ │ │ │ │ │ │ ├── Email/ │ │ │ │ │ │ │ └── SimpleCheck.php │ │ │ │ │ │ ├── Email.php │ │ │ │ │ │ ├── Host.php │ │ │ │ │ │ ├── IPv4.php │ │ │ │ │ │ └── IPv6.php │ │ │ │ │ └── URI.php │ │ │ │ ├── AttrDef.php │ │ │ │ ├── AttrTransform/ │ │ │ │ │ ├── Background.php │ │ │ │ │ ├── BdoDir.php │ │ │ │ │ ├── BgColor.php │ │ │ │ │ ├── BoolToCSS.php │ │ │ │ │ ├── Border.php │ │ │ │ │ ├── EnumToCSS.php │ │ │ │ │ ├── ImgRequired.php │ │ │ │ │ ├── ImgSpace.php │ │ │ │ │ ├── Input.php │ │ │ │ │ ├── Lang.php │ │ │ │ │ ├── Length.php │ │ │ │ │ ├── Name.php │ │ │ │ │ ├── NameSync.php │ │ │ │ │ ├── Nofollow.php │ │ │ │ │ ├── SafeEmbed.php │ │ │ │ │ ├── SafeObject.php │ │ │ │ │ ├── SafeParam.php │ │ │ │ │ ├── ScriptRequired.php │ │ │ │ │ ├── TargetBlank.php │ │ │ │ │ ├── TargetNoopener.php │ │ │ │ │ ├── TargetNoreferrer.php │ │ │ │ │ └── Textarea.php │ │ │ │ ├── AttrTransform.php │ │ │ │ ├── AttrTypes.php │ │ │ │ ├── AttrValidator.php │ │ │ │ ├── Bootstrap.php │ │ │ │ ├── ChildDef/ │ │ │ │ │ ├── Chameleon.php │ │ │ │ │ ├── Custom.php │ │ │ │ │ ├── Empty.php │ │ │ │ │ ├── List.php │ │ │ │ │ ├── Optional.php │ │ │ │ │ ├── Required.php │ │ │ │ │ ├── StrictBlockquote.php │ │ │ │ │ └── Table.php │ │ │ │ ├── ChildDef.php │ │ │ │ ├── Config.php │ │ │ │ ├── ConfigSchema/ │ │ │ │ │ ├── Builder/ │ │ │ │ │ │ ├── ConfigSchema.php │ │ │ │ │ │ └── Xml.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Interchange/ │ │ │ │ │ │ ├── Directive.php │ │ │ │ │ │ └── Id.php │ │ │ │ │ ├── Interchange.php │ │ │ │ │ ├── InterchangeBuilder.php │ │ │ │ │ ├── schema/ │ │ │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ │ │ ├── Attr.EnableID.txt │ │ │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ │ │ ├── Attr.ID.HTML5.txt │ │ │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ │ │ ├── Attr.IDPrefix.txt │ │ │ │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt │ │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ │ │ │ ├── Core.AggressivelyRemoveScript.txt │ │ │ │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ │ │ │ ├── Core.AllowParseManyTags.txt │ │ │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ │ │ ├── Core.ColorKeywords.txt │ │ │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ │ │ │ ├── Core.DisableExcludes.txt │ │ │ │ │ │ ├── Core.EnableIDNA.txt │ │ │ │ │ │ ├── Core.Encoding.txt │ │ │ │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ │ │ │ ├── Core.HiddenElements.txt │ │ │ │ │ │ ├── Core.Language.txt │ │ │ │ │ │ ├── Core.LegacyEntityDecoder.txt │ │ │ │ │ │ ├── Core.LexerImpl.txt │ │ │ │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ │ │ │ ├── CSS.AllowedFonts.txt │ │ │ │ │ │ ├── CSS.AllowedProperties.txt │ │ │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ │ │ │ ├── CSS.MaxImgLength.txt │ │ │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ │ │ ├── CSS.Trusted.txt │ │ │ │ │ │ ├── Filter.Custom.txt │ │ │ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ │ │ │ ├── Filter.YouTube.txt │ │ │ │ │ │ ├── HTML.Allowed.txt │ │ │ │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ │ │ │ ├── HTML.AllowedComments.txt │ │ │ │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ │ │ │ ├── HTML.AllowedElements.txt │ │ │ │ │ │ ├── HTML.AllowedModules.txt │ │ │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ │ │ │ ├── HTML.BlockWrapper.txt │ │ │ │ │ │ ├── HTML.CoreModules.txt │ │ │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ │ │ ├── HTML.DefinitionID.txt │ │ │ │ │ │ ├── HTML.DefinitionRev.txt │ │ │ │ │ │ ├── HTML.Doctype.txt │ │ │ │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ │ │ │ ├── HTML.Forms.txt │ │ │ │ │ │ ├── HTML.MaxImgLength.txt │ │ │ │ │ │ ├── HTML.Nofollow.txt │ │ │ │ │ │ ├── HTML.Parent.txt │ │ │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ │ │ ├── HTML.SafeEmbed.txt │ │ │ │ │ │ ├── HTML.SafeIframe.txt │ │ │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ │ │ ├── HTML.SafeScripting.txt │ │ │ │ │ │ ├── HTML.Strict.txt │ │ │ │ │ │ ├── HTML.TargetBlank.txt │ │ │ │ │ │ ├── HTML.TargetNoopener.txt │ │ │ │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ │ │ ├── HTML.TidyLevel.txt │ │ │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ │ │ ├── info.ini │ │ │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ │ │ ├── Output.FixInnerHTML.txt │ │ │ │ │ │ ├── Output.FlashCompat.txt │ │ │ │ │ │ ├── Output.Newline.txt │ │ │ │ │ │ ├── Output.SortAttr.txt │ │ │ │ │ │ ├── Output.TidyFormat.txt │ │ │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ │ │ ├── URI.AllowedSchemes.txt │ │ │ │ │ │ ├── URI.Base.txt │ │ │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ │ │ ├── URI.Disable.txt │ │ │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ │ │ ├── URI.DisableExternalResources.txt │ │ │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ │ │ ├── URI.Host.txt │ │ │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ │ │ ├── URI.Munge.txt │ │ │ │ │ │ ├── URI.MungeResources.txt │ │ │ │ │ │ ├── URI.MungeSecretKey.txt │ │ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ │ │ └── URI.SafeIframeRegexp.txt │ │ │ │ │ ├── schema.ser │ │ │ │ │ ├── Validator.php │ │ │ │ │ └── ValidatorAtom.php │ │ │ │ ├── ConfigSchema.php │ │ │ │ ├── ContentSets.php │ │ │ │ ├── Context.php │ │ │ │ ├── CSSDefinition.php │ │ │ │ ├── Definition.php │ │ │ │ ├── DefinitionCache/ │ │ │ │ │ ├── Decorator/ │ │ │ │ │ │ ├── Cleanup.php │ │ │ │ │ │ ├── Memory.php │ │ │ │ │ │ └── Template.php.in │ │ │ │ │ ├── Decorator.php │ │ │ │ │ ├── Null.php │ │ │ │ │ ├── Serializer/ │ │ │ │ │ │ └── README │ │ │ │ │ └── Serializer.php │ │ │ │ ├── DefinitionCache.php │ │ │ │ ├── DefinitionCacheFactory.php │ │ │ │ ├── Doctype.php │ │ │ │ ├── DoctypeRegistry.php │ │ │ │ ├── ElementDef.php │ │ │ │ ├── Encoder.php │ │ │ │ ├── EntityLookup/ │ │ │ │ │ └── entities.ser │ │ │ │ ├── EntityLookup.php │ │ │ │ ├── EntityParser.php │ │ │ │ ├── ErrorCollector.php │ │ │ │ ├── ErrorStruct.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter/ │ │ │ │ │ ├── ExtractStyleBlocks.php │ │ │ │ │ └── YouTube.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Generator.php │ │ │ │ ├── HTMLDefinition.php │ │ │ │ ├── HTMLModule/ │ │ │ │ │ ├── Bdo.php │ │ │ │ │ ├── CommonAttributes.php │ │ │ │ │ ├── Edit.php │ │ │ │ │ ├── Forms.php │ │ │ │ │ ├── Hypertext.php │ │ │ │ │ ├── Iframe.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── Legacy.php │ │ │ │ │ ├── List.php │ │ │ │ │ ├── Name.php │ │ │ │ │ ├── Nofollow.php │ │ │ │ │ ├── NonXMLCommonAttributes.php │ │ │ │ │ ├── Object.php │ │ │ │ │ ├── Presentation.php │ │ │ │ │ ├── Proprietary.php │ │ │ │ │ ├── Ruby.php │ │ │ │ │ ├── SafeEmbed.php │ │ │ │ │ ├── SafeObject.php │ │ │ │ │ ├── SafeScripting.php │ │ │ │ │ ├── Scripting.php │ │ │ │ │ ├── StyleAttribute.php │ │ │ │ │ ├── Tables.php │ │ │ │ │ ├── Target.php │ │ │ │ │ ├── TargetBlank.php │ │ │ │ │ ├── TargetNoopener.php │ │ │ │ │ ├── TargetNoreferrer.php │ │ │ │ │ ├── Text.php │ │ │ │ │ ├── Tidy/ │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ ├── Proprietary.php │ │ │ │ │ │ ├── Strict.php │ │ │ │ │ │ ├── Transitional.php │ │ │ │ │ │ ├── XHTML.php │ │ │ │ │ │ └── XHTMLAndHTML4.php │ │ │ │ │ ├── Tidy.php │ │ │ │ │ └── XMLCommonAttributes.php │ │ │ │ ├── HTMLModule.php │ │ │ │ ├── HTMLModuleManager.php │ │ │ │ ├── IDAccumulator.php │ │ │ │ ├── Injector/ │ │ │ │ │ ├── AutoParagraph.php │ │ │ │ │ ├── DisplayLinkURI.php │ │ │ │ │ ├── Linkify.php │ │ │ │ │ ├── PurifierLinkify.php │ │ │ │ │ ├── RemoveEmpty.php │ │ │ │ │ ├── RemoveSpansWithoutAttributes.php │ │ │ │ │ └── SafeObject.php │ │ │ │ ├── Injector.php │ │ │ │ ├── Language/ │ │ │ │ │ └── messages/ │ │ │ │ │ └── en.php │ │ │ │ ├── Language.php │ │ │ │ ├── LanguageFactory.php │ │ │ │ ├── Length.php │ │ │ │ ├── Lexer/ │ │ │ │ │ ├── DirectLex.php │ │ │ │ │ ├── DOMLex.php │ │ │ │ │ └── PH5P.php │ │ │ │ ├── Lexer.php │ │ │ │ ├── Node/ │ │ │ │ │ ├── Comment.php │ │ │ │ │ ├── Element.php │ │ │ │ │ └── Text.php │ │ │ │ ├── Node.php │ │ │ │ ├── PercentEncoder.php │ │ │ │ ├── Printer/ │ │ │ │ │ ├── ConfigForm.css │ │ │ │ │ ├── ConfigForm.js │ │ │ │ │ ├── ConfigForm.php │ │ │ │ │ ├── CSSDefinition.php │ │ │ │ │ └── HTMLDefinition.php │ │ │ │ ├── Printer.php │ │ │ │ ├── PropertyList.php │ │ │ │ ├── PropertyListIterator.php │ │ │ │ ├── Queue.php │ │ │ │ ├── Strategy/ │ │ │ │ │ ├── Composite.php │ │ │ │ │ ├── Core.php │ │ │ │ │ ├── FixNesting.php │ │ │ │ │ ├── MakeWellFormed.php │ │ │ │ │ ├── RemoveForeignElements.php │ │ │ │ │ └── ValidateAttributes.php │ │ │ │ ├── Strategy.php │ │ │ │ ├── StringHash.php │ │ │ │ ├── StringHashParser.php │ │ │ │ ├── TagTransform/ │ │ │ │ │ ├── Font.php │ │ │ │ │ └── Simple.php │ │ │ │ ├── TagTransform.php │ │ │ │ ├── Token/ │ │ │ │ │ ├── Comment.php │ │ │ │ │ ├── Empty.php │ │ │ │ │ ├── End.php │ │ │ │ │ ├── Start.php │ │ │ │ │ ├── Tag.php │ │ │ │ │ └── Text.php │ │ │ │ ├── Token.php │ │ │ │ ├── TokenFactory.php │ │ │ │ ├── UnitConverter.php │ │ │ │ ├── URI.php │ │ │ │ ├── URIDefinition.php │ │ │ │ ├── URIFilter/ │ │ │ │ │ ├── DisableExternal.php │ │ │ │ │ ├── DisableExternalResources.php │ │ │ │ │ ├── DisableResources.php │ │ │ │ │ ├── HostBlacklist.php │ │ │ │ │ ├── MakeAbsolute.php │ │ │ │ │ ├── Munge.php │ │ │ │ │ └── SafeIframe.php │ │ │ │ ├── URIFilter.php │ │ │ │ ├── URIParser.php │ │ │ │ ├── URIScheme/ │ │ │ │ │ ├── data.php │ │ │ │ │ ├── file.php │ │ │ │ │ ├── ftp.php │ │ │ │ │ ├── http.php │ │ │ │ │ ├── https.php │ │ │ │ │ ├── mailto.php │ │ │ │ │ ├── news.php │ │ │ │ │ ├── nntp.php │ │ │ │ │ └── tel.php │ │ │ │ ├── URIScheme.php │ │ │ │ ├── URISchemeRegistry.php │ │ │ │ ├── VarParser/ │ │ │ │ │ ├── Flexible.php │ │ │ │ │ └── Native.php │ │ │ │ ├── VarParser.php │ │ │ │ ├── VarParserException.php │ │ │ │ └── Zipper.php │ │ │ ├── HTMLPurifier.auto.php │ │ │ ├── HTMLPurifier.autoload-legacy.php │ │ │ ├── HTMLPurifier.autoload.php │ │ │ ├── HTMLPurifier.composer.php │ │ │ ├── HTMLPurifier.func.php │ │ │ ├── HTMLPurifier.includes.php │ │ │ ├── HTMLPurifier.kses.php │ │ │ ├── HTMLPurifier.path.php │ │ │ ├── HTMLPurifier.php │ │ │ └── HTMLPurifier.safe-includes.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── VERSION │ ├── maennchen/ │ │ └── zipstream-php/ │ │ ├── .phive/ │ │ │ └── phars.xml │ │ ├── .phpdoc/ │ │ │ └── template/ │ │ │ └── base.html.twig │ │ ├── composer.json │ │ ├── guides/ │ │ │ ├── ContentLength.rst │ │ │ ├── FlySystem.rst │ │ │ ├── index.rst │ │ │ ├── Nginx.rst │ │ │ ├── Options.rst │ │ │ ├── PSR7Streams.rst │ │ │ ├── StreamOutput.rst │ │ │ ├── Symfony.rst │ │ │ └── Varnish.rst │ │ ├── LICENSE │ │ ├── phpdoc.dist.xml │ │ ├── phpunit.xml.dist │ │ ├── psalm.xml │ │ ├── README.md │ │ ├── src/ │ │ │ ├── Bigint.php │ │ │ ├── DeflateStream.php │ │ │ ├── Exception/ │ │ │ │ ├── EncodingException.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── FileNotReadableException.php │ │ │ │ ├── IncompatibleOptionsException.php │ │ │ │ ├── OverflowException.php │ │ │ │ └── StreamNotReadableException.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── Option/ │ │ │ │ ├── Archive.php │ │ │ │ ├── File.php │ │ │ │ ├── Method.php │ │ │ │ └── Version.php │ │ │ ├── Stream.php │ │ │ └── ZipStream.php │ │ └── test/ │ │ ├── BigintTest.php │ │ ├── bootstrap.php │ │ ├── bug/ │ │ │ └── BugHonorFileTimeTest.php │ │ └── ZipStreamTest.php │ ├── markbaker/ │ │ ├── complex/ │ │ │ ├── .github/ │ │ │ │ └── workflows/ │ │ │ │ └── main.yml │ │ │ ├── classes/ │ │ │ │ └── src/ │ │ │ │ ├── Complex.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Functions.php │ │ │ │ └── Operations.php │ │ │ ├── composer.json │ │ │ ├── examples/ │ │ │ │ ├── complexTest.php │ │ │ │ ├── testFunctions.php │ │ │ │ └── testOperations.php │ │ │ ├── license.md │ │ │ └── README.md │ │ └── matrix/ │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── main.yaml │ │ ├── buildPhar.php │ │ ├── classes/ │ │ │ └── src/ │ │ │ ├── Builder.php │ │ │ ├── Decomposition/ │ │ │ │ ├── Decomposition.php │ │ │ │ ├── LU.php │ │ │ │ └── QR.php │ │ │ ├── Div0Exception.php │ │ │ ├── Exception.php │ │ │ ├── Functions.php │ │ │ ├── Matrix.php │ │ │ ├── Operations.php │ │ │ └── Operators/ │ │ │ ├── Addition.php │ │ │ ├── DirectSum.php │ │ │ ├── Division.php │ │ │ ├── Multiplication.php │ │ │ ├── Operator.php │ │ │ └── Subtraction.php │ │ ├── composer.json │ │ ├── examples/ │ │ │ └── test.php │ │ ├── infection.json.dist │ │ ├── license.md │ │ ├── phpstan.neon │ │ └── README.md │ ├── myclabs/ │ │ └── php-enum/ │ │ ├── composer.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── src/ │ │ │ ├── Enum.php │ │ │ └── PHPUnit/ │ │ │ └── Comparator.php │ │ └── stubs/ │ │ └── Stringable.php │ ├── phpoffice/ │ │ └── phpspreadsheet/ │ │ ├── CHANGELOG.md │ │ ├── composer.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── phpstan-baseline.neon │ │ ├── phpstan-conditional.php │ │ ├── phpstan.neon.dist │ │ ├── phpunit10.xml.dist │ │ ├── README.md │ │ └── src/ │ │ └── PhpSpreadsheet/ │ │ ├── Calculation/ │ │ │ ├── ArrayEnabled.php │ │ │ ├── BinaryComparison.php │ │ │ ├── Calculation.php │ │ │ ├── Category.php │ │ │ ├── Database/ │ │ │ │ ├── DatabaseAbstract.php │ │ │ │ ├── DAverage.php │ │ │ │ ├── DCount.php │ │ │ │ ├── DCountA.php │ │ │ │ ├── DGet.php │ │ │ │ ├── DMax.php │ │ │ │ ├── DMin.php │ │ │ │ ├── DProduct.php │ │ │ │ ├── DStDev.php │ │ │ │ ├── DStDevP.php │ │ │ │ ├── DSum.php │ │ │ │ ├── DVar.php │ │ │ │ └── DVarP.php │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── DateTimeExcel/ │ │ │ │ ├── Constants.php │ │ │ │ ├── Current.php │ │ │ │ ├── Date.php │ │ │ │ ├── DateParts.php │ │ │ │ ├── DateValue.php │ │ │ │ ├── Days.php │ │ │ │ ├── Days360.php │ │ │ │ ├── Difference.php │ │ │ │ ├── Helpers.php │ │ │ │ ├── Month.php │ │ │ │ ├── NetworkDays.php │ │ │ │ ├── Time.php │ │ │ │ ├── TimeParts.php │ │ │ │ ├── TimeValue.php │ │ │ │ ├── Week.php │ │ │ │ ├── WorkDay.php │ │ │ │ └── YearFrac.php │ │ │ ├── Engine/ │ │ │ │ ├── ArrayArgumentHelper.php │ │ │ │ ├── ArrayArgumentProcessor.php │ │ │ │ ├── BranchPruner.php │ │ │ │ ├── CyclicReferenceStack.php │ │ │ │ ├── FormattedNumber.php │ │ │ │ ├── Logger.php │ │ │ │ └── Operands/ │ │ │ │ ├── Operand.php │ │ │ │ └── StructuredReference.php │ │ │ ├── Engineering/ │ │ │ │ ├── BesselI.php │ │ │ │ ├── BesselJ.php │ │ │ │ ├── BesselK.php │ │ │ │ ├── BesselY.php │ │ │ │ ├── BitWise.php │ │ │ │ ├── Compare.php │ │ │ │ ├── Complex.php │ │ │ │ ├── ComplexFunctions.php │ │ │ │ ├── ComplexOperations.php │ │ │ │ ├── Constants.php │ │ │ │ ├── ConvertBase.php │ │ │ │ ├── ConvertBinary.php │ │ │ │ ├── ConvertDecimal.php │ │ │ │ ├── ConvertHex.php │ │ │ │ ├── ConvertOctal.php │ │ │ │ ├── ConvertUOM.php │ │ │ │ ├── EngineeringValidations.php │ │ │ │ ├── Erf.php │ │ │ │ └── ErfC.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial/ │ │ │ │ ├── Amortization.php │ │ │ │ ├── CashFlow/ │ │ │ │ │ ├── CashFlowValidations.php │ │ │ │ │ ├── Constant/ │ │ │ │ │ │ ├── Periodic/ │ │ │ │ │ │ │ ├── Cumulative.php │ │ │ │ │ │ │ ├── Interest.php │ │ │ │ │ │ │ ├── InterestAndPrincipal.php │ │ │ │ │ │ │ └── Payments.php │ │ │ │ │ │ └── Periodic.php │ │ │ │ │ ├── Single.php │ │ │ │ │ └── Variable/ │ │ │ │ │ ├── NonPeriodic.php │ │ │ │ │ └── Periodic.php │ │ │ │ ├── Constants.php │ │ │ │ ├── Coupons.php │ │ │ │ ├── Depreciation.php │ │ │ │ ├── Dollar.php │ │ │ │ ├── FinancialValidations.php │ │ │ │ ├── Helpers.php │ │ │ │ ├── InterestRate.php │ │ │ │ ├── Securities/ │ │ │ │ │ ├── AccruedInterest.php │ │ │ │ │ ├── Price.php │ │ │ │ │ ├── Rates.php │ │ │ │ │ ├── SecurityValidations.php │ │ │ │ │ └── Yields.php │ │ │ │ └── TreasuryBill.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Functions.php │ │ │ ├── Information/ │ │ │ │ ├── ErrorValue.php │ │ │ │ ├── ExcelError.php │ │ │ │ └── Value.php │ │ │ ├── Internal/ │ │ │ │ ├── MakeMatrix.php │ │ │ │ └── WildcardMatch.php │ │ │ ├── locale/ │ │ │ │ ├── bg/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── cs/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── da/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── de/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── en/ │ │ │ │ │ └── uk/ │ │ │ │ │ └── config │ │ │ │ ├── es/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── fi/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── fr/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── hu/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── it/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── nb/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── nl/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── pl/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── pt/ │ │ │ │ │ ├── br/ │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── functions │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── ru/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── sv/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── tr/ │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ └── Translations.xlsx │ │ │ ├── Logical/ │ │ │ │ ├── Boolean.php │ │ │ │ ├── Conditional.php │ │ │ │ └── Operations.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef/ │ │ │ │ ├── Address.php │ │ │ │ ├── ExcelMatch.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Formula.php │ │ │ │ ├── Helpers.php │ │ │ │ ├── HLookup.php │ │ │ │ ├── Hyperlink.php │ │ │ │ ├── Indirect.php │ │ │ │ ├── Lookup.php │ │ │ │ ├── LookupBase.php │ │ │ │ ├── LookupRefValidations.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── Offset.php │ │ │ │ ├── RowColumnInformation.php │ │ │ │ ├── Selection.php │ │ │ │ ├── Sort.php │ │ │ │ ├── Unique.php │ │ │ │ └── VLookup.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig/ │ │ │ │ ├── Absolute.php │ │ │ │ ├── Angle.php │ │ │ │ ├── Arabic.php │ │ │ │ ├── Base.php │ │ │ │ ├── Ceiling.php │ │ │ │ ├── Combinations.php │ │ │ │ ├── Exp.php │ │ │ │ ├── Factorial.php │ │ │ │ ├── Floor.php │ │ │ │ ├── Gcd.php │ │ │ │ ├── Helpers.php │ │ │ │ ├── IntClass.php │ │ │ │ ├── Lcm.php │ │ │ │ ├── Logarithms.php │ │ │ │ ├── MatrixFunctions.php │ │ │ │ ├── Operations.php │ │ │ │ ├── Random.php │ │ │ │ ├── Roman.php │ │ │ │ ├── Round.php │ │ │ │ ├── SeriesSum.php │ │ │ │ ├── Sign.php │ │ │ │ ├── Sqrt.php │ │ │ │ ├── Subtotal.php │ │ │ │ ├── Sum.php │ │ │ │ ├── SumSquares.php │ │ │ │ ├── Trig/ │ │ │ │ │ ├── Cosecant.php │ │ │ │ │ ├── Cosine.php │ │ │ │ │ ├── Cotangent.php │ │ │ │ │ ├── Secant.php │ │ │ │ │ ├── Sine.php │ │ │ │ │ └── Tangent.php │ │ │ │ └── Trunc.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical/ │ │ │ │ ├── AggregateBase.php │ │ │ │ ├── Averages/ │ │ │ │ │ └── Mean.php │ │ │ │ ├── Averages.php │ │ │ │ ├── Conditional.php │ │ │ │ ├── Confidence.php │ │ │ │ ├── Counts.php │ │ │ │ ├── Deviations.php │ │ │ │ ├── Distributions/ │ │ │ │ │ ├── Beta.php │ │ │ │ │ ├── Binomial.php │ │ │ │ │ ├── ChiSquared.php │ │ │ │ │ ├── DistributionValidations.php │ │ │ │ │ ├── Exponential.php │ │ │ │ │ ├── F.php │ │ │ │ │ ├── Fisher.php │ │ │ │ │ ├── Gamma.php │ │ │ │ │ ├── GammaBase.php │ │ │ │ │ ├── HyperGeometric.php │ │ │ │ │ ├── LogNormal.php │ │ │ │ │ ├── NewtonRaphson.php │ │ │ │ │ ├── Normal.php │ │ │ │ │ ├── Poisson.php │ │ │ │ │ ├── StandardNormal.php │ │ │ │ │ ├── StudentT.php │ │ │ │ │ └── Weibull.php │ │ │ │ ├── Maximum.php │ │ │ │ ├── MaxMinBase.php │ │ │ │ ├── Minimum.php │ │ │ │ ├── Percentiles.php │ │ │ │ ├── Permutations.php │ │ │ │ ├── Size.php │ │ │ │ ├── StandardDeviations.php │ │ │ │ ├── Standardize.php │ │ │ │ ├── StatisticalValidations.php │ │ │ │ ├── Trends.php │ │ │ │ ├── VarianceBase.php │ │ │ │ └── Variances.php │ │ │ ├── Statistical.php │ │ │ ├── TextData/ │ │ │ │ ├── CaseConvert.php │ │ │ │ ├── CharacterConvert.php │ │ │ │ ├── Concatenate.php │ │ │ │ ├── Extract.php │ │ │ │ ├── Format.php │ │ │ │ ├── Helpers.php │ │ │ │ ├── Replace.php │ │ │ │ ├── Search.php │ │ │ │ ├── Text.php │ │ │ │ └── Trim.php │ │ │ ├── TextData.php │ │ │ ├── Token/ │ │ │ │ └── Stack.php │ │ │ ├── Web/ │ │ │ │ └── Service.php │ │ │ └── Web.php │ │ ├── Cell/ │ │ │ ├── AddressHelper.php │ │ │ ├── AddressRange.php │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── Cell.php │ │ │ ├── CellAddress.php │ │ │ ├── CellRange.php │ │ │ ├── ColumnRange.php │ │ │ ├── Coordinate.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DataValidator.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ ├── IgnoredErrors.php │ │ │ ├── IValueBinder.php │ │ │ ├── RowRange.php │ │ │ └── StringValueBinder.php │ │ ├── CellReferenceHelper.php │ │ ├── Chart/ │ │ │ ├── Axis.php │ │ │ ├── AxisText.php │ │ │ ├── Chart.php │ │ │ ├── ChartColor.php │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── GridLines.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Properties.php │ │ │ ├── Renderer/ │ │ │ │ ├── IRenderer.php │ │ │ │ ├── JpGraph.php │ │ │ │ ├── JpGraphRendererBase.php │ │ │ │ ├── MtJpGraphRenderer.php │ │ │ │ └── PHP Charting Libraries.txt │ │ │ ├── Title.php │ │ │ └── TrendLine.php │ │ ├── Collection/ │ │ │ ├── Cells.php │ │ │ ├── CellsFactory.php │ │ │ └── Memory/ │ │ │ ├── SimpleCache1.php │ │ │ └── SimpleCache3.php │ │ ├── Comment.php │ │ ├── DefinedName.php │ │ ├── Document/ │ │ │ ├── Properties.php │ │ │ └── Security.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── Helper/ │ │ │ ├── Dimension.php │ │ │ ├── Downloader.php │ │ │ ├── Handler.php │ │ │ ├── Html.php │ │ │ ├── Sample.php │ │ │ ├── Size.php │ │ │ └── TextGrid.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedFormula.php │ │ ├── NamedRange.php │ │ ├── Reader/ │ │ │ ├── BaseReader.php │ │ │ ├── Csv/ │ │ │ │ └── Delimiter.php │ │ │ ├── Csv.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric/ │ │ │ │ ├── PageSetup.php │ │ │ │ ├── Properties.php │ │ │ │ └── Styles.php │ │ │ ├── Gnumeric.php │ │ │ ├── Html.php │ │ │ ├── IReader.php │ │ │ ├── IReadFilter.php │ │ │ ├── Ods/ │ │ │ │ ├── AutoFilter.php │ │ │ │ ├── BaseLoader.php │ │ │ │ ├── DefinedNames.php │ │ │ │ ├── FormulaTranslator.php │ │ │ │ ├── PageSettings.php │ │ │ │ └── Properties.php │ │ │ ├── Ods.php │ │ │ ├── Security/ │ │ │ │ └── XmlScanner.php │ │ │ ├── Slk.php │ │ │ ├── Xls/ │ │ │ │ ├── Color/ │ │ │ │ │ ├── BIFF5.php │ │ │ │ │ ├── BIFF8.php │ │ │ │ │ └── BuiltIn.php │ │ │ │ ├── Color.php │ │ │ │ ├── ConditionalFormatting.php │ │ │ │ ├── DataValidationHelper.php │ │ │ │ ├── ErrorCode.php │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ ├── RC4.php │ │ │ │ └── Style/ │ │ │ │ ├── Border.php │ │ │ │ ├── CellAlignment.php │ │ │ │ ├── CellFont.php │ │ │ │ └── FillPattern.php │ │ │ ├── Xls.php │ │ │ ├── Xlsx/ │ │ │ │ ├── AutoFilter.php │ │ │ │ ├── BaseParserClass.php │ │ │ │ ├── Chart.php │ │ │ │ ├── ColumnAndRowAttributes.php │ │ │ │ ├── ConditionalStyles.php │ │ │ │ ├── DataValidations.php │ │ │ │ ├── Hyperlinks.php │ │ │ │ ├── Namespaces.php │ │ │ │ ├── PageSetup.php │ │ │ │ ├── Properties.php │ │ │ │ ├── SharedFormula.php │ │ │ │ ├── SheetViewOptions.php │ │ │ │ ├── SheetViews.php │ │ │ │ ├── Styles.php │ │ │ │ ├── TableReader.php │ │ │ │ ├── Theme.php │ │ │ │ └── WorkbookView.php │ │ │ ├── Xlsx.php │ │ │ ├── Xml/ │ │ │ │ ├── DataValidations.php │ │ │ │ ├── PageSettings.php │ │ │ │ ├── Properties.php │ │ │ │ ├── Style/ │ │ │ │ │ ├── Alignment.php │ │ │ │ │ ├── Border.php │ │ │ │ │ ├── Fill.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── NumberFormat.php │ │ │ │ │ └── StyleBase.php │ │ │ │ └── Style.php │ │ │ └── Xml.php │ │ ├── ReferenceHelper.php │ │ ├── RichText/ │ │ │ ├── ITextElement.php │ │ │ ├── RichText.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ ├── Settings.php │ │ ├── Shared/ │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher/ │ │ │ │ ├── DgContainer/ │ │ │ │ │ ├── SpgrContainer/ │ │ │ │ │ │ └── SpContainer.php │ │ │ │ │ └── SpgrContainer.php │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DggContainer/ │ │ │ │ │ ├── BstoreContainer/ │ │ │ │ │ │ ├── BSE/ │ │ │ │ │ │ │ └── Blip.php │ │ │ │ │ │ └── BSE.php │ │ │ │ │ └── BstoreContainer.php │ │ │ │ └── DggContainer.php │ │ │ ├── Escher.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── IntOrFloat.php │ │ │ ├── OLE/ │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS/ │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ │ └── PPS.php │ │ │ ├── OLE.php │ │ │ ├── OLERead.php │ │ │ ├── PasswordHasher.php │ │ │ ├── StringHelper.php │ │ │ ├── TimeZone.php │ │ │ ├── Trend/ │ │ │ │ ├── BestFit.php │ │ │ │ ├── ExponentialBestFit.php │ │ │ │ ├── LinearBestFit.php │ │ │ │ ├── LogarithmicBestFit.php │ │ │ │ ├── PolynomialBestFit.php │ │ │ │ ├── PowerBestFit.php │ │ │ │ └── Trend.php │ │ │ ├── Xls.php │ │ │ └── XMLWriter.php │ │ ├── Spreadsheet.php │ │ ├── Style/ │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── ConditionalFormatting/ │ │ │ │ ├── CellMatcher.php │ │ │ │ ├── CellStyleAssessor.php │ │ │ │ ├── ConditionalDataBar.php │ │ │ │ ├── ConditionalDataBarExtension.php │ │ │ │ ├── ConditionalFormattingRuleExtension.php │ │ │ │ ├── ConditionalFormatValueObject.php │ │ │ │ ├── StyleMerger.php │ │ │ │ ├── Wizard/ │ │ │ │ │ ├── Blanks.php │ │ │ │ │ ├── CellValue.php │ │ │ │ │ ├── DateValue.php │ │ │ │ │ ├── Duplicates.php │ │ │ │ │ ├── Errors.php │ │ │ │ │ ├── Expression.php │ │ │ │ │ ├── TextValue.php │ │ │ │ │ ├── WizardAbstract.php │ │ │ │ │ └── WizardInterface.php │ │ │ │ └── Wizard.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat/ │ │ │ │ ├── BaseFormatter.php │ │ │ │ ├── DateFormatter.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── FractionFormatter.php │ │ │ │ ├── NumberFormatter.php │ │ │ │ ├── PercentageFormatter.php │ │ │ │ └── Wizard/ │ │ │ │ ├── Accounting.php │ │ │ │ ├── Currency.php │ │ │ │ ├── Date.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── DateTimeWizard.php │ │ │ │ ├── Duration.php │ │ │ │ ├── Locale.php │ │ │ │ ├── Number.php │ │ │ │ ├── NumberBase.php │ │ │ │ ├── Percentage.php │ │ │ │ ├── Scientific.php │ │ │ │ ├── Time.php │ │ │ │ └── Wizard.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ ├── RgbTint.php │ │ │ ├── Style.php │ │ │ └── Supervisor.php │ │ ├── Theme.php │ │ ├── Worksheet/ │ │ │ ├── AutoFilter/ │ │ │ │ ├── Column/ │ │ │ │ │ └── Rule.php │ │ │ │ └── Column.php │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFit.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── Column.php │ │ │ ├── ColumnCellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── ColumnIterator.php │ │ │ ├── Dimension.php │ │ │ ├── Drawing/ │ │ │ │ └── Shadow.php │ │ │ ├── Drawing.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── Iterator.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageBreak.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowCellIterator.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ ├── SheetView.php │ │ │ ├── Table/ │ │ │ │ ├── Column.php │ │ │ │ └── TableStyle.php │ │ │ ├── Table.php │ │ │ ├── Validations.php │ │ │ └── Worksheet.php │ │ └── Writer/ │ │ ├── BaseWriter.php │ │ ├── Csv.php │ │ ├── Exception.php │ │ ├── Html.php │ │ ├── IWriter.php │ │ ├── Ods/ │ │ │ ├── AutoFilters.php │ │ │ ├── Cell/ │ │ │ │ ├── Comment.php │ │ │ │ └── Style.php │ │ │ ├── Content.php │ │ │ ├── Formula.php │ │ │ ├── Meta.php │ │ │ ├── MetaInf.php │ │ │ ├── Mimetype.php │ │ │ ├── NamedExpressions.php │ │ │ ├── Settings.php │ │ │ ├── Styles.php │ │ │ ├── Thumbnails.php │ │ │ └── WriterPart.php │ │ ├── Ods.php │ │ ├── Pdf/ │ │ │ ├── Dompdf.php │ │ │ ├── Mpdf.php │ │ │ └── Tcpdf.php │ │ ├── Pdf.php │ │ ├── Xls/ │ │ │ ├── BIFFwriter.php │ │ │ ├── CellDataValidation.php │ │ │ ├── ConditionalHelper.php │ │ │ ├── ErrorCode.php │ │ │ ├── Escher.php │ │ │ ├── Font.php │ │ │ ├── Parser.php │ │ │ ├── Style/ │ │ │ │ ├── CellAlignment.php │ │ │ │ ├── CellBorder.php │ │ │ │ ├── CellFill.php │ │ │ │ └── ColorMap.php │ │ │ ├── Workbook.php │ │ │ ├── Worksheet.php │ │ │ └── Xf.php │ │ ├── Xls.php │ │ ├── Xlsx/ │ │ │ ├── AutoFilter.php │ │ │ ├── Chart.php │ │ │ ├── Comments.php │ │ │ ├── ContentTypes.php │ │ │ ├── DefinedNames.php │ │ │ ├── DocProps.php │ │ │ ├── Drawing.php │ │ │ ├── FunctionPrefix.php │ │ │ ├── Rels.php │ │ │ ├── RelsRibbon.php │ │ │ ├── RelsVBA.php │ │ │ ├── StringTable.php │ │ │ ├── Style.php │ │ │ ├── Table.php │ │ │ ├── Theme.php │ │ │ ├── Workbook.php │ │ │ ├── Worksheet.php │ │ │ └── WriterPart.php │ │ ├── Xlsx.php │ │ ├── ZipStream0.php │ │ ├── ZipStream2.php │ │ └── ZipStream3.php │ └── psr/ │ ├── http-client/ │ │ ├── CHANGELOG.md │ │ ├── composer.json │ │ ├── LICENSE │ │ ├── README.md │ │ └── src/ │ │ ├── ClientExceptionInterface.php │ │ ├── ClientInterface.php │ │ ├── NetworkExceptionInterface.php │ │ └── RequestExceptionInterface.php │ ├── http-factory/ │ │ ├── composer.json │ │ ├── LICENSE │ │ ├── README.md │ │ └── src/ │ │ ├── RequestFactoryInterface.php │ │ ├── ResponseFactoryInterface.php │ │ ├── ServerRequestFactoryInterface.php │ │ ├── StreamFactoryInterface.php │ │ ├── UploadedFileFactoryInterface.php │ │ └── UriFactoryInterface.php │ ├── http-message/ │ │ ├── CHANGELOG.md │ │ ├── composer.json │ │ ├── docs/ │ │ │ ├── PSR7-Interfaces.md │ │ │ └── PSR7-Usage.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── src/ │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php │ └── simple-cache/ │ ├── composer.json │ ├── LICENSE.md │ ├── README.md │ └── src/ │ ├── CacheException.php │ ├── CacheInterface.php │ └── InvalidArgumentException.php ├── index.html ├── js/ │ ├── 10.js │ ├── 124.js │ ├── 166.js │ ├── 200.js │ ├── 249.js │ ├── 288.js │ ├── 307.js │ ├── 338.js │ ├── 370.js │ ├── 371.js │ ├── 375.js │ ├── 386.js │ ├── 413.js │ ├── 413.js.LICENSE.txt │ ├── 415.js │ ├── 416.js │ ├── 428.js │ ├── 458.js │ ├── 46.js │ ├── 482.js │ ├── 495.js │ ├── 539.js │ ├── 561.js │ ├── 587.js │ ├── 59.js │ ├── 600.js │ ├── 608.js │ ├── 635.js │ ├── 640.js │ ├── 646.js │ ├── 697.js │ ├── 707.js │ ├── 712.js │ ├── 712.js.LICENSE.txt │ ├── 717.js │ ├── 786.js │ ├── 791.js │ ├── 861.js │ ├── 869.js │ ├── 871.js │ ├── 89.js │ ├── 891.js │ ├── 9.js │ ├── 912.js │ ├── 931.js │ ├── 959.js │ ├── 98.js │ ├── 98.js.LICENSE.txt │ └── 994.js ├── main.css ├── main.js ├── main.js.LICENSE.txt └── sets/ ├── fonts/ │ ├── feather.woff │ ├── Roboto-Bold.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-Medium.ttf │ └── Roboto-Regular.ttf └── iimages/ ├── logo.png └── scene-1.jpg